:root {
    --primary-green: #012e25;
    /* Dark Green from header */
    --gold: #bf9b76;
    /* Gold text color */
    --gold-light: #d4b895;
    --gold-button: #a68a70;
    --white: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-archivo: 'Archivo', sans-serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-cinzel: 'Cinzel', serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--primary-green);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    /*background-color: #093229;*/
    background-color: #030303;
    padding: 20px 0;
    /*border-bottom: 1px solid rgb(201 191 182 / 24%);*/
    border-bottom: 1px solid rgb(201 191 182 / 17%);
    /* Subtle separation if needed */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    filter: grayscale(0.2);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    font-family: var(--font-archivo);
}

nav a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    /* Transparent box */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d4b895;
    /* Icon color */
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    /* Adjust based on image aspect ratio usually */
    min-height: 600px;
    background-image: url('assets/BG2.jpg');
    background-size: cover;
    background-position: center top;
    /* Center top usually keeps the face visible if resized */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Overlay gradient to ensure text readability on the left */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    /* Gradient mostly on the left */
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}


.hero-container {
    position: relative;
    /* To sit above overlay */
    z-index: 1;
    width: 100%;
    display: flex;
}

.hero-content {
    max-width: 600px;
    padding-top: 50px;
    /* Slight offset */
}

.hero-subtitle {
    font-family: var(--font-archivo);
    display: block;
    color: #9e846b;
    /* Muted gold/brown */
    font-size: 14px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-archivo);
    font-size: 50px;
    line-height: 1.1;
    color: #ebebeb;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-separator {
    width: 160px;
    height: 3px;
    background-color: var(--gold-button);
    /* Or similar color */
    margin-bottom: 30px;
    opacity: 0.5;
}

.hero-features {
    margin-bottom: 40px;
}

