/* Global Styles */
:root {
    --primary-green: #1f4e3d;
    /* Dark Green for Top Bar/Footer */
    --accent-green: #4baf47;
    /* Bright Green for Buttons/Highlights */
    --accent-yellow: #fdd835;
    /* Yellow for Buttons/Icons */
    --text-dark: #1b1b1b;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-script: 'Covered By Your Grace', cursive;
    --transition: all 0.3s ease;
    /* Section spacing variables for consistent vertical rhythm */
    --section-vertical: 70px;
    --section-gap: 40px;
    --section-title-gap: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* -------------------------------- */
/* SECTION SPACING NORMALIZATION    */
/* -------------------------------- */
/* Apply consistent vertical spacing and title spacing to main content sections. */
.about-section,
.mission-vision-section,
.what-we-do-section,
.founder-section,
.faq-section,
.parent-company-section,
.ffa-contact-section,
#why-choose-us,
.marquee-section {
    padding: var(--section-vertical) 0;
}

.section-title {
    margin-bottom: var(--section-title-gap);
}

/* Reduce overly large gaps inside specific grids while keeping layout intact */
.about-content,
.mv-container,
.wwd-grid,
.faq-grid,
.founder-grid {
    gap: var(--section-gap);
}

/* Make sure consecutive sections don't double-up spacing */
section+section {
    margin-top: calc(-1 * (var(--section-gap) / 8));
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition);
    gap: 10px;
}

.btn-primary {
    background-color: var(--accent-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-green);
}

.btn-secondary {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #fbc02d;
}

.btn-white {
    background-color: var(--white);
    color: var(--text-dark);
}

.btn-white:hover {
    background-color: var(--light-bg);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 20px;
}

.top-left a,
.top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-left i {
    color: var(--accent-yellow);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a:hover {
    color: var(--accent-yellow);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    /* Adjust height to fit navbar */
    width: auto;
    /* Maintain aspect ratio */
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--accent-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.icon-btn:hover {
    background-color: var(--accent-green);
    color: var(--white);
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-green);
    color: var(--white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 260px;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    padding: 15px 0;
    border-top: 3px solid var(--accent-green);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--accent-green);
    padding-left: 30px;
}

/* Submenu */
.dropdown-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 240px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: var(--transition);
    padding: 15px 0;
    border-top: 3px solid var(--accent-green);
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu-item {
    display: block;
    padding: 10px 25px;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.submenu-item:hover {
    background-color: var(--light-bg);
    color: var(--accent-green);
    padding-left: 30px;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1495107334309-fcf20504a5ab?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 80px;
    /* Space for Info Bar */
}

.hero-content {
    max-width: 650px;
    color: var(--white);
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--accent-yellow);
    display: block;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Floating Card */
.hero-floating-card {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 400px;
    position: relative;
    margin-top: 100px;
    /* Adjust based on layout */
}

.card-icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    position: absolute;
    top: -40px;
    left: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-floating-card h3 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-floating-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
}

.card-list li i {
    color: var(--accent-yellow);
}

.leaf-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 5rem;
    opacity: 0.1;
    color: var(--white);
}

/* Info Bar */
.info-bar {
    background-color: var(--white);
    position: relative;
    margin-top: -80px;
    /* Overlap Hero */
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #eee;
}

.info-bar-content {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.icon-yellow {
    background-color: #fff9c4;
    color: #fbc02d;
}

.icon-green {
    background-color: #e8f5e9;
    color: var(--accent-green);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text .label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.info-text .value {
    font-weight: 700;
    color: var(--text-dark);
}

.rating-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.rating-images {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-right: -10px;
}

.plus-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--white);
    margin-right: -10px;
    font-size: 0.8rem;
    z-index: 2;
}

.rating-text .stars {
    font-weight: 700;
    font-size: 0.9rem;
}

.rating-text i {
    color: var(--accent-yellow);
}


/* =========================================
   Mobile Menu Toggle (Hamburger)
   ========================================= */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    /* Ensure it stays on top of the menu */
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-green);
    transition: all 0.3s ease-in-out;
    /* Smooth animation */
}

