@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #a3bd24;
    --secondary: #354041;
    --accent: #3b82f6;
    --background: #f8fafc;
    --card-bg: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    --train-color: #3b82f6;
    --warehouse-color: #8b5cf6;
    --terminal-color: #22c55e;
    --customs-color: #f59e0b;
}


h2 {
    font-size: 2rem !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow);
    padding: 0.75rem 2rem;
}

.logo {
    max-width: 140px;
    transition: var(--transition);
}

.logo img,
.logo svg {
    width: 100%;
    height: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: 1px solid var(--text-light);
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-dark);
    border-radius: 9999px;
    transition: var(--transition);
    font-weight: 500;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 60;
    padding: 0;
    transition: var(--transition);
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 999px;
    transition: var(--transition);
}

.burger-btn.open .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-btn.open .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-btn.open .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


.side-menu {
    position: fixed;
    top: 0;
    left: -400px;
    width: 320px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 5px rgba(0,0,0,0.3);
    transition: left 0.3s ease;
    z-index: 99;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
}

.side-menu.active {
    left: 0;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu ul li {
    margin-bottom: 1.5rem;
}

.side-menu ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.2s ease;
    display: block;
    padding: 0.5rem 0;
}

.side-menu ul li a:hover {
    color: var(--primary);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 98;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}


.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    z-index: 10;
    margin-top: 0;
    padding-top: 4rem;
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin-left: 5%;
    z-index: 15;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background-color: var(--primary);
    color: white;
    font-weight: 500;
    font-size: 1.125rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
    text-decoration: none;
}

.hero-btn:hover {
    background-color: #8fa41f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 5;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 6;
}

.hero-fallback {
    background-color: var(--secondary);
}


.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.hero-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 7;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    z-index: 6;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 7;
}


 .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 2.5rem;
    position: relative;
    width: 740px;
    max-width: 90%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.modal-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; 
}

.modal-form label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    display: block;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    background-color: #f8fafc;
    transition: var(--transition);
    margin: 0;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    resize: none; /* або vertical */
}


.modal-form input[type="text"]:focus,
.modal-form input[type="email"]:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(163, 189, 36, 0.2);
    transform: scale(1.02);
}


.modal-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.modal-form button:hover {
    background: #8fa41f;
}