.hero-features p {
    font-size: 18px;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features i {
    font-size: 20px;
    color: #b0b0b0;
    /* Icon color slightly dimmed */
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #8b7057;
    border-bottom: 4px solid #725b44;
    /* The brown/gold color */
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s;
    border-radius: 6px;
}

/* Hero Trust Signals */
.hero-trust-signals {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #c0c0c0;
    font-weight: 400;
}

.trust-item i {
    color: var(--gold);
    /* Or gold-light depending on preference */
    font-size: 16px;
}

/* Contact Social Icons (Separate from Header/Mobile Menu) */
.contact-social-list {
    display: flex;
    gap: 10px;
}

.contact-social-list a {
    width: 40px;
    height: 40px;
    border-radius: 15%;
    /* Matching existing style */
    background-color: rgb(139 112 87);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
}

.contact-social-list a:hover {
    background-color: var(--gold-button);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Mobile Menu Toggle (hidden by default) */
.mobile-menu-toggle {
    display: none;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background-color: var(--gold-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .logo-img {
        height: 45px;
    }

    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
    }

    /* Hide nav and social icons by default on mobile */
    .main-nav,
    .social-icons {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-green);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav {
        padding-bottom: 20px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav ul li a {
        display: block;
        padding: 15px 0;
        font-size: 14px;
        text-align: left;
    }

    .social-icons {
        top: auto;
        bottom: -100%;
        right: -100%;
        height: auto;
        width: 280px;
        padding: 20px 30px;
        gap: 15px;
        flex-direction: row;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Show menu when checkbox is checked */
    .mobile-menu-toggle:checked~.main-nav {
        right: 0;
    }

    .mobile-menu-toggle:checked~.social-icons {
        right: 0;
        bottom: 0;
    }

    /* Animate hamburger to X */
    .mobile-menu-toggle:checked~.hamburger-menu span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle:checked~.hamburger-menu span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle:checked~.hamburger-menu span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        background-image: url('assets/BG-mobile.jpg');
        background-position: center bottom;
        background-size: cover;
        height: 850px;
        min-height: 850px;
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .hero-separator {
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 38px;
        margin-bottom: 20px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--primary-green);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.about-text {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
}

.about-lead {
    margin-bottom: 25px;
}

.about-text strong {
    color: var(--white);
    font-weight: 700;
}

/* Profile Card */
.about-card-wrapper {
    position: relative;
    width: 100%;
}

.about-card {
    position: relative;
    width: 100%;
    height: 500px;
    /* Fixed height for the card look */
    border-radius: 12px;
    overflow: hidden;
    background-image: url('assets/2k.png');
    background-size: cover;
    background-position: center top;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* The specific gradient requested */
.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #140C0A00 54%, #002E25 89%);
    z-index: 1;
}

.about-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    /* Above gradient */
    text-align: center;
}

.about-card-content h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 5px;
}

.about-role {
    font-size: 14px;
    color: #e0e0e0;
    font-weight: 500;
    margin-bottom: 2px;
}

.about-oab {
    font-size: 12px;
    color: #c0c0c0;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #1c3e31;
    color: var(--gold-light);
    border: 1px solid var(--gold-button);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    max-width: 250px;
    transition: background 0.3s;
}

.card-btn:hover {
    background-color: #8f755e;
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 50px;
        width: 100%;
        max-width: 100%;
    }

    .about-text {
        order: 2;
    }

    .about-card-wrapper {
        order: 1;
    }

    .about-card {
        height: 500px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .stats-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between;
        align-items: flex-start;
        gap: 5px;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-top: 40px;
        /* Prevent overflow */
        box-sizing: border-box;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1 1 0px;
        /* Allow shrinking */
        min-width: 0;
        /* Critical for flex items to shrink below content size */
        gap: 2px;
        width: auto;
    }

    .stat-number {
        font-size: 28px;
        margin: 0;
    }

    .stat-label {
        text-align: center !important;
        font-size: 10px !important;
        letter-spacing: 0.5px;
        line-height: 1.2;
        width: 100%;
        margin: 0;
    }
}

/* About Section Updates */
.about-name {
    font-family: var(--font-archivo);
    font-size: 48px;
    color: #977d6c;
    margin-bottom: 5px;
    font-weight: 500;
}

.about-subtitle {
    font-family: var(--font-archivo);
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Testimonial Initials */
.testimonial-initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: var(--golden-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    border: 2px solid var(--golden-accent);
    margin-right: 15px;
    flex-shrink: 0;
}

.testimonial-date {
    font-size: 0.9rem;
    color: #777;
    font-weight: 500;
}

.oab-highlight {
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 400;
}

.separator-line {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 30px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    text-align: justify;
}

.about-contact-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(191, 155, 118, 0.15);
    border: 1px solid var(--gold-button);
    color: var(--gold-light);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.badge i {
    font-size: 16px;
}

/* Statistics Section */
.stats-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 0px;
    gap: 20px;
}

.stat-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 38px;
    color: var(--gold-light);
    /* Or specific teal like reference if needed */
    font-weight: 400;
    font-style: italic;
    line-height: 1;
}

.stat-label {
    text-align: left;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Profile Card Adjustments */
.about-card {
    /* Keeping existing style but potentially adjusting height if needed */
}

@media (max-width: 900px) {
    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-item {
        justify-content: center;
    }

    .about-name {
        font-size: 32px;
    }
}

/* Services Section (Old) */
.services {
    padding: 80px 0;
    background-color: var(--primary-green);
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-archivo);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #9e846b;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.subtitle-line {
    width: 60px;
    height: 1px;
    background-color: #9e846b;
    display: inline-block;
}

.section-title {
    font-family: var(--font-archivo);
    font-size: 48px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.2;
}

/* Remove right padding to create edge-to-edge effect */
.services>.container {
    padding-right: 0;
}

.services-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    /* For scrollbar spacing */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

/* Hide scrollbar but keep functionality */
.services-grid::-webkit-scrollbar {
    height: 8px;
}

.services-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.services-grid::-webkit-scrollbar-thumb {
    background: rgba(212, 184, 149, 0.3);
    border-radius: 4px;
}

.services-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 184, 149, 0.5);
}

