:root {
    --primary-dark: #0B1C10;
    --primary-lime: #C2FF4D;
    --text-white: #FFFFFF;
    --text-muted: #A0B3A2;
    --bg-light: #F4F7F2;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    background-color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(10px, 5vw, 20px);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: clamp(10px, 1.5vw, 15px) 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(11, 28, 16, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.brand-logo {
    height: clamp(120px, 8vw, 120px);
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
    background: rgba(11, 28, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px;
    border-radius: 50px;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition);
    display: block;
}

.nav-links li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-links li a.active {
    background: var(--primary-lime);
    color: var(--primary-dark);
}

.btn-primary {
    background: var(--primary-lime);
    color: var(--primary-dark) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(194, 255, 77, 0.2);
}

.btn-secondary {
    /* border: 1px solid var(--glass-border); */
    color: var(--text-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--glass-bg);
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 28, 16, 0.92) 0%,
            rgba(11, 28, 16, 0.75) 40%,
            rgba(11, 28, 16, 0.5) 70%,
            rgba(11, 28, 16, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: clamp(100px, 15vh, 160px) clamp(20px, 5vw, 40px);
}

.badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(194, 255, 77, 0.15);
    /* border: 1px solid rgba(194, 255, 77, 0.3); */
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-lime);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    animation: fadeInDown 0.8s ease-out;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 700;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btns .btn-primary {
    padding: 16px 36px;
    font-size: 1rem;
    box-shadow: 0 10px 40px rgba(194, 255, 77, 0.25);
}

.hero-btns .btn-secondary {
    padding: 16px 36px;
    font-size: 1rem;
    background: rgba(11, 28, 16, 0.9);
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.hero-btns .btn-secondary:hover {
    background: rgba(11, 28, 16, 1);
    border-color: var(--primary-lime);
    color: var(--primary-lime);
}

/* Hero Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Layout & Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dairy-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.dairy-detailed-grid .grid-2.reversed .content-box {
    order: -1;
}

@media (max-width: 1024px) {
    .dairy-detailed-grid .grid-2.reversed .content-box {
        order: 0;
    }
}

.text-center {
    text-align: center;
}

.mt-80 {
    margin-top: clamp(40px, 8vw, 80px);
}

section {
    padding: clamp(60px, 10vw, 120px) 0;
}

img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 32px;
    line-height: 1.1;
}

h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-lime);
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

/* About Section */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.mv-card {
    background: var(--glass-bg);
    /* border: 1px solid var(--glass-border); */
    padding: 24px;
    border-radius: 20px;
}

.mv-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.mv-card ul {
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mv-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.mv-card ul li::before {
    content: "•";
    color: var(--primary-lime);
    position: absolute;
    left: 0;
}

/* Dairy Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.stat-card,
.stat-number-card {
    background: var(--glass-bg);
    /* border: 1px solid var(--glass-border); */
    padding: 40px 20px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-number-card {
    background: var(--primary-lime);
    color: var(--primary-dark);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    color: var(--primary-lime);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Rhode Grass Section */
.rhode-section {
    position: relative;
    overflow: hidden;
}

.rhode-section .grid-2 {
    gap: 100px;
}

.video-box {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 28, 16, 0.4), transparent);
    pointer-events: none;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-pills span {
    background: rgba(194, 255, 77, 0.1);
    /* border: 1px solid rgba(194, 255, 77, 0.2); */
    color: var(--primary-lime);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* Export Banner */
.export-stats-banner {
    background: linear-gradient(90deg, rgba(194, 255, 77, 0.1), transparent);
    border-left: 3px solid var(--primary-lime);
    padding: 24px;
    border-radius: 0 20px 20px 0;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    /* Ensures icon and text are centered vertically */
    gap: 24px;
}

.export-icon {
    font-size: 2.8rem;
    /* Slightly larger for better presence */
    line-height: 1;
}

.export-content h3 {
    margin-bottom: 4px;
    font-size: 1.5rem;
    color: var(--primary-lime);
    line-height: 1.2;
}

.export-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Land Assets */
.land-assets-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
}

.land-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    align-items: stretch;
    /* All cards in a row will have same height */
}

.land-asset-card {
    background: var(--glass-bg);
    padding: 24px 20px;
    border-radius: 20px;
    /* border: 1px solid var(--glass-border); */
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    /* Using flexbox for internal alignment */
    flex-direction: column;
    height: 100%;
}

.land-asset-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-lime);
    transform: translateY(-5px);
}

