/* =========================================
   IMPORTS & VARIABLES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --primary-green: #145c36;
    --primary-green-hover: #1b7a48;
    --silver-accent: #a3a8a5;
    --nav-text: #1a202c;
    --text-muted: #4a5568;
    --white: #ffffff;
    --background: #f8fafc;
    --border-color: #e2e8f0;

    /* Effects */
    --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);
    --glow-primary: 0 10px 20px -10px rgba(20, 92, 54, 0.6); /* Button glow */

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1); /* Enhanced easing */

    /* Spacing */
    --radius-md: 8px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background);
    line-height: 1.6;
    color: var(--nav-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

*:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
    background-color: var(--nav-text);
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 0;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtle separation */
}

.top-bar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info span {
    margin-right: 25px;
    font-weight: 400;
    color: #cbd5e1;
    display: inline-block;
    transition: color var(--transition-fast);
}

.contact-info span:hover {
    color: var(--white);
}

.contact-info i, .social-links a i {
    color: var(--primary-green);
    margin-right: 8px;
    transition: transform var(--transition-fast);
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 18px;
    transition: color var(--transition-fast), transform var(--transition-fast);
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-green);
    transform: translateY(-2px) scale(1.1); /* Slight pop effect */
}

/* =========================================
   HEADER & LOGO
   ========================================= */
.main-header {
    background-color: rgba(255, 255, 255, 0.90); /* Slightly more transparent */
    backdrop-filter: blur(16px); /* Stronger blur for true glassmorphism */
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-smooth), background-color var(--transition-smooth);
}

/* Enhances shadow when scrolled (if you ever add JS for a .scrolled class, this applies instantly) */
.main-header:hover {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 25px;
}

.logo-container img {
    max-height: 85px;
    width: auto;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth), filter var(--transition-smooth);
}

.logo-container img:hover {
    transform: scale(1.03);
    opacity: 0.95;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05)); /* Soft logo shadow on hover */
}

/* =========================================
   DESKTOP NAVIGATION
   ========================================= */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px; /* Slightly wider spacing */
    align-items: center;
}

.nav-links li a,
.dropdown-title {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px; /* Spacing for the dropdown icon */
}

/* Center-Out Underline Animation */
.nav-links li a::after,
.dropdown-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-green);
    transition: width var(--transition-smooth);
    border-radius: 2px;
}

.nav-links li a:hover::after,
.dropdown-title:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.dropdown-title:hover,
.nav-links li a.active {
    color: var(--primary-green);
}

/* Rotating Dropdown Arrow */
.dropdown-title i {
    font-size: 0.75rem;
    transition: transform var(--transition-smooth);
}

.dropdown:hover .dropdown-title i {
    transform: rotate(-180deg);
}

/* Desktop CTA Button */
.header-cta {
    display: flex;
    align-items: center;
}

.btn-quote {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
    margin-left: 15px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-quote:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-primary); /* Combined physical shadow + colored glow */
    color: var(--white);
}

/* Desktop Dropdown Behavior (Upgraded to transform opacity) */
.dropdown {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.dropdown-menu {
    /* Using opacity/visibility instead of display:none for smooth animation */
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px) scale(0.98);
    position: absolute;
    top: 100%;
    left: -15px; /* Centers slightly better under the text */
    background-color: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    z-index: 1001;
    list-style: none;
    padding: 10px 0;
    border: 1px solid var(--border-color);
    transition: all var(--transition-smooth);
    pointer-events: none; /* Prevents accidental hovers when hidden */
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.dropdown-menu li a::after {
    display: none; /* Disable main nav underline here */
}

.dropdown-menu li a:hover {
    background-color: var(--background);
    color: var(--primary-green);
    padding-left: 30px; /* Elegant slide-in effect */
}

/* =========================================
   MOBILE NAVIGATION & TOP BAR RESPONSIVENESS
   ========================================= */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--nav-text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Bouncy, pro toggle animation */
}