/* Animation: Turn Hamburger into X when active */
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    /* Hide middle bar */
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   Responsive Styles
   ========================================= */

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        margin-bottom: 50px;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-floating-card {
        margin-top: 0;
        max-width: 100%;
    }

    .info-bar-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .info-block {
        flex-direction: column;
    }

    .rating-block {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    /* Mobile Navigation Container */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        /* Adjust based on your header height */
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 80px);
        padding: 30px;
        transition: left 0.4s ease-in-out;
        /* Smooth slide in */
        overflow-y: auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        align-items: flex-start;
        /* Align text to left */
    }

    .nav-menu.active {
        left: 0;
    }

    /* Styling links inside mobile menu for better touch targets */
    .nav-item {
        width: 100%;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        /* Separator line */
    }

    .nav-link {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
        color: var(--dark-text);
        /* Ensure contrast */
    }

    .nav-actions {
        display: none;
        /* Hide buttons on mobile or move inside nav-menu if needed */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Mobile Dropdown Styling */
    .dropdown-menu {
        position: static;
        /* Stack naturally */
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        /* Hidden by default */
        width: 100%;
        padding-left: 20px;
        /* Indent sub-items */
        background-color: #f9f9f9;
        /* Slight background difference */
        margin-top: 5px;
        border-radius: 5px;
    }

    /* Show dropdown when parent is clicked/active */
    .dropdown.active .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

/* Simple Fade In Animation for Dropdown */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Rating Stars Fix */
.rating-text .stars {
    font-weight: 700;
    font-size: 0.9rem;
}

.rating-text i {
    color: var(--accent-yellow);
}


/* -------------------------------- */
/* ABOUT COMPANY SECTION       */
/* -------------------------------- */

.about-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.about-section .section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
}

.about-section .section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-green);
    margin: 15px auto 0 auto;
    border-radius: 5px;
}

/* Layout */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Text Area */
.about-text {
    flex: 1 1 55%;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 500;
}

/******************/
/* -------------------------------- */
/* PARENT COMPANY SECTION (Compact/Logo) */
/* -------------------------------- */