.service-card {
    background: linear-gradient(145deg, rgba(0, 46, 37, 0.4) 0%, rgba(0, 26, 21, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 50px 35px;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(212, 184, 149, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    /* Prevent shrinking in flex container */
    width: 320px;
    /* Fixed width for horizontal scroll */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 184, 149, 0.05) 0%, rgba(212, 184, 149, 0) 50%, rgba(212, 184, 149, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 184, 149, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 184, 149, 0.15);
    background: linear-gradient(145deg, rgba(0, 46, 37, 0.7) 0%, rgba(0, 26, 21, 0.8) 100%);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    width: 80%;
}

.service-icon {
    font-size: 52px;
    color: var(--gold);
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(212, 184, 149, 0.3));
}

.service-card:hover .service-icon {
    transform: scale(1.15);
    color: #f5e6d3;
    filter: drop-shadow(0 6px 16px rgba(212, 184, 149, 0.6));
}

.service-card h3 {
    font-size: 14px;
    color: #d4c4b0;
    font-weight: 400;
    line-height: 1.7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    position: relative;
    z-index: 1;
    font-family: var(--font-archivo);
    transition: color 0.5s ease;
}

.service-card:hover h3 {
    color: #f5e6d3;
}

@media (max-width: 1024px) {
    .service-card {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .service-card {
        width: 260px;
    }
}

@media (max-width: 480px) {
    .service-card {
        width: 240px;
    }

    .services {
        padding: 0;
    }
}

/* Highlight Services Section */
.highlight-services {
    padding: 80px 0;
    background-color: var(--primary-green);
}

.highlight-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.highlight-card {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 46, 37, 0.3) 0%, rgba(1, 46, 37, 0.85) 70%);
    z-index: 1;
}

.highlight-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(191, 155, 118, 0.15);
    border: 1px solid rgba(191, 155, 118, 0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 28px;
}

.highlight-card h3 {
    font-family: var(--font-archivo);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.highlight-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #a78b71;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.highlight-btn:hover {
    background-color: #8f755e;
}

.highlight-btn i {
    font-size: 14px;
}

@media (max-width: 900px) {
    .highlight-services {
        padding-top: 0;
        padding-bottom: 0;
    }

    .highlight-services-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        height: 300px;
    }
}


/* Differentials Section */
.differentials {
    padding: 100px 0;
    background-color: var(--primary-green);
    position: relative;
}

.differentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 184, 149, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.differentials .container {
    position: relative;
    z-index: 1;
}

.differentials .section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Remove right padding to create edge-to-edge effect */
.differentials>.container {
    padding-right: 0;
}

.differentials-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

/* Scrollbar styling */
.differentials-grid::-webkit-scrollbar {
    height: 8px;
}

.differentials-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.differentials-grid::-webkit-scrollbar-thumb {
    background: rgba(212, 184, 149, 0.3);
    border-radius: 4px;
}

.differentials-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 184, 149, 0.5);
}

.differential-card {
    background: linear-gradient(145deg, rgba(0, 46, 37, 0.3) 0%, rgba(0, 26, 21, 0.5) 100%);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 12px;
    border: 1px solid rgba(212, 184, 149, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 380px;
    min-height: 280px;
}

.differential-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.differential-card:hover::before {
    transform: scaleX(1);
}

.differential-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 184, 149, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 184, 149, 0.1);
}

.differential-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 25px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(212, 184, 149, 0.3));
}

.differential-card:hover .differential-icon {
    transform: scale(1.1);
    color: #f5e6d3;
    filter: drop-shadow(0 6px 16px rgba(212, 184, 149, 0.5));
}