@media screen and (max-width: 1050px) {
    .header-cta { display: none; }

    .logo-container img { max-height: 120px; }

    .top-bar-container {
        justify-content: center;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .mobile-menu-toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); background-color: var(--primary-green); }
    .mobile-menu-toggle.open span:nth-child(2) { opacity: 0; transform: scale(0); }
    .mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); background-color: var(--primary-green); }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 340px;
        max-width: 85%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 0 40px 0;
        overflow-y: auto;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1); /* Smoother slide in */
        box-shadow: -15px 0 40px rgba(0,0,0,0.08);
        z-index: 1001;
        gap: 0;
    }

    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; }

    .nav-links li a,
    .dropdown-title {
        display: flex;
        justify-content: space-between; /* Pushes dropdown arrow to right edge */
        width: 100%;
        padding: 20px 35px;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li a::after, .dropdown-title::after { display: none; }

    /* For mobile, we handle hover state for dropdowns purely with block (or you can use JS to toggle a class) */
    .dropdown:hover .dropdown-menu,
    .dropdown:active .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        position: static;
        display: block;
    }

    .dropdown-menu {
        position: absolute; /* Keep it hidden until hovered/tapped */
        visibility: hidden;
        opacity: 0;
        display: none;
        box-shadow: inset 0 4px 6px -4px rgba(0,0,0,0.05); /* Inner shadow for depth */
        border: none;
        background-color: var(--background);
        padding: 0;
        width: 100%;
    }

    .dropdown-title {
        color: var(--primary-green);
        font-weight: 600;
        cursor: default;
    }

    .dropdown:hover .dropdown-title i {
        transform: rotate(-180deg);
    }

    .dropdown-menu li a {
        padding: 18px 35px 18px 50px;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }

    .dropdown-menu li a:hover {
        padding-left: 55px;
        background-color: rgba(20, 92, 54, 0.05); /* Very subtle green tint */
    }
}

@media screen and (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 12px;
        padding: 12px 15px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contact-info span {
        margin-right: 0;
    }

    .social-links {
        justify-content: center;
    }

    .social-links a {
        margin: 0 10px;
    }
}




/* Footer */


/* =========================================
   UTILITY CLASSES
   ========================================= */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

/* =========================================
   FOOTER STYLES
   ========================================= */
.main-footer {
    background-color: #0f172a; /* Sophisticated dark slate */
    color: #cbd5e1;
    padding: 80px 0 0 0;
    margin-top: 60px;
    font-size: 0.95rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

/* Footer Logo Setup */
.footer-logo {
    max-height: 75px;
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: var(--radius-md, 8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo:hover {
    transform: translateY(-3px);
}

/* Column Headers */
.footer-col h4 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

/* Small green accent line under the headers */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #94a3b8;
}

/* Footer Link Lists */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

/* Slide to the right slightly on hover */
.footer-col ul li a:hover {
    color: var(--primary-green);
    padding-left: 8px;
}

/* Contact Column Icons */
.contact-col i {
    color: var(--primary-green);
    margin-right: 12px;
    width: 18px;
    text-align: center;
    font-size: 1.05rem;
}

/* Social Media Circles */
.footer-socials {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #1e293b; /* Lighter slate accent */
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-socials a i {
    margin: 0;
    color: #e2e8f0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--primary-green);
    transform: translateY(-4px); /* Pro lift effect */
    box-shadow: 0 10px 15px -3px rgba(20, 92, 54, 0.4); /* Subtle green glow */
    border-color: var(--primary-green);
}

.footer-socials a:hover i {
    color: var(--white);
}

/* Very Bottom Copyright Bar */
.footer-bottom {
    background-color: #020617; /* Deep slate base */
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Soft separation */
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
    letter-spacing: 0.01em;
}

/* Optional: Slight tweak for mobile viewing */
@media screen and (max-width: 768px) {
    .footer-grid {
        gap: 35px;
    }
    .main-footer {
        padding: 60px 0 0 0;
    }
}


.developer-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-smooth);
}

.developer-link:hover {
    color: var(--white); /* Turns white on hover for a nice pop */
}




/* floating app and tel */



/* =========================================
   FLOATING CONTACT BUTTONS
   ========================================= */
.floating-contact-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column; /* Stacks the buttons vertically */
    gap: 15px;
    z-index: 9999; /* Ensures they always sit on top of everything */
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-smooth);
    position: relative;
}