.parent-company-section {
    /* REDUCED PADDING for smaller section height */
    padding: 40px 0;
    /* Deep Green Gradient Background */
    background: linear-gradient(135deg, #052e16 0%, #0f4a28 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #fbbf24;
    /* Optional gold top border for definition */
}

.parent-company-grid {
    display: flex;
    /* Reduced gap between text and logo */
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

/* --- Content Side --- */
.parent-company-content {
    /* Takes available space */
    flex: 1;
}

.parent-company-content .section-title {
    font-family: sans-serif;
    /* Slightly smaller font size for compact area */
    font-size: 1.8rem;
    line-height: 1.2;
    color: #fbbf24;
    /* Gold Accent */
    /* Reduced margin */
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.parent-company-content .muted {
    color: rgba(255, 255, 255, 0.85);
    /* Reduced margin */
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
}

/* --- Contact List Styling --- */
.parent-company-content .contact-list {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.parent-company-content .contact-list li {
    /* Reduced padding for tighter list */
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* The labels (Call, Email, etc.) */
.parent-company-content .contact-list strong {
    color: #fbbf24;
    /* Gold */
    min-width: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.parent-company-content .contact-list a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.parent-company-content .contact-list a:hover {
    color: #fbbf24;
    text-decoration: underline;
}

/* --- Logo Image Side --- */
/* Renamed class to reflect it's a logo now */
.parent-company-image-logo {
    /* Do not grow, do not shrink, auto basis */
    flex: 0 0 auto;
    text-align: center;
}

.parent-company-image-logo img {
    /* Controlled size for a logo */
    width: auto;
    max-width: 200px;
    height: auto;
    /* Removed previous heavy shadow and borders for cleaner logo look */
    display: block;
}

/* --- Mobile / Tablet --- */
@media (max-width: 768px) {
    .parent-company-section {
        padding: 30px 0;
    }

    .parent-company-grid {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .parent-company-image-logo {
        order: -1;
        /* Moves logo above text on mobile */
        margin-bottom: 10px;
    }

    .parent-company-image-logo img {
        max-width: 150px;
        /* Smaller logo on mobile */
    }

    .parent-company-content .contact-list li {
        justify-content: center;
        /* Center list items on mobile */
    }

    .parent-company-content .contact-list strong {
        text-align: right;
        /*Centers the label/value pair better when flexed */
        margin-right: 10px;
        min-width: auto;
    }
}


.about-image {
    flex: 1 1 40%;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Decorative Green Badge */
.about-image::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background-color: var(--accent-green);
    opacity: 0.15;
    z-index: -1;
    transform: rotate(12deg);
}

/* ---------------------------------------------------- */
/* RESPONSIVE UPDATE: Text Justified on Mobile */
/* ---------------------------------------------------- */

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        align-items: center;
        /* Center the layout vertically */
    }

    .about-text {
        flex: 1 1 100%;
        text-align: center;
        /* Centers the button and titles */
        padding: 0 10px;
        /* Adds slight breathing room on sides */
    }

    /* Justify only the paragraphs */
    .about-text p {
        text-align: justify;
        text-justify: inter-word;
        /* Improves spacing between words */
    }

    .about-image {
        flex: 1 1 100%;
        margin-top: 30px;
        /* Space between text and image */
        width: 100%;
        /* Ensure full width */
    }

    .about-image::after {
        bottom: -10px;
        right: -10px;
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 70px 0;
    }

    .about-section .section-title {
        font-size: 2.2rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}



/******************/

/* -------------------------------- */
/* MISSION & VISION SECTION     */
/* -------------------------------- */

.mission-vision-section {
    /* Use normalized vertical rhythm for consistent spacing */
    padding: var(--section-vertical) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Small decorative divider to visually separate Parent Company from Mission & Vision */
.mission-vision-section::before {
    content: "";
    display: block;
    width: 84px;
    height: 4px;
    background: var(--accent-green);
    margin: 0 auto 18px auto;
    border-radius: 3px;
}

.section-header .subtitle {
    font-family: var(--font-script);
    color: var(--accent-green);
    font-size: 1.8rem;
    display: block;
    margin-bottom: 5px;
}

.section-header .section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-green);
    font-weight: 800;
}

/* Grid Layout */
.mv-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Card Styling */
.mv-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 0;
    /* SHARP EDGES - No Radius */
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

/* Top Border Accent */
.mission-card {
    border-top: 5px solid var(--accent-green);
}

.vision-card {
    border-top: 5px solid var(--accent-yellow);
}

/* --- ANIMATIONS START --- */

/* 1. Card Hover: Lift + Colored Shadow Glow */
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 175, 71, 0.15);
    /* Green Glow */
    border-color: transparent;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(253, 216, 53, 0.25);
    /* Yellow Glow */
    border-color: transparent;
}

/* Icon Box */
.mv-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-bg);
    border-radius: 0;
    /* SHARP EDGES on Icon box too */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.mission-card .mv-icon {
    color: var(--accent-green);
}

.vision-card .mv-icon {
    color: #fbc02d;
}

/* 2. Icon Hover: 3D Rotate & Color Fill */
.mv-card:hover .mv-icon {
    background-color: var(--primary-green);
    color: var(--white);
    transform: rotateY(180deg) scale(1.1);
    /* 3D Flip Animation */
}

/* Text Content */
.mv-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mv-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* List Styling */
.mv-list {
    margin-top: auto;
    width: 100%;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: transform 0.3s ease;
    /* Prepare for slide animation */
    transform: translateX(0);
}

/* 3. List Hover: Slide Items to the Right */
.mv-card:hover .mv-list li:nth-child(1) {
    transform: translateX(10px);
}

.mv-card:hover .mv-list li:nth-child(2) {
    transform: translateX(10px);
    transition-delay: 0.1s;
    /* Slight delay for staggered effect */
}

.mv-list li i {
    color: var(--accent-green);
    transition: color 0.3s ease;
}

.mv-card:hover .mv-list li i {
    color: var(--accent-yellow);
    /* Checkmark turns yellow on hover */
}

/* --- ANIMATIONS END --- */

/* Responsive Design */
@media (max-width: 992px) {
    .mv-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mv-card {
        padding: 40px 30px;
        align-items: center;
        text-align: center;
    }

    .mv-list li {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-header .section-title {
        font-size: 2.2rem;
    }

    .section-header .subtitle {
        font-size: 1.5rem;
    }
}

/* -------------------------------- */
/* FOOTER SECTION                   */
/* -------------------------------- */

.footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Footer Layout Grid */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* Widget Styling */
.footer-widget {
    margin-bottom: 20px;
}

/* Logo */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--accent-yellow);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 300px;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    /* Sharp edges as requested */
    border-radius: 0;
}

.footer-socials a:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Widget Titles */
.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

/* Title Underline Accent */
.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--accent-yellow);
}

/* Footer Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

/* Hover Animation for Links */
.footer-links a:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
    /* Slide right effect */
}

/* Newsletter Form */
.newsletter-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px;
    padding-right: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
    /* Sharp edges */
    border-radius: 0;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--accent-green);
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(100% - 10px);
    width: 40px;
    background-color: var(--accent-green);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    /* Sharp edges */
    border-radius: 0;
}

.newsletter-form button:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

/* Contact Info in Footer */
.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--accent-yellow);
}

/* Divider Line */
.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* Bottom Footer */
.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

/* Developer credit styling */
.developer-credit {
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.developer-credit p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.developer-credit a,
.developer-credit strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.12s ease;
}

