/* style/style.css */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,600&family=Poppins:wght@400;500&display=swap');

:root {
    /* --- COLOR PALETTE --- */
    --leaf-green: #597D35;
    --dark-green: #4F583B; 
    --creamy-white: #f8f4e8;
    --dark-brown: #6d3914;
    --warm-brown: #9f805f;
    --soft-yellow: #edc36a;
    --charcoal: #2E2E2E;
    
    --white: #f8f4e8;
    --grey-text: #6b6b6b;
    --font-serif: 'Lora', serif;
    --font-sans: 'Poppins', sans-serif;
    --radius: 16px;
    --transition: 0.4s ease;
}

/* --- Global Styles & Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    background-color: var(--creamy-white);
    color: var(--charcoal);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { 
    font-family: var(--font-serif); 
    color: var(--dark-green) !important;
    font-weight: 600; 
}
a { text-decoration: none; color: var(--leaf-green); }
.container { max-width: 1050px; margin: 0 auto; padding: 0 1rem; }
section { padding: 6rem 0; overflow: hidden; }
.section-title { font-size: 2.8rem; text-align: center; margin-bottom: 4rem; }
.pattern-bg { background-image: url('https://res.cloudinary.com/dvhbvzeb1/image/upload/pattern.png'); backdrop-filter: opacity(0.7);}

/* --- Themeing --- */
.light-bg { background-color: var(--creamy-white); }
.dark-bg { background-color: var(--dark-green); }
.dark-bg h2, .dark-bg h3, .dark-bg p { color: #f0f0f0 !important; }
.dark-bg .section-title, .dark-bg .value-card h3 { color: var(--white); }
.dark-bg .value-card p { color: #a0a0a0; }



 /* --- Preloader Styles --- */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--creamy-white);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            transition-delay: 0.5s; 
        }
        .preloader--hidden {
            opacity: 0;
            visibility: hidden;
        }
        .preloader-container {
            text-align: center;
        }
        .preloader .preloader-logo {
            max-width: 160px;
            width: 40%;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(10px);
            animation: logo-  1s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .wave-loader {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px; 
            opacity: 0;
            animation: fade-in 0.5s forwards 0.5s;
        }
        .wave-loader span {
            width: 12px;
            height: 12px;
            background-color: #CA9006;
            border-radius: 50%;
            animation: dot-wave 1.5s infinite ease-in-out;
        }
        .wave-loader span:nth-child(1) {
            animation-delay: -0.3s;
        }
        .wave-loader span:nth-child(2) {
            animation-delay: -0.15s;
        }
        .wave-loader span:nth-child(3) {
            animation-delay: 0s;
        }
        .preloader-text {
            margin-top: 1.5rem;
            font-family: 'Poppins', sans-serif;
            color: #CA9006;
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 500;
            opacity: 0;
            animation: fade-in 0.8s forwards 0.8s;
        }

        /* Keyframe Animations */
        @keyframes logo-  {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes dot-wave {
            0%, 60%, 100% {
                transform: initial;
            }
            30% {
                transform: translateY(-15px);
            }
        }
        @keyframes fade-in {
            to {
                opacity: 1;
            }
        }

/* 
=====================================================
--- HEADER & NAVIGATION STYLES ---
=====================================================
*/
.header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    transition: all var(--transition); 
    background-color: var(--dark-green);
    height: 5.5rem;
}
.nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 100%;
}
.nav-logo img { 
    height: auto; 
    width: 50px; 
    scale: 1.2; 
}
.nav-links { 
    display: flex; 
    gap: 0.5rem; 
}
.nav-link { 
    color: var(--white);
    font-weight: 500; 
    font-size: 0.85rem; 
    position: relative; 
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    transition: all var(--transition);
}
.nav-link::after { 
    display: none;
}
.nav-link.active,
.nav-link:hover { 
    background-color: var(--soft-yellow); 
    color: var(--charcoal); 
    border-color: var(--soft-yellow);
}