.about-company {
    background-color: white;
    padding: 5rem 0;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-image {
    flex: 1 1 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}


.advantages-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advantage-card {
    background-color: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.advantage-card.show {
    opacity: 1;
    transform: translateY(0);
}

.advantage-card.hovered {
    transform: translateY(-8px);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, var(--primary), #c6de56);
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.advantage-card.hovered .advantage-icon {
    transform: scale(1.1);
}

.advantage-icon i {
    font-size: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}


.partners-section {
    background-color: var(--background);
    padding: 5rem 0;
    overflow: hidden;
    text-align: center;
}

.partners-slider {
    margin: 3rem 0;
    overflow: hidden;
    position: relative;
    
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.slider-track.auto-scroll {
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex: 0 0 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.partner-logo i {
    font-size: 3rem;
    color: var(--text-light);
}


.testimonial-card {
    max-width: 800px;
    margin: 4rem auto 0;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.testimonial-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-content {
    padding: 2.5rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 2.5rem;
    color: rgba(163, 189, 36, 0.2);
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 2.5rem 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image, .author-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-placeholder {
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-light);
}


 .services-section {
    padding: 1rem ;
    position: relative;
    overflow: hidden;
    text-align: center;

}
.services-section h2 {
    text-align: center;
    margin-bottom: 80px;
}

.services-section::before {
    content: '';
    position: absolute;
    left: -5%;
    top: 20%;
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 189, 36, 0.15) 0%, rgba(163, 189, 36, 0) 70%);
    z-index: -1;
}

.services-section::after {
    content: '';
    position: absolute;
    right: -5%;
    bottom: 10%;
    width: 25vw;
    height: 25vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(53, 64, 65, 0.1) 0%, rgba(53, 64, 65, 0) 70%);
    z-index: -1;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
    animation: fadeInDown 0.8s forwards;
}

.services-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInDown 0.8s 0.2s forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card.hovered {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.service-card.hovered .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-icon-0 {
    background: linear-gradient(to right, var(--train-color), #60a5fa);
}

.service-icon-1 {
    background: linear-gradient(to right, var(--warehouse-color), #a78bfa);
}

.service-icon-2 {
    background: linear-gradient(to right, var(--terminal-color), #4ade80);
}

.service-icon-3, .service-icon-4, .service-icon-5 {
    background: linear-gradient(to right, var(--customs-color), #fbbf24);
}

.service-icon i {
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
    color: var(--text-dark);
    text-align: center;
}

.service-card.hovered h3 {
    transform: translateY(-2px);
}

.service-list {
    list-style-type: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
    opacity: 0.9;
}

.service-list li:hover {
    transform: translateX(2px);
    opacity: 1;
}

.bullet {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

.label {
    font-weight: 600;
    color: var(--text-dark);
}

.value {
    color: var(--text-light);
}


.service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: auto;
    text-decoration: none;
}

.service-btn-0 {
    background: linear-gradient(to right, var(--train-color), #60a5fa);
}
.service-btn-1 {
    background: linear-gradient(to right, var(--warehouse-color), #a78bfa);
}
.service-btn-2 {
    background: linear-gradient(to right, var(--terminal-color), #4ade80);
}
.service-btn-3,
.service-btn-4,
.service-btn-5 {
    background: linear-gradient(to right, var(--customs-color), #fbbf24);
}

.service-btn-0:hover {
    background: linear-gradient(to right, #60a5fa, var(--train-color));
}
.service-btn-1:hover {
    background: linear-gradient(to right, #a78bfa, var(--warehouse-color));
}
.service-btn-2:hover {
    background: linear-gradient(to right, #4ade80, var(--terminal-color));
}
.service-btn-3:hover,
.service-btn-4:hover,
.service-btn-5:hover {
    background: linear-gradient(to right, #fbbf24, var(--customs-color));
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-btn:active {
    transform: translateY(0);
}

.service-btn i {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.service-btn:hover i {
    transform: translateX(2px);
}


.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.service-btn:hover::before {
    left: 100%;
    transition: 0.7s;
}



.faq-section {
    background-color: var(--background);
    padding: 5rem 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.accordion-header {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.accordion-item.active .accordion-header {
    background-color: #f9fafb;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #f3f4f6;
    transition: background-color 0.3s ease;
}

.accordion-item.active .accordion-icon {
    background-color: var(--primary);
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}


 .contact-us {
    padding: 5rem 0;
    background-color: white;
    position: relative;
    margin-bottom: 40px;
}
.contact-section {
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.contact-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    text-decoration: none; 
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none; 
    
}
.no-link {
    text-decoration: none;
    color: inherit;
}


.contact-card-item i {
    background-color: rgba(163, 189, 36, 0.1);
    color: var(--primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    text-decoration: none; 
}
.contact-card-item p a {
    text-decoration: none; 
    color: inherit;        
}

.contact-card-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    max-width: 500px;
}

.form-floating {
    position: relative;
}

.form-floating input {
    width: 100%;
    height: 56px;
    padding: 1.5rem 1rem 0.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-floating input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(163, 189, 36, 0.2);
}

.form-floating label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1rem;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition);
    transform-origin: left top;
}

.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label {
    transform: translateY(-0.75rem) scale(0.8);
    color: var(--primary);
}

.contact-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin-top: 1rem;
}

.contact-form button:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-form button:active {
    transform: translateY(0);
    box-shadow: var(--shadow);
}

.contact-form button i {
    transition: transform 0.3s ease;
}

.contact-form button:hover i {
    transform: translateX(3px);
}


.map-section.no-gap {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 1;
}

.map-section.no-gap #map {
    width: 100%;
    height: 100%;
    display: block;
}

.map-marker-icon {
    color: var(--primary);
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}



footer {
    background-color: var(--secondary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-columns {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-logo img,
.footer-logo svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.footer-slogan {
    font-style: italic;
    opacity: 0.8;
    max-width: 200px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    opacity: 1;
    transform: translateX(3px);
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1024px) {
    .hero-content {
        max-width: 550px;
        margin-left: 2rem;
    }
    
    .contact-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 2rem;
    }
    
    .about-container {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .about-text, .about-image {
        flex: 1 1 100%;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        margin: 2rem 0;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-columns {
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    
    header {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .accordion-header {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .accordion-content p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .map-section.no-gap {
        height: 300px;
    }
}