.developer-credit a:hover {
    color: var(--accent-yellow);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .developer-credit {
        position: static;
        transform: none;
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
}

/* Large Background Decoration */
.footer-decoration {
    position: absolute;
    bottom: -50px;
    left: -50px;
    font-size: 15rem;
    color: var(--white);
    opacity: 0.03;
    pointer-events: none;
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on tablet */
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* -------------------------------- */
/* FAQ SECTION STYLES (Google Icons) */
/* -------------------------------- */

.faq-section {
    padding: 100px 0;
    background-color: #f4f6f5;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 0;
    /* Sharp edges */
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Question Header */
.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    padding-right: 20px;
}

/* --- GOOGLE ICON CONTAINER --- */
.faq-icon {
    width: 35px;
    height: 35px;
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-green);
    transition: all 0.3s ease;
    border-radius: 0;
    /* Sharp edges */
    flex-shrink: 0;
}

/* Specific Google Font Styling */
.faq-icon .material-symbols-outlined {
    font-size: 24px;
    /* Icon Size */
    font-weight: 600;
    /* Make it slightly bolder */
    transition: transform 0.3s ease;
    /* Smooth rotation */
}

/* Answer Area */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--white);
    border-top: 1px solid transparent;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* --- ACTIVE STATES (Animation) --- */

.faq-item.active {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.faq-item.active .faq-question {
    background-color: var(--primary-green);
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

/* Active Icon Background */
.faq-item.active .faq-icon {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

/* ROTATE ANIMATION */
/* Rotating the inner span + changes it to look like 'X' */
.faq-item.active .faq-icon .material-symbols-outlined {
    transform: rotate(135deg);
    /* Rotates the + to look like X */
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-question {
        padding: 20px;
    }
}



/* -------------------------------- */
/* FOUNDER'S MESSAGE SECTION        */
/* -------------------------------- */

.founder-section {
    padding: 100px 0;
    /* Soft earthy beige background */
    background-color: #f9f9f7;
    overflow: hidden;
    /* Prevents scrollbars during animation */
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* --- Image Styling & Animation --- */
.founder-image-wrapper {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;

    /* Animation Start State */
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

/* State when visible (triggered by JS) */
.founder-image-wrapper.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.founder-img-box {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.founder-img-box img {
    width: 100%;
    height: auto;
    border-radius: 0;
    /* Sharp Edges */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Decorative Green Box */
.img-accent-box {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-green);
    z-index: -1;
    transition: all 0.4s ease;

    /* Animation Start State */
    opacity: 0;
    transform: scale(0.8);
}

/* Reveal Green Box with Delay */
.founder-image-wrapper.is-visible .img-accent-box {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.5s;
    /* Wait for image to finish */
}

/* Hover Effect: 3D Movement */
.founder-image-wrapper:hover .founder-img-box {
    transform: translate(5px, 5px);
}

.founder-image-wrapper:hover .img-accent-box {
    transform: translate(-5px, -5px);
    border-color: var(--accent-yellow);
    /* Color change on hover */
}

/* --- Content Styling & Animation --- */
.founder-content {
    /* Animation Start State */
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

/* State when visible */
.founder-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-tag {
    font-family: var(--font-script);
    color: var(--accent-yellow);
    font-size: 1.8rem;
    margin-bottom: 5px;
    display: block;
}

.founder-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 30px;
}

/* Big Quote Icon */
.quote-icon {
    font-size: 3rem;
    color: rgba(31, 78, 61, 0.1);
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.founder-content:hover .quote-icon {
    transform: scale(1.1) rotate(10deg);
    /* Subtle interaction */
    color: rgba(31, 78, 61, 0.2);
}

/* Text Typography */
.founder-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.intro-text {
    font-weight: 700;
    color: var(--primary-green) !important;
    font-size: 1.1rem !important;
}

.closing-text {
    font-style: italic;
    color: var(--text-dark) !important;
}

/* --- Signature Area --- */
.founder-signature {
    margin-top: 40px;
    border-left: 4px solid var(--accent-yellow);
    padding-left: 20px;
    /* Optional: Slide in signature */
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.5s ease 0.8s;
    /* 0.8s delay */
}

.founder-content.is-visible .founder-signature {
    transform: translateX(0);
    opacity: 1;
}

.sign-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.sign-title {
    font-size: 0.95rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-top: 2px;
}

.sign-company {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
        padding: 0;
    }

    .img-accent-box {
        top: 15px;
        left: 15px;
    }

    .founder-text p {
        text-align: left;
    }
}

/* -------------------------------- */
/* FLOATING CALL BUTTON STYLES      */
/* -------------------------------- */

.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: var(--accent-green);
    /* Bright Green */
    color: var(--white);
    padding: 10px 25px 10px 10px;
    /* Right padding for text */
    border-radius: 50px;
    /* Pill Shape */
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

    /* Smooth Entrance */
    transform: translateY(100px);
    animation: slideUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 1s;
}

/* Icon Container */
.btn-icon {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-green);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Shaking Phone Animation */
.floating-call-btn:hover .btn-icon i {
    animation: phoneShake 0.5s ease-in-out infinite;
}

.btn-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

/* --- BACKGROUND RIPPLE ANIMATION --- */

.ring-one,
.ring-two {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background-color: var(--accent-green);
    z-index: 1;
    /* Behind text */
    opacity: 0.6;
}

.ring-one {
    animation: ripple 2s infinite linear;
}

.ring-two {
    animation: ripple 2s infinite linear 1s;
    /* 1s delay */
}

/* --- ANIMATION KEYFRAMES --- */

/* 1. Slide Up Entrance */
@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

/* 2. Ripple Expansion */
@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
        /* Expands 1.6x size */
        opacity: 0;
        /* Fades out */
    }
}

/* 3. Phone Shake (Hover) */
@keyframes phoneShake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
    }
}

/* ------------------------------------------------ */
/* PRODUCT SHOWCASE - NEW VERSION                   */
/* ------------------------------------------------ */

.products-section {
    padding: var(--section-vertical) 0;
    background-color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* --- Card Base --- */
.product-card {
    background: var(--white);
    border: 1px solid #ececec;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-green);
}

/* --- Image Container (Cover Effect) --- */
.product-image-container {
    background-color: #f9fbf9;
    height: 320px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f5f5f5;
}

.product-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    z-index: 2;
}

.product-card:hover .product-image-container::after {
    background: rgba(0, 0, 0, 0.25);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

/* --- Hover Description --- */
.hover-description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(31, 78, 61, 0.95);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 4;
}

.product-card:hover .hover-description {
    transform: translateY(0);
}

.hover-description p {
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Premium Seal Leaf Icon --- */
.product-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.btn-icon-small {
    width: 46px;
    height: 46px;
    background: var(--white);
    border: 2px solid transparent;
    color: var(--accent-green);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /* Circle Seal */
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .btn-icon-small {
    background: var(--accent-green);
    color: var(--accent-yellow);
    transform: scale(1.1) rotate(360deg);
    border-color: var(--accent-yellow);
}

@keyframes leafSway {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(15deg);
    }
}

.product-card:hover .fa-leaf {
    animation: leafSway 2.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(253, 216, 53, 0.8);
}

/* --- Badge --- */
.product-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent-green);
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Product Content (Editorial Style) --- */
.product-info {
    padding: 30px 20px;
    text-align: left;
    flex-grow: 1;
    background: var(--white);
}

.product-name {
    font-size: 1.15rem;
    color: var(--primary-green);
    margin-bottom: 5px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding-left: 15px;
}

.product-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    width: 3px;
    height: 70%;
    background: var(--accent-yellow);
}