/* WhatsApp Button - Using Official WA Brand Color */
.floating-btn.whatsapp {
    background-color: #25D366;
}

/* Phone Button - Using your Brand's Primary Green */
.floating-btn.phone {
    background-color: var(--primary-green);
}

/* Hover Effects */
.floating-btn:hover {
    transform: translateY(-5px) scale(1.08); /* Lifts and slightly enlarges */
    color: var(--white);
}

.floating-btn.whatsapp:hover {
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.6);
    animation: none; /* Stops the pulse when hovering so it's easier to click */
}

.floating-btn.phone:hover {
    /* Reuses the glow variable we created for the header button earlier */
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

/* Subtle Pulse Animation to draw attention to WhatsApp */
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-btn.whatsapp {
    animation: pulse-ring 2.5s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .floating-contact-wrap {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}




/* hero section */

/* =========================================
   HERO SECTION (Final & Upgraded)
   ========================================= */

/* Hero Container - Fixed for Solid Header */
.hero-section {
    position: relative;
    /* Calculates height to fill screen below your top-bar and header (~130px total) */
    height: calc(100vh - 130px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* -----------------------------------------
   Infinite Background Slider
   ----------------------------------------- */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* 24s total duration for 4 slides = 6s per slide */
    animation: infiniteFade 24s infinite linear;
}

/* Stagger the animation delays for the 4 images */
.hero-slider .slide:nth-child(1) { animation-delay: 0s; }
.hero-slider .slide:nth-child(2) { animation-delay: 6s; }
.hero-slider .slide:nth-child(3) { animation-delay: 12s; }
.hero-slider .slide:nth-child(4) { animation-delay: 18s; }

/* The Infinite Fade & Zoom Animation */
@keyframes infiniteFade {
    0%   { opacity: 0; transform: scale(1); }
    5%   { opacity: 1; }
    25%  { opacity: 1; transform: scale(1.05); } /* Slow zoom while visible */
    30%  { opacity: 0; transform: scale(1.06); } /* Fade out */
    100% { opacity: 0; transform: scale(1); }
}

/* -----------------------------------------
   Cinematic Gradient Overlay
   ----------------------------------------- */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Lighter at top, darker at bottom for maximum text contrast */
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.3) 0%,
        rgba(15, 23, 42, 0.6) 60%,
        rgba(15, 23, 42, 0.85) 100%
    );
    z-index: 2;
}

/* -----------------------------------------
   Hero Content & Staggered Entrance
   ----------------------------------------- */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 850px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #e2e8f0;
    font-weight: 400;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; /* 0.2s delay */
}

/* -----------------------------------------
   Hero Buttons
   ----------------------------------------- */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; /* 0.4s delay */
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 15px 35px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--primary-green-hover);
    border-color: var(--primary-green-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
    color: var(--white);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--white);
    padding: 15px 35px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--white);
    transition: all var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--nav-text);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* -----------------------------------------
   Animated Scroll Indicator
   ----------------------------------------- */

/* Custom animation that keeps the -50% centering intact */
@keyframes slideUpFadeCentered {
    0% {
        opacity: 0;
        transform: translate(-50%, 40px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%); /* Base centering */
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    /* Uses the centered animation to prevent jumping */
    animation: slideUpFadeCentered 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
    margin-bottom: 8px;
    transition: border-color var(--transition-fast);
}

.scroll-indicator:hover .mouse {
    border-color: var(--primary-green);
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.scroll-indicator:hover .wheel {
    background-color: var(--primary-green);
}

.scroll-indicator .scroll-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.scroll-indicator:hover .scroll-text {
    color: var(--white);
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 0; }
}

/* -----------------------------------------
   HERO RESPONSIVENESS
   ----------------------------------------- */
@media screen and (max-width: 992px) {
    .hero-content h1 { font-size: 3.2rem; }
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: 100vh; /* Reverts to full screen on mobile for a better layout */
    }

    .hero-content h1 {
        font-size: 2.4rem;
        letter-spacing: -0.01em;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

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

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .scroll-indicator {
        bottom: 25px;
    }
}




/* about / */


/* =========================================
   ABOUT US SECTION
   ========================================= */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* -----------------------------------------
   About Content
   ----------------------------------------- */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    /* Infinite gentle pulse to draw the eye */
    animation: gentlePulse 3s infinite;
}