.land-info {
    flex-grow: 1;
    /* Pushes the land-size to the bottom */
    margin-bottom: 20px;
}

.land-info h4 {
    color: var(--text-white);
    margin-bottom: 4px;
    font-size: 1.2rem;
    font-weight: 600;
}

.land-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    /* Removed margin to allow flex-grow to handle spacing */
    line-height: 1.4;
}

.land-size {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-lime);
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: auto;
}

.land-size span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.land-asset-card.upcoming {
    border-style: dashed;
    border-color: rgba(194, 255, 77, 0.4);
}

.upcoming-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-lime);
    color: var(--primary-dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 0 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Sustainability */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    /* border: 1px solid var(--glass-border); */
    padding: 60px 40px;
    border-radius: 40px;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
}

.glass-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 24px;
}

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: var(--glass-bg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.contact-info {
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 32px;
}

.contact-list {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: var(--transition);
}

.contact-list li:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.contact-list li div {
    flex: 1;
}

.contact-list li strong {
    display: block;
    color: var(--primary-lime);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-list li p {
    margin: 0;
    color: var(--text-white);
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form {
    padding: 60px;
}

.map-container {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 500px;
    filter: grayscale(0.2) contrast(1.1);
}


.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 16px;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--primary-lime);
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: var(--glass-bg);
    /* border: 1px solid var(--glass-border); */
    padding: 40px;
    border-radius: 32px;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.why-card h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 28, 16, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--primary-lime);
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease, z-index 0.5s step-start;
}

.gallery-item:hover {
    transform: scale(1.25);
    z-index: 50;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(194, 255, 77, 0.3);
    overflow: visible;
}

/* Hide overlay on video hover */
.video-item:hover .gallery-overlay {
    opacity: 0 !important;
}

/* Specific video handling */
.video-item {
    cursor: pointer;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-item:hover video {
    transform: scale(1.05);
    /* Parallax-like zoom inside */
}

.gallery-overlay {
    z-index: 2;
    pointer-events: none;
    /* Let clicks pass to video if needed */
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: linear-gradient(to top, #050f08, #0B1C10);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%, rgba(194, 255, 77, 0.05), transparent 60%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-lime);
}

.footer-nav,
.footer-contact {
    list-style: none;
}

.footer-nav li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--primary-lime);
    padding-left: 5px;
}

.footer-contact li {
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-form .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    margin-top: 60px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-lime);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        padding: clamp(80px, 12vh, 120px) 20px;
    }

    /* Fix for mobile background image not showing */
    .hero {
        background-attachment: scroll;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .glass-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
        margin-top: 20px;
        width: 100%;
    }

    .mobile-only .btn-primary {
        justify-content: center;
        width: 100%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        transform: none;
        width: 100%;
        height: 100vh;
        background: rgba(11, 28, 16, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        border-radius: 0;
        border: none;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        gap: 30px;
        padding: 40px;
    }

    .nav-links li a {
        font-size: 1.2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 2px;
        margin: 5px auto;
        background-color: var(--text-white);
        transition: var(--transition);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 40px 20px;
    }

    .map-container iframe {
        height: 350px;
    }

    .glass-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .video-box {
        height: 350px;
        order: -1;
        margin-bottom: 40px;
    }

    .rhode-section .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Mobile specific: Remove arrow and center text */
    .hero-btns .btn-primary {
        justify-content: center;
    }

    .hero-btns .btn-primary .arrow {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
        /* Keep multi-line address readable */
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form input {
        text-align: center;
    }

    .newsletter-form .btn-primary {
        justify-content: center;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .footer-links {
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
        color: var(--text-muted);
        flex-wrap: wrap;
        /* Prevent overflow on very small screens */
    }

    footer {
        padding: 60px 0 30px;
        /* Reduced padding for mobile */
    }
}