/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
    /* Colors */
    --clr-primary: #059669; /* Emerald 600 */
    --clr-primary-light: #10b981; /* Emerald 500 */
    --clr-primary-dark: #047857; /* Emerald 700 */
    --clr-secondary: #0f172a; /* Slate 900 */
    --clr-secondary-light: #1e293b; /* Slate 800 */
    
    --clr-text-main: #334155; /* Slate 700 */
    --clr-text-light: #64748b; /* Slate 500 */
    --clr-text-heading: #0f172a;
    
    --clr-bg-main: #ffffff;
    --clr-bg-alt: #f8fafc; /* Slate 50 */
    --clr-border: #e2e8f0;
    
    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Radii */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--clr-text-heading);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--clr-bg-alt);
}

.text-center {
    text-align: center;
}

.highlight-text {
    color: var(--clr-primary);
}

/* =========================================
   COMPONENTS
   ========================================= */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--clr-secondary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* =========================================
   LAYOUT & SECTIONS
   ========================================= */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--clr-border);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.navbar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-secondary);
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text .highlight {
    color: var(--clr-primary);
    font-weight: 300;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu a:hover {
    color: var(--clr-primary);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    min-width: 220px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    padding: 0.75rem 1.5rem;
    font-weight: 400;
}

.dropdown li a:hover {
    background-color: var(--clr-bg-alt);
    color: var(--clr-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--clr-secondary);
    transition: var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-secondary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.6) 50%, rgba(15,23,42,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    text-align: left;
    width: 100%;
    margin-right: auto;
    margin-left: 5%;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(16, 185, 129, 0.2);
    color: var(--clr-primary-light);
    border: 1px solid var(--clr-primary-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 1.5rem;
    color: white;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: white;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Services */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--clr-text-light);
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-img {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
    transition: background var(--transition-normal);
}

.service-card-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-img:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%);
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.service-card-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.service-card-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Features */
.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-image {
    position: relative;
    border-radius: var(--radius-lg);
}

.green-blob {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-color: var(--clr-primary-light);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    opacity: 0.1;
}

.feature-img-main {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--clr-primary);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    z-index: 2;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.experience-badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

.features-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.features-lead {
    font-size: 1.125rem;
    color: var(--clr-text-light);
    margin-bottom: 2.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
}

.icon-box {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background-color: var(--clr-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.feature-list h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.feature-list p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

/* Contact Split Section */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.contact-left {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(6, 38, 64, 0.95);
    z-index: 1;
}

.contact-left-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
}

.contact-left-content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.contact-left-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-divider {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 2.5rem;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-details-col {
    display: flex;
    flex-direction: column;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-detail-item .icon {
    font-size: 1.25rem;
}

.contact-detail-item a {
    color: white;
}

.contact-detail-item a:hover {
    color: var(--clr-primary-light);
}

.contact-detail-item strong {
    font-weight: 800;
}

.contact-right {
    background-color: white;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.contact-right h2 {
    font-size: 1.8rem;
    color: var(--clr-secondary);
    margin-bottom: 2rem;
}

.stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 10px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border: 1px solid var(--clr-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--clr-text-light);
    margin-bottom: 0.5rem;
}

.step.active .step-circle {
    border-color: var(--clr-secondary);
    color: var(--clr-secondary);
    font-weight: bold;
}

.step-label {
    font-size: 0.75rem;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step.active .step-label {
    color: var(--clr-secondary);
}

.step-line {
    position: absolute;
    top: 16px;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #e2e8f0;
    z-index: 1;
}

.transport-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--clr-text-light);
}

.form-group label .required {
    color: #ef4444;
}

.form-group input, .form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--clr-border);
    border-radius: 2px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--clr-text-main);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--clr-secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background-color: #062640;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color var(--transition-fast);
    text-transform: uppercase;
}

.btn-submit:hover {
    background-color: var(--clr-primary);
}

@media (max-width: 992px) {
    .contact-split {
        grid-template-columns: 1fr;
    }
    .contact-left-content, .contact-right {
        margin: 0 auto;
        padding: 4rem 2rem;
    }
}
@media (max-width: 576px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: var(--clr-bg-alt);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid var(--clr-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--clr-text-light);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-logo {
    margin-bottom: 1rem;
    display: inline-flex;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-secondary);
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background-color: var(--clr-primary);
    color: white;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--clr-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .features-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* Subpage Styles */
.page-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 80px; 
}
.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(6, 38, 64, 0.9) 0%, rgba(6, 38, 64, 0.4) 100%);
    z-index: 1;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}
.breadcrumbs a {
    color: white;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.page-hero h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 800;
}

.subpage-title {
    font-size: 2rem;
    color: var(--clr-secondary);
}
.title-divider {
    width: 80px;
    height: 4px;
    background-color: var(--clr-secondary);
    margin: 1.5rem auto 3rem;
}

.page-section {
    background-color: #E6E7E9;
    padding: 5rem 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.info-card {
    background: white;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.info-card h3 {
    font-size: 1.25rem;
    color: var(--clr-secondary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}
.info-card p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat-card {
    background: white;
    padding: 2.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.stat-icon {
    width: 70px;
    height: 70px;
    color: var(--clr-secondary);
    margin-bottom: 1.5rem;
}
.stat-icon svg {
    width: 100%;
    height: 100%;
}
.stat-card h4 {
    font-size: 1rem;
    color: var(--clr-secondary);
    font-weight: 800;
}

@media (max-width: 992px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    .stats-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.warehouse-intro-text {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    text-align: left;
}
.warehouse-intro-text p {
    color: var(--clr-text-main);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.warehouse-intro-text p:last-child {
    margin-bottom: 0;
}


/* Green Logistics Specific Layout */
.green-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.green-content-box {
    background-color: white;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.green-content-box p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.green-content-box p:last-child {
    margin-bottom: 0;
}
.green-text-mask-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 2rem;
}
.green-text-mask {
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: lowercase;
    background-image: url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    letter-spacing: -2px;
}
.green-text-shadow {
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 70%);
}

@media (max-width: 992px) {
    .green-layout {
        grid-template-columns: 1fr;
    }
    .green-text-mask {
        font-size: 5rem;
    }
}

/* Comprehensive Mobile UI Enhancements */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .page-hero {
        height: 300px;
        margin-top: 60px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .subpage-title {
        font-size: 1.6rem;
    }
    
    .section-header h2, .features-content h2 {
        font-size: 2rem;
    }
    
    .service-card-img {
        height: 250px;
    }
    
    .page-section {
        padding: 3rem 0;
    }
    
    .green-content-box {
        padding: 1.5rem;
    }
    
    .warehouse-intro-text {
        margin-bottom: 2rem;
    }
    
    .feature-list li {
        gap: 1rem;
    }
    
    .contact-left-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-left-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-right h2 {
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stats-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .green-text-mask {
        font-size: 3.5rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}