.rating-badge .stars {
    color: #eab308; /* Star Gold */
    font-size: 0.9rem;
}

.rating-badge span {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--nav-text);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.about-content .lead-text {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    margin-bottom: 40px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.about-features i {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-top: 4px;
}

.about-features strong {
    display: block;
    color: var(--nav-text);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.about-features span {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-btn i {
    transition: transform var(--transition-fast);
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* -----------------------------------------
   About Visuals & Infinite Animations
   ----------------------------------------- */
.about-visuals {
    position: relative;
    width: 100%;
    padding: 30px;
}

.img-main-wrap {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-main-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

/* Floating Images */
.img-float {
    position: absolute;
    z-index: 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.25);
    border: 5px solid var(--white);
    background-color: var(--white);
}

.img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.float-top-right {
    width: 220px;
    height: 220px;
    top: -20px;
    right: -40px;
    animation: floatY 6s ease-in-out infinite; /* Vertical float */
}

.float-bottom-left {
    width: 240px;
    height: 180px;
    bottom: 20px;
    left: -40px;
    animation: floatX 8s ease-in-out infinite; /* Horizontal float */
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    z-index: 4;
    background-color: var(--primary-green);
    color: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 25px -5px rgba(20, 92, 54, 0.4);
    animation: floatY 5s ease-in-out infinite alternate-reverse;
}

.experience-badge .years {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Decorative Spinning Ring */
.decor-ring {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 250px;
    height: 250px;
    border: 2px dashed #cbd5e1;
    border-radius: 50%;
    z-index: 1;
    animation: spinSlow 20s linear infinite;
}

/* -----------------------------------------
   Keyframes for Infinite Animations
   ----------------------------------------- */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatX {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(15px); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes gentlePulse {
    0% { box-shadow: 0 0 0 0 rgba(187, 247, 208, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(187, 247, 208, 0); }
    100% { box-shadow: 0 0 0 0 rgba(187, 247, 208, 0); }
}

/* -----------------------------------------
   About Responsiveness
   ----------------------------------------- */
@media screen and (max-width: 1050px) {
    .about-container {
        gap: 40px;
    }

    .float-top-right { right: -10px; width: 180px; height: 180px; }
    .float-bottom-left { left: -10px; width: 200px; height: 150px; }
    .experience-badge { width: 120px; height: 120px; right: 0; }
    .experience-badge .years { font-size: 1.8rem; }
}

@media screen and (max-width: 850px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visuals {
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
    }

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

    .about-features li {
        text-align: left; /* Keep features readable */
    }

    .about-content h2 { font-size: 2.4rem; }
}

@media screen and (max-width: 480px) {
    .float-top-right, .float-bottom-left, .decor-ring {
        display: none; /* Hide floating elements on very small screens to prevent overflow */
    }
    .experience-badge {
        bottom: -15px;
        right: -10px;
    }
}


/* services */



/* =========================================
   SERVICES SECTION (Upgraded Pro Version)
   ========================================= */
.services-section {
    padding: 100px 0;
    background-color: var(--background);
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--nav-text);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* -----------------------------------------
   Service Rows (Zig-Zag Layout)
   ----------------------------------------- */
.service-row {
    display: flex;
    align-items: center;
    gap: 70px; /* Slightly increased gap for better breathing room */
    margin-bottom: 100px;
    scroll-margin-top: 140px;
    border-radius: 24px;
    padding: 20px 0;
    transition: background-color var(--transition-smooth);
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-row:last-child {
    margin-bottom: 0;
}

/* Row Hover Dynamics */
.service-row:hover .service-visual img {
    transform: scale(1.04);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
}

.service-row:hover .service-icon {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -5px rgba(20, 92, 54, 0.4);
}

/* -----------------------------------------
   Service Visuals & Infinite Animations
   ----------------------------------------- */
.service-visual {
    flex: 1;
    position: relative;
    border-radius: 24px;
    padding: 20px;
    z-index: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

/* Decorative spinning/pulsing glass box behind images */
.decor-box {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 92, 54, 0.08), rgba(20, 92, 54, 0.02));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(20, 92, 54, 0.15);
    border-radius: 24px;
    z-index: 1;
    animation: slowTwist 15s infinite alternate ease-in-out;
}

.reverse .decor-box {
    animation: slowTwistReverse 15s infinite alternate ease-in-out;
}

/* Infinite Floating Animations for Images */
.float-anim-1 {
    animation: floatY 7s ease-in-out infinite;
}

.float-anim-2 {
    animation: floatY 8s ease-in-out infinite reverse;
}

@keyframes slowTwist {
    0% { transform: rotate(-3deg) scale(0.97); }
    100% { transform: rotate(3deg) scale(1.03); }
}

@keyframes slowTwistReverse {
    0% { transform: rotate(3deg) scale(0.97); }
    100% { transform: rotate(-3deg) scale(1.03); }
}

/* -----------------------------------------
   Service Content & Interactive Bullets
   ----------------------------------------- */
.service-content {
    flex: 1;
}

/* Interactive Icon */
.service-icon {
    width: 65px;
    height: 65px;
    background-color: #e8f5ed;
    color: var(--primary-green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 15px -3px rgba(20, 92, 54, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: pulseIcon 4s infinite;
}

@keyframes pulseIcon {
    0% { box-shadow: 0 0 0 0 rgba(20, 92, 54, 0.15); }
    70% { box-shadow: 0 0 0 15px rgba(20, 92, 54, 0); }
    100% { box-shadow: 0 0 0 0 rgba(20, 92, 54, 0); }
}

.service-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--nav-text);
    margin-bottom: 20px;
}

/* Upgraded Bullet Styling */
.pro-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.pro-bullets li {
    position: relative;
    padding: 12px 15px 12px 42px; /* Added internal padding for a block feel */
    margin-bottom: 8px;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid transparent; /* Prepares border for hover state */
}

.pro-bullets li:hover {
    transform: translateX(8px);
    background-color: rgba(20, 92, 54, 0.04); /* Soft green highlight */
    border-color: rgba(20, 92, 54, 0.1);
    color: var(--nav-text); /* Darkens text slightly on hover */
}

/* Custom Checkmarks Adjusted for Padding */
.pro-bullets li::before {
    content: '\f058'; /* FontAwesome Check Circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 12px; /* Aligns inside the new padding */
    top: 15px; /* Centers vertically with the text block */
    color: var(--primary-green);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.pro-bullets li:hover::before {
    transform: scale(1.1); /* Checkmark pops slightly on hover */
}

.pro-bullets li strong {
    color: var(--nav-text);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2px;
}

/* Text Link CTA */
.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: all var(--transition-fast);
}

.btn-text i {
    transition: transform var(--transition-fast);
}

.btn-text:hover {
    border-bottom-color: var(--primary-green);
}

.btn-text:hover i {
    transform: translateX(6px);
}

/* -----------------------------------------
   Services Responsiveness
   ----------------------------------------- */
@media screen and (max-width: 992px) {
    .service-row, .service-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 80px;
        padding: 0;
    }

    .service-visual, .service-content {
        width: 100%;
    }

    .service-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .pro-bullets li:hover {
        transform: translateX(4px); /* Smaller shift on mobile */
    }
}

@media screen and (max-width: 768px) {
    .section-header h2 { font-size: 2.4rem; }
    .service-content h3 { font-size: 1.8rem; }
    .pro-bullets li { font-size: 1rem; padding: 10px 10px 10px 38px; }
    .pro-bullets li::before { top: 12px; left: 8px; }
    /* Turn off floating on mobile to prevent scrolling jitters */
    .float-anim-1, .float-anim-2 { animation: none; }
}


/* faq */
/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* -----------------------------------------
   FAQ Visual & Infinite Animations
   ----------------------------------------- */
.faq-visual {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.faq-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

/* Morphing Decorative Blob */
.decor-blob {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: #f0fdf4;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: morphBlob 15s ease-in-out infinite alternate;
}

@keyframes morphBlob {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: scale(1); }
    50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1.05); }
    100% { border-radius: 40% 60% 70% 30% / 40% 60% 30% 70%; transform: scale(0.98); }
}

/* Floating Contact Badge */
.support-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background-color: var(--white);
    padding: 18px 25px;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: floatX 8s ease-in-out infinite alternate;
}

.support-badge .icon-wrap {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--glow-primary);
}

.support-badge .text-wrap strong {
    display: block;
    color: var(--nav-text);
    font-size: 1.05rem;
    line-height: 1.2;
}

.support-badge .text-wrap span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* -----------------------------------------
   FAQ Accordion System
   ----------------------------------------- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: rgba(20, 92, 54, 0.3);
    box-shadow: var(--shadow-sm);
}

/* Active State Styles */
.faq-item.active {
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px -5px rgba(20, 92, 54, 0.1);
}

/* The Button */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-question span {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--nav-text);
    transition: color var(--transition-fast);
    padding-right: 20px;
}