.nav-right {
    display: flex;
    align-items: center;
    background-color: var(--soft-yellow);
    border-radius: 30px;
    padding: 0.5rem 1.1rem;
    transition: all var(--transition);
}
.nav-right:hover {
    background-color: var(--white);
}
.nav-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-cta {
    margin-left: 0.75rem;
    padding-left: 0.75rem;
    border-left: 1px solid var(--charcoal);
}
.nav-right a, .nav-right i {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.85rem;
    background: none;
    border: none;
    padding: 0;
}

.nav-toggle { 
    display: none; 
    font-size: 1.5rem; 
    color: var(--white); 
    cursor: pointer; 
    background: transparent;
}

/* --- Hero Section --- */
.hero { 
            height: 100vh; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            position: relative; 
            background-color: #f6d67675; 
        }
        
        .hero-bg-img { 
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            z-index: -2;  
            opacity: 1;
        }
        
        .hero::after { 
            display: none; 
        }
        
        .hero-content { 
            text-align: center; 
            color: var(--white);
            position: relative;
            z-index: 1;
        }
        
        .hero-content h1 { 
            font-size: 4.5rem; 
            color: var(--white) !important;
            line-height: 1.3; 
            margin-bottom: 1rem;
            text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .hero-content p { 
            font-size: 1.1rem; 
            max-width: 550px; 
            margin: 1rem auto 0.5rem auto; 
            color: var(--white);
            font-weight: 500;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
        }
        
        .hero-buttons { 
            display: flex; 
            justify-content: center; 
            gap: 1rem; 
            flex-wrap: wrap; 
            margin-top: 2rem;
        }

        .btn-gold, .btn-outline { 
            background-color: var(--warm-brown);
            color: var(--white); 
            padding: 1rem 2.5rem; 
            border-radius: 8px; 
            font-weight: 500; 
            border: 2px solid var(--warm-brown);
            transition: all var(--transition); 
            text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        .btn-gold:hover, .btn-outline:hover { 
        
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        /* Brown highlight box for "Food is Sacred" */
        .highlight-box {
            display: inline-block;
            background-color: var(--warm-brown);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 8px;
            margin-right: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            border: 2px solid var(--dark-brown);
        }

        .content-box {
            border-radius: 12px; 
            background: rgba(238, 194, 106, 0.1);
            padding: 15px 20px;
            padding-top: 2.5rem;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            margin: 15px;
        }

        /* Content highlighting with stronger shadows and contrast */
        .hero-content h1 {
            filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.6));
        }

        .hero-content p {
            filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5));
        }

        .hero-buttons a {
            filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 { 
                font-size: 3rem; 
            }
            .hero-content p { 
                font-size: 1rem; 
                padding: 12px 16px; 
            }
            .hero-buttons { 
                flex-direction: column; 
                align-items: center; 
            }
            .btn-gold, .btn-outline { 
                width: 250px; 
            }
        }

