:root {
    --primary-green: #1B4332;
    --gold: #D4AF37;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-hover: rgba(255, 255, 255, 0.95);
    --transition: 0.3s ease;
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ===== NAVBAR ===== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}


/* Logo */

.logo img {
    height: 60px;
}


/* ===== DESKTOP NAV ===== */

.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-links li {
    list-style: none;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-green);
}


/* ===== GLASS DROPDOWN ===== */

.dropdown {
    position: relative;
}

.dropdown-menu.glass-bg {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 220px;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu.glass-bg li {
    padding: 10px 20px;
    list-style: none;
    transition: background 0.3s ease;
}

.dropdown-menu.glass-bg li:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
}


/* ===== DESKTOP SEARCH + ACTIONS ===== */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-actions .desktop-search {
    position: relative;
}

.nav-actions .desktop-search input {
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid #ccc;
    outline: none;
    width: 200px;
    transition: var(--transition);
}

.nav-actions .desktop-search input:focus {
    border-color: var(--primary-green);
}

.nav-actions .desktop-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--primary-green);
}

.nav-actions .contact-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-actions .contact-btn:hover {
    background: var(--gold);
    color: var(--white);
}


/* ===== SEARCH DROPDOWN ===== */

.search-form {
    position: relative;
}

.search-results {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
    z-index: 999;
}

.search-results.active {
    display: block;
}

.search-item {
    padding: 12px 15px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.search-item:hover {
    background: #f5f5f5;
}

.search-item:last-child {
    border-bottom: none;
}


/* ===== HAMBURGER + MOBILE ===== */

.hamburger,
.mobile-center-search {
    display: none;
}


/* ===== MOBILE VIEW ===== */

@media (max-width: 992px) {
    /* Hide desktop nav + actions */
    .desktop-nav,
    .nav-actions {
        display: none;
    }
    /* Show hamburger + mobile search */
    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: var(--primary-green);
    }
    .mobile-center-search {
        display: flex;
        align-items: center;
        background: var(--glass);
        border-radius: 50px;
        padding: 5px 15px;
        width: 50%;
        flex-shrink: 0;
    }
    .mobile-center-search input {
        border: none;
        background: transparent;
        outline: none;
        width: 100%;
        font-size: 14px;
    }
    .mobile-center-search button {
        border: none;
        background: transparent;
        color: var(--primary-green);
        cursor: pointer;
    }
    .logo img {
        height: 55px;
    }
    /* ===== MOBILE SIDEBAR ===== */
    .mobile-sidebar {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        /* hidden by default */
        width: 75vw;
        /* smaller width for mobile */
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.85);
        /* glass effect */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 2000;
        padding: 30px 20px;
        border-radius: 8px 0 0 8px;
        /* rounded edge */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }
    .mobile-sidebar.active {
        right: 0;
        /* slide in */
    }
    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }
    .mobile-nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-nav-links li {
        margin-bottom: 15px;
    }
    .mobile-nav-links a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        font-size: 16px;
        display: block;
        padding: 10px 15px;
        border-radius: 8px;
        transition: var(--transition);
    }
    .mobile-nav-links a:hover {
        background: rgba(255, 255, 255, 0.95);
    }
    /* Mobile Dropdown */
    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        list-style: none;
        padding-left: 15px;
        margin-top: 5px;
    }
    .mobile-dropdown.active .mobile-submenu {
        max-height: 500px;
    }
    .arrow {
        float: right;
        transition: transform 0.3s ease;
    }
    .mobile-dropdown.active .arrow {
        transform: rotate(180deg);
    }
    /* Contact Button */
    .mobile-contact-link {
        background: var(--primary-green);
        color: #ffffff;
        padding: 12px 20px;
        border-radius: 50px;
        display: block;
        text-align: center;
        font-weight: 600;
        font-size: 16px;
        margin-top: 15px;
        transition: var(--transition);
    }
    .mobile-contact-link:hover {
        background: var(--gold);
        color: #ffffff;
    }
}


/* ===== HIDE MOBILE SIDEBAR ON DESKTOP ===== */

@media (min-width: 993px) {
    .mobile-sidebar,
    .sidebar-overlay,
    .mobile-center-search,
    .hamburger {
        display: none !important;
    }
}


/* ===== OVERLAY ===== */

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 1500;
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}


/* Target the specific mobile links to prevent override */

.mobile-nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 12px;
    border-radius: 8px;
}


/* FIXED: Mobile Contact Link Color */

.mobile-sidebar .mobile-contact-link {
    background: var(--primary-green) !important;
    color: #ffffff !important;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
}


/*Hero section*/

.hero {
    position: relative;
    width: 100%;
    height: 130vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 67, 50, 0.4);
    z-index: 0;
}


/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.hero-buttons .btn.primary {
    background: var(--primary-green);
    color: white;
}

.hero-buttons .btn.primary:hover {
    background: var(--gold);
}

.hero-buttons .btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-buttons .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.4);
}


/* ARROWS */

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s ease;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.6);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}


/* DOTS */

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--gold);
}


/* ===== RESPONSIVE ===== */


/* Mobile Hero Optimizations */

@media (max-width: 768px) {
    .hero {
        height: 85vh;
        min-height: 500px;
    }
    .hero-content {
        padding: 0 30px;
        width: 100%;
    }
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        line-height: 1.25;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 35px;
        line-height: 1.6;
        opacity: 0.9;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    .hero-buttons .btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 1.05rem;
    }
    .prev,
    .next {
        display: none;
    }
    .dots-container {
        bottom: 30px;
        gap: 12px;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
}


/* Landscape Mobile Fix */

@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        height: 120vh;
    }
}