.faq-question i {
    color: var(--silver-accent);
    font-size: 1.1rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color var(--transition-fast);
}

/* Button Hover & Active States */
.faq-question:hover span {
    color: var(--primary-green);
}

.faq-item.active .faq-question span {
    color: var(--primary-green);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-green);
}

/* The Expanding Answer Panel */
.faq-answer {
    max-height: 0; /* JS handles the height calculation */
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* -----------------------------------------
   FAQ Responsiveness
   ----------------------------------------- */
@media screen and (max-width: 992px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .support-badge {
        right: -10px;
    }
}

@media screen and (max-width: 768px) {
    .support-badge {
        bottom: 20px;
        padding: 12px 18px;
    }

    .support-badge .icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .support-badge .text-wrap strong { font-size: 0.95rem; }
    .support-badge .text-wrap span { font-size: 0.8rem; }

    .faq-question { padding: 18px 20px; }
    .faq-question span { font-size: 1.05rem; }
    .faq-answer-inner { padding: 0 20px 20px 20px; }
}



/* contact */
/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    padding: 100px 0;
    background-color: var(--white); /* Seamless transition from FAQ */
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    background-color: var(--background);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* -----------------------------------------
   Contact Info Panel
   ----------------------------------------- */
.contact-info-panel {
    background-color: var(--nav-text); /* Dark sleek background */
    color: var(--white);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.info-card:hover .info-icon {
    transform: translateY(-3px);
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: var(--glow-primary);
}

.info-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #f1f5f9;
}

.info-details p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 3px;
    color: var(--primary-green);
}

