@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;
}

* {
    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-color);
}

.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; 
}

.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;
}



.services-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}


.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-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.7s ease;
}

.service-card.hovered::before {
    opacity: 1;
}

.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.train {
    background: linear-gradient(135deg, var(--train-color), #60a5fa);
}

.service-icon.warehouse {
    background: linear-gradient(135deg, var(--warehouse-color), #a78bfa);
}

.service-icon.terminal {
    background: linear-gradient(135deg, var(--terminal-color), #4ade80);
}

.service-icon.customs {
    background: linear-gradient(135deg, var(--customs-color), #fbbf24);
}

.service-icon i {
    font-size: 1.5rem;
}

.service-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.service-card.hovered h2 {
    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;
    border: none;
    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;
}

.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;
}

.train-btn {
    background: linear-gradient(to right, var(--train-color), #60a5fa);
}

.warehouse-btn {
    background: linear-gradient(to right, var(--warehouse-color), #a78bfa);
}

.terminal-btn {
    background: linear-gradient(to right, var(--terminal-color), #4ade80);
}

.customs-btn {
    background: linear-gradient(to right, var(--customs-color), #fbbf24);
}


.faq-section {
    padding: 5rem 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    left: -10%;
    bottom: -10%;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 189, 36, 0.05) 0%, rgba(163, 189, 36, 0) 70%);
    z-index: 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: var(--radius);
    background-color: white;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.accordion-item.active .accordion-header {
    color: var(--primary);
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
}


.contact-us {
    padding: 5rem 0;
    background-color: white;
    position: relative;
}

.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;
}

.contact-card-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.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;
}

.contact-card-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}
.contact-card-item p a {
    text-decoration: none;   
    color: inherit;          
}



.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: 1023px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }

    .services-header h2,
    .faq-header h2,
    .contact-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        height: auto;
        min-height: 500px;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
    
    .hero-content {
        margin-left: 1rem;
        margin-right: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .services-section,
    .faq-section,
    .contact-us {
        padding: 3rem 0;
    }
    
    .services-header h2,
    .faq-header h2,
    .contact-info h2 {
        font-size: 1.75rem;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        width: 100%;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}

@media (max-width: 479px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-btn {
        width: 100%;
    }
    
    .accordion-header {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-content p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}


.fas.fa-truck-loading {
    font-size: 1.5rem;
}