@media (max-width: 768px) {
    .slide {
        background-position: top center;
    }
}


/*Sectors section*/

.sectors {
    padding: 100px 20px;
    background: #f8f9fa;
}

.sectors .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.sectors .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}


/* ===== SECTOR CARD ===== */

.sector-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.sector-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sector-card:hover img {
    transform: scale(1.05);
}


/* Remove glass overlay */

.sector-overlay {
    display: none;
}


/* Card Content */

.sector-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: white;
    transition: transform 0.4s ease, opacity 0.4s ease;
    text-align: left;
}

.sector-card:hover .sector-content {
    transform: translateY(-10px);
}

.sector-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.sector-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}


/* Sector Button */

.sector-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.sector-btn:hover {
    background: var(--gold);
    transform: translateY(-3px);
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .sectors {
        padding: 60px 15px;
    }
    .sectors .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .sectors .section-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    .sector-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sector-card {
        height: 350px;
        border-radius: 15px;
        opacity: 1 !important;
        transform: none !important;
    }
    .sector-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
        z-index: 1;
    }
    .sector-content {
        bottom: 25px;
        left: 20px;
        right: 20px;
        transform: none !important;
    }
    .sector-content h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    .sector-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .sector-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}


/*Highlights section*/

.highlights {
    padding: 100px 20px;
    background: #ffffff;
}

.highlight-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.highlight-row.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Reverse layout for alternating rows */

.highlight-row.reverse {
    flex-direction: row-reverse;
}

.highlight-image {
    flex: 1;
}

.highlight-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.highlight-row:hover .highlight-image img {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlight-text {
    flex: 1;
}

.highlight-text h2 {
    font-size: 2.4rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.highlight-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.highlight-text .btn.primary {
    background: var(--primary-green);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.highlight-text .btn.primary:hover {
    background: var(--gold);
    transform: translateY(-3px);
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .highlights {
        padding: 60px 20px;
    }
    .highlight-row {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
        text-align: center;
        opacity: 1;
        transform: none;
    }
    .highlight-image {
        width: 100%;
    }
    .highlight-image img {
        border-radius: 15px;
        transform: none !important;
    }
    .highlight-text h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    .highlight-text p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    .highlight-text .btn.primary {
        display: inline-block;
        width: 80%;
        max-width: 250px;
        padding: 14px 20px;
    }
}


/* Scroll Animation Adjustment for Mobile */

@media (max-width: 768px) {
    .highlight-row.visible {
        transform: translateY(0);
        transition: all 0.5s ease;
    }
}


/* ===== STATS SECTION ===== */

.stats {
    padding: 100px 20px;
    background: #f4f4f4;
    text-align: center;
}

.stats-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.stats-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* Stats Grid */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-items: center;
}


/* Stat Card */

.stat-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 250px;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}


/* Icons */

.stat-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}


/* Counter */

.counter {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    display: inline-block;
}

.stat-card span {
    font-size: 2rem;
    color: var(--gold);
    margin-left: 3px;
}


/* Description */

.stat-card p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .stats {
        padding: 60px 20px;
    }
    .stats-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .stats-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        line-height: 1.5;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-card {
        padding: 25px 15px;
        max-width: 100%;
        border-radius: 15px;
        transform: none !important;
    }
    .stat-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    .counter {
        font-size: 1.8rem;
    }
    .stat-card span {
        font-size: 1.5rem;
    }
    .stat-card p {
        font-size: 0.9rem;
        margin-top: 5px;
    }
}


/* Smallest Devices (Single Column) */

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .stat-card {
        max-width: 280px;
    }
}


/* ===== TESTIMONIALS SECTION ===== */

.testimonials {
    padding: 100px 20px;
    background: #fff;
    text-align: center;
}

.testimonials .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 50px;
}


/* Slider Container */

.testimonial-slider {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}


/* Track */

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
}


/* Testimonial Card */

.testimonial-card {
    flex: 0 0 100%;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 0 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    min-height: 300px;
    box-sizing: border-box;
}


/* Quote Icon */

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}


/* Testimonial Text */

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}


/* Client Info */

.client {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
}

.client h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.client span {
    font-size: 0.9rem;
    color: #777;
}


/* Navigation Dots */

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-dots span.active {
    background: var(--primary-green);
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 15px;
    }
    .testimonials .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .testimonial-card {
        padding: 30px 20px;
        min-height: auto;
        margin: 0 5px;
        border-radius: 15px;
    }
    .quote-icon {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .testimonial-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .client {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .client img {
        width: 50px;
        height: 50px;
    }
    .client-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .testimonial-dots {
        margin-top: 25px;
        gap: 8px;
    }
    .testimonial-dots span {
        width: 10px;
        height: 10px;
    }
}


/* Specific fix for very small screens */

@media (max-width: 400px) {
    .testimonials .section-title {
        font-size: 1.6rem;
    }
}


/* ===== CTA SECTION ===== */

.cta {
    position: relative;
    padding: 120px 20px;
    background: url('img/h3.jpeg') center/cover no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 67, 50, 0.7);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s ease;
}

.cta-buttons .btn.primary {
    background: var(--primary-green);
    color: white;
}

.cta-buttons .btn.primary:hover {
    background: var(--gold);
}

.cta-buttons .btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-buttons .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.4);
}


/* Mobile CTA Optimizations */

@media (max-width: 768px) {
    .cta {
        padding: 80px 20px;
    }
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .cta-content p {
        font-size: 1.05rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0;
        padding: 16px 20px;
    }
}


/* Extra Small Devices */

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 1.75rem;
    }
    .cta {
        padding: 60px 15px;
    }
}