.info-details span {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Decorative image in the sidebar */
.contact-image-wrap {
    margin-top: auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    z-index: 2;
}

.contact-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-fade {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--nav-text) 0%, transparent 100%);
}

/* -----------------------------------------
   Contact Form Panel
   ----------------------------------------- */
.contact-form-panel {
    padding: 50px;
    background-color: var(--white);
}

.pro-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--nav-text);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-row .input-group {
    margin-bottom: 0;
}

.input-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--nav-text);
    margin-bottom: 8px;
}

/* Inputs & Textareas */
.pro-form input,
.pro-form textarea,
.pro-form select {
    width: 100%;
    padding: 15px 20px;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--nav-text);
    transition: all var(--transition-fast);
}

.pro-form input::placeholder,
.pro-form textarea::placeholder {
    color: #94a3b8;
}

.pro-form input:focus,
.pro-form textarea:focus,
.pro-form select:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(20, 92, 54, 0.1);
}

/* Custom Select Wrapper */
.select-wrapper {
    position: relative;
}

.pro-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 40px; /* Space for the arrow */
}

.select-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none; /* Allows clicking through to the select */
    font-size: 0.9rem;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-smooth);
    margin-top: 10px;
}

.btn-submit i {
    transition: transform var(--transition-fast);
}

.btn-submit:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

.btn-submit:hover i {
    transform: translateX(5px) translateY(-5px); /* Fly away effect */
}

/* -----------------------------------------
   Contact Responsiveness
   ----------------------------------------- */
@media screen and (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-image-wrap {
        display: none; /* Hide image on tablet to save vertical space */
    }

    .contact-info-panel {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 40px;
    }

    .info-card {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 768px) {
    .contact-info-panel {
        flex-direction: column;
        padding: 30px 20px;
    }

    .info-card {
        width: 100%;
    }

    .contact-form-panel {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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