/* --- Story Section --- */
.story-section .split-grid { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 5rem; }
.story-image { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.story-image img { width: 100%; height: auto; display: block; }
.story-content h2 { font-size: 3rem; margin-bottom: 1.5rem; }
.story-content .highlight { display: block; margin-top: 1.5rem; border-left: 3px solid var(--leaf-green); padding-left: 1.5rem; }

/* --- Services Section --- */
.services-section .section-subtitle { max-width: 500px; margin: -3rem auto 4rem auto; text-align: center; color: var(--charcoal); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; justify-content: center; }
.service-card { background: transparent; padding: 2.5rem; border-radius: var(--radius); text-align: center; border: 1px solid #4f4f4f; }
.service-card-full { grid-column: 1 / -1; }
.service-card i { font-size: 2rem; color: var(--leaf-green); margin-bottom: 1rem; }
.service-card h3 { color: var(--dark-green); font-size: 1.4rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.95rem; color: var(--grey-text); }

/* --- Stats Section --- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item .stat-number { font-family: var(--font-serif); font-size: 3.5rem; color: var(--warm-brown); font-weight: 600; }
.stat-item .stat-text { color: var(--dark-green); font-weight: 900; font-size: 0.9rem; }

/* --- Footer --- */
.client-logos { overflow: hidden; position: relative; width: 100%; }
.logo-slider { display: flex; width: fit-content; animation: slide 40s linear infinite; }
.logo-slider img { height: 60px; margin: 0 30px; filter: grayscale(100) brightness(0) opacity(0.5); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.final-cta h2 { font-size: 2.5rem; margin-bottom: 2rem; }
.final-cta a:hover { background-color: var(--dark-brown); }
.footer { background-color: var(--dark-green); }
.footer { color: #ccc; padding: 6rem 1rem 2rem 1rem; }
.footer-grid { max-width: 1100px; margin: 0 auto 4rem auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-col h4 { font-family: var(--font-sans); color: var(--white); font-weight: 500; margin-bottom: 1.5rem; }
.footer-links li { list-style-type: disc; margin-bottom: 0.75rem; margin-left: 20px; } 
.footer-links a { color: #ccc; transition: all 0.3s; font-size: 0.95rem; }
.contact-info-list li {
    list-style-type: none;
    margin-left: 0;
}
.footer-links a:hover { color: var(--soft-yellow); }

.footer-bottom { border-top: 1px solid var(--grey-text); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; }
.footer-socials a { color: #a0a0a0; font-size: 1.2rem; margin-left: 1rem; }
.footer-socials a:hover { color: var(--white); }
/* .  { opacity: 0; transform: translateY(30px);}
. .visible { opacity: 1; transform: translateY(0); } */

.contact-info-list a {
    display: flex;
    align-items: flex-start; 
}

.contact-info-list i {
    margin-right: 12px; 
    font-size: 1rem;
    margin-top: 4px; 
    width: 1em;
}

.btn-bg {
    background: var(--soft-yellow) !important;
    color: var(--charcoal);
    text-shadow: none;
    border-color: var(--soft-yellow);
}

@media (max-width: 1000px) { 
    .nav-links, .nav-right { 
        display: none; 
    } 
    .nav-toggle { 
        display: block; 
    } 
    .story-section .split-grid { grid-template-columns: 1fr; gap: 2rem; } 
    .story-image { margin-top: 2rem; order: 2; } 
    .story-content { order: 1; } 
    .footer-grid { grid-template-columns: 1fr 1fr; } 
}
@media (max-width: 768px) { 
    .hero-content h1 { font-size: 2.8rem; } 
    .section-title, .story-content h2 { font-size: 2.2rem; } 
    .services-grid { grid-template-columns: 1fr; } 
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } 
    .footer-grid { grid-template-columns: 1fr; } 
    .footer-bottom { flex-direction: column; gap: 1rem; } 
    .mobile-nav { 
        display: flex;
        position: fixed; 
        top: 5.5rem;
        left: -100%; 
        width: 100%; 
        height: calc(100vh - 5.5rem); 
        background-color: var(--charcoal); 
        z-index: 999; 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        gap: 2rem; 
        transition: left 0.5s ease; 
        overflow-y: scroll;
    } 
    .mobile-nav.active { 
        left: 0; 
    } 
    .mobile-nav a { 
        color: var(--white); 
        font-family: var(--font-serif); 
        font-size: 1.3rem; 
        border: 1px solid var(--creamy-white);
        width: 70%;
        margin: 0 auto;
        text-align: center;
        padding: 3px 0;
        border-radius: 22px;
        &:last-child {
            background-color: var(--soft-yellow);
            color: var(--charcoal);
            border-color: var(--soft-yellow);
        }
    } 
}

/* --- Styles for other pages --- */
.vision-mission-card { background: var(--white); padding: 4rem; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.07); display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }

.vision-mission-card h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--leaf-green); }

.vision-mission-card ul { padding: 0; list-style: none; }

.vision-mission-card ul li { position: relative; padding-left: 1.75rem; margin-bottom: 0.75rem; }

.vision-mission-card ul li::before { content: '•'; position: absolute; left: 0; color: var(--leaf-green); font-size: 1.5rem; line-height: 1.7; }

.vision-mission-card ul li span { color: var(--grey-text); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { text-align: center; padding: 2.5rem 1.5rem; border: 1px solid var(--charcoal); border-radius: var(--radius); transition: background-color var(--transition);background: transparent }
.value-card:hover { background-color: rgba(109, 190, 69, 0.05); }
.value-card .icon-wrapper { width: 70px; height: 70px; margin: 0 auto 1.5rem auto; background: transparent; border-radius: 50%; display: flex; align-items: center; justify-content: center; position:relative}
.value-card .icon-wrapper i { color: var(--leaf-green); font-size: 2.2rem; }
.value-card .icon-wrapper img { width: 2.5rem; height: 2.5rem; filter: brightness(0) saturate(100%) invert(41%) sepia(48%) saturate(459%) hue-rotate(49deg) brightness(91%) contrast(89%); scale: 1.2; }
.value-card h3 { color: var(--charcoal); font-size: 1.5rem; margin-bottom: 0.5rem; }
.value-card p { color: #a0a0a0; font-size: 0.95rem; }
@media (max-width: 1024px) { .vision-mission-card { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem; } }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 490px) { .values-grid { grid-template-columns: 1fr; } }
.page-hero { padding: 8rem 0; height: auto; min-height: 50vh; display: flex; align-items: center; position: relative; }
.page-hero .hero-content { max-width: 700px; margin: 0 auto; }
.page-hero .hero-content h1 { font-size: 3.5rem; color: var(--white); }
.page-hero .hero-content p { font-size: 1.1rem; color: var(--white); }
.page-hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(30, 30, 30, 0.6); z-index: -1; }
.vision-mission-section.dark-bg .vision-mission-card { background: transparent; box-shadow: none; padding: 0; }
.vision-mission-section.dark-bg h3 { color: var(--leaf-green); }
.vision-mission-section.dark-bg p, .vision-mission-section.dark-bg li span { color: #d0d0d0; }
.values-section.light-bg .value-card { background: transparent; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.values-section.light-bg .value-card h3 { color: var(--dark-green); }
.values-section.light-bg .value-card p { color: var(--grey-text); }
.industry-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.industry-card { background: var(--dark-green); text-align: center; padding: 2.5rem; border: 1px solid var(--dark-green); border-radius: var(--radius); transition: all var(--transition); display: flex; flex-direction: column; }
.industry-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.07); }
.card-icon { font-size: 2.5rem; color: var(--leaf-green); }
.industry-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--soft-yellow) !important; }
.industry-card p { flex-grow: 1; font-size: 0.95rem; line-height: 1.7; color: var(--creamy-white); }
.card-tick-list { list-style: none; padding: 0; margin-top: 1.5rem; text-align: left; border-top: 1px solid #eee; padding-top: 1.5rem; }
.card-tick-list li { position: relative; color: var(--creamy-white); padding-left: 1.75rem; margin-bottom: 0.75rem; }
.card-tick-list li::before { content: '✓'; color: var(--soft-yellow); position: absolute; left: 0; font-weight: 600; }
@media (max-width: 768px) { .industry-card-grid { grid-template-columns: 1fr; } }
.client-category { margin-bottom: 5rem; }
.category-title { text-align: center; font-size: 2rem; margin-bottom: 3rem; position: relative; display: inline-block; left: 50%; transform: translateX(-50%); }
.category-title::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 100%; height: 2px; background-color: var(--leaf-green); }
.client-logos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 3rem; align-items: center; }
.client-logo-item { display: flex; justify-content: center; align-items: center; }
.client-logo-item img { max-height: 45px; max-width: 100%; filter: grayscale(100%); opacity: 0.6; transition: all var(--transition); }
.client-logo-item img:hover {  opacity: 1; transform: scale(1.1); }
.testimonial-section { padding: 5rem 0; text-align: center; background-color: var(--creamy-white); }
.testimonial-section i { font-size: 2.5rem; color: var(--grey-text); margin-bottom: 1.5rem; }
.testimonial-text { font-family: var(--font-serif); font-size: 1.8rem; font-style: italic; max-width: 800px; margin: 0 auto 1.5rem auto; line-height: 1.6; color: var(--dark-green) !important; }
.testimonial-author { font-weight: 500; color: var(--white); }
@media (max-width: 768px) { .client-logos-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 2.5rem; } .testimonial-text { font-size: 1.5rem; } }
.hygiene-timeline { padding-top: 2rem; padding-bottom: 2rem; background-color: var(--dark-green); }
.hygiene-timeline .container { max-width: 800px; }
.timeline-item { position: relative; padding: 1rem 0 3rem 4rem; border-left: 2px solid var(--white); }
.timeline-item:last-child { border-left: 2px solid transparent; padding-bottom: 1rem; }
.timeline-icon { position: absolute; left: -26px; top: 1rem; width: 50px; height: 50px; background: var(--soft-yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dark-green); font-size: 1.5rem; }
.timeline-content h3 { color: var(--white); margin-bottom: 0.5rem; }
.timeline-content .quote { font-style: italic; margin-bottom: 1rem; border-left: 2px solid var(--soft-yellow); padding-left: 1rem; color: #a0a0a0; }
.timeline-content p { color: #b0b0b0; }
.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 800px; margin: 0 auto; }
.promise-item { background: var(--white); border: 1px solid var(--dark-green); padding: 1rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); font-size: 1.1rem; font-weight: 500; }
.promise-item i { color: var(--leaf-green); margin-right: 0.75rem; }
@media (max-width: 768px) { .timeline-item { padding-left: 3rem; } .promise-grid { grid-template-columns: 1fr; } }
.open-roles-section { padding-top: 5rem; padding-bottom: 5rem; background-color: var(--dark-green); }
.roles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.role-card { background-color: var(--dark-green); text-align: center; border: 1px solid var(--soft-yellow); padding: 1.5rem; border-radius: 12px; transition: all var(--transition); }
.role-card:hover { transform: translateY(-5px); border-color: var(--soft-yellow); }
.role-card h3 { color: var(--soft-yellow) !important; font-size: 1.3rem; margin-bottom: 0.25rem; }
.role-card p { color: var(--grey-text); font-size: 0.9rem; }
.apply-cta-section { padding: 5rem 0; }
.cta-buttons { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-buttons .btn-gold, .cta-buttons .btn-outline { padding: 1rem 2rem; font-size: 1rem; }
.cta-buttons .btn-gold { color: var(--white); background-color: var(--warm-brown); border-color: var(--warm-brown); }
.cta-buttons .btn-outline:hover { background-color: var(--leaf-green); color: var(--white); }
.cta-buttons i { margin-right: 0.75rem; }
@media (max-width: 768px) { .roles-grid { grid-template-columns: 1fr; } }
.nav-cta a.active-cta { background-color: var(--leaf-green); color: var(--white); }
.contact-options-section { padding-top: 5rem; padding-bottom: 5rem; }
.contact-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-card { background: transparent; border: 1px solid #4f4f4f; padding: 2.5rem; border-radius: var(--radius); text-align: center; transition: all var(--transition); display: flex; flex-direction: column; }
.contact-card:hover { transform: translateY(-5px); border-color: var(--leaf-green); }
.contact-card .card-icon { font-size: 2.5rem; color: var(--leaf-green); margin-bottom: 1rem; }
.contact-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-card p { color: #ccc; font-size: 0.95rem; flex-grow: 1; margin-bottom: 2rem; }
.btn-card { display: inline-block; background: var(--dark-green) !important; border: 1px solid var(--dark-green) !important; color: var(--leaf-green); padding: 0.8rem 1.5rem; border-radius: 8px; font-weight: 500; transition: all var(--transition); }
.btn-card:hover { background: var(--leaf-green); color: var(--white); }
@media (max-width: 768px) { .contact-card-grid { grid-template-columns: 1fr; } }

.light-bg .contact-card:hover { border-color: var(--leaf-green); }
.light-bg .contact-card h3 { color: var(--charcoal); }
.light-bg .contact-card p { color: var(--grey-text); }
.light-bg .btn-card { background: var(--warm-brown); color: var(--white); border-color: var(--warm-brown); }
.light-bg .btn-card:hover { background: var(--dark-brown); border-color: var(--dark-brown); }

@media (max-width: 450px) {
    .hero-buttons a {
        width: 100%;
        max-width: 75%;
    }
}