.differential-card h3 {
    font-family: var(--font-archivo);
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.differential-card p {
    font-family: var(--font-inter);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

@media (max-width: 1024px) {
    .differential-card {
        width: 340px;
    }
}

@media (max-width: 768px) {
    .differentials {
        padding: 60px 0;
    }

    .differentials .section-header {
        margin-bottom: 40px;
    }

    .differential-card {
        width: 300px;
    }

    .differentials {
        padding: 100px 0 0 0;
    }

    .differential-card {
        padding: 40px 30px;
    }

    .differential-icon {
        font-size: 40px;
    }

    .differential-card h3 {
        font-size: 20px;
    }

    .differential-card p {
        font-size: 14px;
    }
}


/* Testimonials Section - New Design */
.testimonials {
    padding: 100px 0;
    background-color: var(--primary-green);
}

/* Remove right padding to create edge-to-edge effect */
.testimonials>.container {
    padding-right: 0;
}

/* Header Row: Title Left, Arrows Right */
.testimonials-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.testimonials-header-text {
    flex: 1;
}

.testimonials-title {
    font-family: var(--font-archivo);
    font-size: 48px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.highlight-text {
    color: var(--gold-light);
}

.testimonials-subtitle {
    font-family: var(--font-archivo);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Navigation Arrows */
.testimonials-nav {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--gold-button);
    background-color: transparent;
    color: var(--gold-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.nav-arrow:hover {
    background-color: var(--gold-button);
    color: var(--primary-green);
}

.nav-next {
    background-color: var(--gold-button);
    color: var(--primary-green);
}

.nav-next:hover {
    background-color: var(--gold-light);
}

/* Cards Wrapper with Overflow */
.testimonials-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonials-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.testimonials-cards::-webkit-scrollbar {
    display: none;
}

/* Individual Card */
/* Individual Card */
.testimonial-card {
    background-color: #efebe6;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 320px;

    /* Desktop Sizing (2.5 cards visible for continuity) */
    flex: 0 0 calc(38% - 15px);
    scroll-snap-align: start;
}

.quote-icon {
    color: rgba(191, 155, 118, 0.3);
    font-size: 32px;
}

.star-rating {
    display: flex;
    gap: 5px;
}

.star-rating i {
    color: var(--gold);
    font-size: 16px;
}

.testimonial-text {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0 0 5px 0;
}

.author-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Pagination Dots */
.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(191, 155, 118, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-dot.active {
    background-color: var(--gold);
    width: 30px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-card {
        /* Tablet Sizing (2 cards visible) */
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .testimonials-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    /* Testimonials Mobile Carousel */
    .testimonial-card {
        /* Mobile Sizing (partial next card visible) */
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
}

/* Contact Section */
.contact {
    position: relative;
    padding: 100px 0;
    background-image: url('assets/contact-bg-bridge.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Gradient Overlay - using the requested gradient with opacity */
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* The requested gradient was linear-gradient(180deg,#002E25 0%,#001A15 100%) */
    /* I'll use it with opacity to ensure the image behind is visible as per the screenshot */
    background: linear-gradient(180deg, rgba(0, 46, 37, 0.85) 0%, rgba(0, 26, 21, 0.95) 100%);
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-eyebrow {
    font-family: var(--font-archivo);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9e846b;
}

.contact-big-title {
    font-family: var(--font-archivo);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    margin: 0;
}

.contact-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 500px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
}

.detail-value {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.social-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 15%;
    background-color: rgb(139 112 87);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--gold-button);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Form Column */
.contact-form-col {
    background-color: rgba(13, 46, 38, 0.7);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(13, 46, 38, 0.5);
    border: 1px solid rgba(191, 155, 118, 0.2);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold-button);
    background-color: rgba(13, 46, 38, 0.7);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Phone input with flag */
.phone-group {
    position: relative;
    display: flex;
    align-items: center;
}

.flag-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(191, 155, 118, 0.3);
    padding-right: 10px;
    height: 60%;
    z-index: 10;
}

.phone-input {
    padding-left: 60px !important;
}

.submit-btn {
    align-self: flex-start;
    background-color: var(--gold-button);
    color: var(--primary-green);
    padding: 15px 30px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 155, 118, 0.3);
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Footer */
footer {
    background-color: #04251d;
    /* Same as header/body bg */
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-container p {
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 400;
}

/* Fixed WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    background-color: #1ebc57;
}

.whatsapp-fixed i {
    margin-top: 2px;
    /* Visual adjustment */
}