.product-category {
    padding-left: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 500;
}

/* --- Get Price Button --- */
.get-price-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 0;
    background-color: var(--primary-green);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.get-price-btn:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-green);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}


/* -------------------------------- */
/* PRODUCT PRICE MODAL              */
/* -------------------------------- */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.product-modal {
    background-color: var(--white);
    width: 90%;
    max-width: 500px;
    position: relative;
    padding: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(-30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .product-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.modal-content {
    padding: 40px;
}

.modal-content h3 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.modal-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: var(--accent-green);
}

.submit-modal-btn {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-modal-btn:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-green);
}

/* Modal Responsive */
@media (max-width: 576px) {
    .modal-content {
        padding: 30px 20px;
    }

    .modal-content h3 {
        font-size: 1.5rem;
    }

    .modal-close {
        top: -35px;
        right: 10px;
    }
}

/* -------------------------------- */
/* CAREERS MODAL                    */
/* -------------------------------- */

.careers-why {
    margin: 25px 0;
    padding: 20px;
    background: #f9fdfb;
    border-left: 4px solid var(--accent-green);
}

.careers-why h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.careers-why ul {
    list-style: none;
    padding: 0;
}

.careers-why li {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.careers-why li i {
    color: var(--accent-green);
    font-size: 0.8rem;
}

.careers-action {
    font-weight: 700;
    color: var(--primary-green);
    margin: 20px 0;
}

.careers-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #e0e0e0;
}

.careers-contact p {
    margin-bottom: 10px !important;
}

.hr-email {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hr-email:hover {
    color: var(--accent-yellow);
}