/* Team member name font */
.team-name {
    font-family: 'Playfair Display', serif !important;
}

/* ================= CSS VARIABLES & GLOBAL RESET ================= */
:root {
    --primary-purple: #6e236a;
    --secondary-purple: #8b5fbf;
    --dark-purple: #2d1b4e;
    --light-bg: #ebeff5;
    --text-dark: #333333;
    --text-light: #ffffff;
    --accent-color: #a47fd4;
    --header-height: 80px;
    --main-font-family: 'Futura', 'Jost', 'Trebuchet MS', Arial, sans-serif;
    --secondary-font-family: 'Effra Medium', 'Effra', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--main-font-family);
    min-height: 100vh;
    background-color: var(--light-bg);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Animation Classes Removed */


/* ================= HEADER & NAVIGATION ================= */
/* Header Styles */
.header {
    background: transparent;
    padding: 1.5rem 0;
    position: absolute;
    width: calc(100% - 20px);
    /* Adjust width to match hero gap */
    top: 10px;
    /* Push down to match hero gap */
    left: 10px;
    /* Push right to match hero gap */
    z-index: 1000;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(110, 35, 106, 0.45);
    /* More transparent for glass effect */
    backdrop-filter: blur(25px);
    /* Strong blur */
    -webkit-backdrop-filter: blur(5px);
    padding: 0.6rem 2rem;
    border-radius: 60px;
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    /* Stronger border highlight */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}


/* Logo Styles */
.logo {
    display: flex;
    flex-direction: column;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 0.2rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: -2px;
    text-align: center;
}

/* Navigation Styles */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Futura Medium', 'Futura', Arial, sans-serif;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    transform: none;
    background: linear-gradient(135deg, #c8a2d0 0%, #b08cc4 100%);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2);
    padding-left: 2rem;
}

/* Responsive: Hide dropdown on mobile/tablet (mobile menu is used instead) */
@media screen and (max-width: 968px) {
    .dropdown-menu {
        display: none !important;
    }

    /* Increase logo size on mobile */
    .logo-img {
        height: 65px;
    }
}



/* Contact Button */
.contact-btn {
    background: var(--text-light);
    color: var(--primary-purple);
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.company-tag-wrapper {
    margin-left: 2rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.company-tag {
    color: var(--text-light);
    font-size: 0.55rem;
    line-height: 1.2;
    display: block;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ================= HOME PAGE STYLES ================= */
/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 20px);
    /* Compensate for margin */
    margin: 15px;
    /* 10px gap all around */
    border-radius: 25px;
    /* 5px border radius */
    padding-top: 180px;
    display: flex;
    align-items: center;
    background-image: url('assets/images/Home Page Hero.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* FAQ Hero - Specific background image */
.hero-faq {
    background-image: url('assets/images/faq hero image.webp') !important;
}

/* About Us Hero - Specific background image */
.hero-about {
    background-image: url('assets/images/about\ us\ hero.webp') !important;
}

/* Services Hero - Specific background image */
.hero-services {
    background-image: url('assets/images/service\ -\ hero.jpg') !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg,
            rgba(107, 63, 160, 0.95) 0%,
            rgba(107, 63, 160, 0.8) 40%,
            rgba(45, 27, 78, 0.2) 100%); */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 4rem;
    gap: 4rem;
    max-width: 1000px;
}

.hero-content {
    max-width: 650px;
    /* Increased to allow title to sit on 3 lines comfortably */
    flex-shrink: 0;
}

.hero-title {
    font-size: 3.3rem;
    line-height: 1.1;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-description-box {
    max-width: 480px;
    /* Slightly adjusted */
    padding-bottom: 0.5rem;
}

.hero-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-family: var(--secondary-font-family);
}

.get-started-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    color: var(--primary-purple);
    border: none;
    padding: 0.6rem 0.6rem 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.get-started-btn svg {
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    padding: 6px;
    width: 32px;
    height: 32px;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Button (About Us Page) */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: var(--primary-purple);
    text-decoration: none;
    padding: 0.7rem 0.7rem 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 35, 106, 0.25);
}

.hero-btn .arrow-icon {
    background: var(--primary-purple);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero-btn:hover .arrow-icon {
    transform: rotate(45deg);
}

.hero-description-box {
    max-width: 600px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 1.5rem;
}

/* ================= HOME PAGE: WHO WE ARE ================= */
/* Who We Are Section */
.who-we-are {
    padding: 4rem 0 3.5rem 0;
    background-color: var(--light-bg);
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.who-we-are-left {
    position: sticky;
    top: 120px;
}

.who-we-are-title {
    font-size: 2.7rem;
    font-weight: 500;
    color: var(--primary-purple);
    line-height: 1.2;
    margin-top: 1rem;
    letter-spacing: 1px;
}

.who-we-are-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-weight: 500;
}

.who-we-are-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Responsive for Who We Are */
@media screen and (max-width: 968px) {
    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .who-we-are-left {
        position: static;
    }

    .who-we-are-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 600px) {
    .who-we-are {
        padding: 3rem 0;
    }

    .who-we-are-title {
        font-size: 2rem;
    }

    .who-we-are-text {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ================= ABOUT US PAGE STYLES ================= */
/* Our Goal/Mission Section - About Us Page */
.find-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-purple);
    color: white;
    text-decoration: none;
    padding: 0.8rem 0.8rem 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400 !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(110, 35, 106, 0.25);
    margin-top: 1.5rem;
}

.find-about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 35, 106, 0.35);
    background: #7d2879;
}

.find-about-btn .arrow-icon {
    background: white;
    color: var(--primary-purple);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.find-about-btn:hover .arrow-icon {
    transform: rotate(45deg);
}

/* Our Goal Section Spacing */
.our-goal {
    padding: 2.5rem 0 4rem 0;
    background-color: var(--light-bg);
}

/* Our Vision Section */
.our-vision {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vision-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.vision-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2);
}

.vision-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(110, 35, 106, 0.35);
}

.vision-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(110, 35, 106, 0.8) 0%, rgba(110, 35, 106, 0.3) 50%, transparent 100%);
    padding: 2.5rem 2rem;
    z-index: 1;
}

.vision-overlay-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    text-align: left;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.star-rating {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-left: 0.5rem;
    display: inline-block;
}

.google-review-text {
    font-size: 0.7rem;
    color: var(--primary-purple);
    display: block;
    font-weight: 600;
    margin-top: -5px;
    width: 100%;
}

.stat-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Our Vision Responsive */
@media screen and (max-width: 968px) {
    .vision-title {
        font-size: 2rem;
    }

    .vision-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .vision-image-container {
        height: 350px;
    }
}

@media screen and (max-width: 600px) {
    .our-vision {
        padding: 3rem 0;
    }

    .vision-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .vision-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-image-container {
        height: 300px;
    }

    .vision-overlay {
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    }

    .vision-overlay-text {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}


/* Meet Our Team Section */
.team-section {
    padding: 2rem 0 5rem 0;
    background-color: var(--light-bg);
}

.align-center {
    text-align: center;
    justify-content: center;
}

.section-headline {
    font-size: 2.5rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: left
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: calc((100% - 4rem) / 3);
    flex-grow: 0;
    flex-shrink: 0;
}



.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.team-card:hover .team-image {
    filter: grayscale(0%);
}

.team-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 0.2rem 0;
    font-family: 'Times New Roman', serif;
    /* Matching the serif font in reference */
}

.team-role {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Grid Responsive */
@media screen and (max-width: 968px) {
    .team-card {
        width: calc((100% - 2rem) / 2);
        /* 2 items per row */
        height: 400px;
    }
}

@media screen and (max-width: 600px) {
    .team-card {
        width: 100%;
        /* 1 item per row */
        height: 450px;
    }
}


.section-tag-wrapper {
    margin-bottom: 1.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--primary-purple);
    border-radius: 50px;
    color: var(--primary-purple);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-tag::before {
    content: '●';
    margin-right: 0.5rem;
    font-size: 0.6rem;
}

.section-title {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--primary-purple);
    text-transform: uppercase;
    font-weight: 500;
    max-width: 850px;
    margin-bottom: 3rem;
    letter-spacing: 1.5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.6rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary-purple);
    margin-bottom: 0;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.stars-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding-top: 0.15rem;
}

.stars {
    line-height: 1;
}

.stars-img {
    height: 1rem;
    width: auto;
    display: block;
}

.star-outline {
    color: var(--primary-purple);
    font-weight: 300;
}

.star-half {
    display: inline-block;
    overflow: hidden;
    width: 0.5em;
    color: var(--primary-purple);
}

.stat-sub {
    font-size: 0.55rem;
    color: var(--primary-purple);
    margin: 0;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.stat-description {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.45;
    font-weight: 400;
    font-family: var(--secondary-font-family);
    margin: 0;
}

.section-divider {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 4rem 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .container {
        padding: 0 2rem;
    }

    .container-header {
        padding: 1rem 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 968px) {
    .nav-list {
        display: none;
        /* Hide for now, logic below */
    }

    .company-tag-wrapper {
        display: none;
    }

    .contact-btn {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header {
        width: 90%;
        left: 5%;
    }

    .container-header {
        padding: 0.8rem 1.2rem;
    }

    /* Mobile Nav */
    .nav.active .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-purple);
        padding: 2rem;
        z-index: 1000;
        gap: 1.5rem;
    }

    .hero-container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        flex: 1;
        min-width: 320px;
        max-width: 100%;
    }

    .hero-description-box {
        flex: 1;
        min-width: 320px;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .container-header {
        padding: 0.8rem 1.2rem;
    }
}

/* ================= HOME PAGE: SERVICES ================= */
/* Services Section */
.section-headline {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 45%;
    background: rgba(0, 0, 0, 0.4);
    /* Minimal Black Opacity */
    /* backdrop-filter: blur(20px); */
    /* Strong glass blur */
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle glass edge */
    border-radius: 10px 10px 0 0;

}

.service-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.service-desc {
    color: #fff;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    max-width: 80%;
    font-family: var(--secondary-font-family);
}

.know-more {
    color: white;
    font-size: 0.6rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid white;
    align-self: flex-end;
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-family: var(--secondary-font-family);
}

/* ================= HOME PAGE: PARTNERS ================= */
/* Partners Section */
.align-center {
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.partner-card {
    background: white;
    height: 100px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.partner-card img {
    max-width: 80%;
    max-height: 90%;
    object-fit: contain;
}

@media screen and (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= HOME PAGE: OUR GOAL ================= */
/* Our Goal Section */
.our-goal {
    padding: 4rem 0 6rem 0;
}

.goal-container {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
    /* Center the blocks */
}

.goal-card {
    flex: 1;
    width: 100%;
    min-height: 340px;
    /* Allow expanding */
    height: auto;
    flex-shrink: 0;
    background: white;
    padding: 1.5rem;
    /* Optimize padding */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.goal-image {
    flex: 1;
    width: 100%;
    min-height: 340px;
    /* Allow expanding */
    height: auto;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    /* For image positioning */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.goal-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goal-content-top {
    display: flex;
    flex-direction: column;
}

.goal-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1.2rem;
    border: 1px solid var(--dark-purple);
    border-radius: 50px;
    color: var(--primary-purple);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    /* Tighter spacing */
    align-self: flex-start;
}

.goal-tag::before {
    content: '●';
    margin-right: 0.6rem;
    font-size: 0.7rem;
    color: #8b3d88;
    /* Distinct accent color dot */
}

.goal-title {
    font-size: 2rem;
    line-height: 1.1;
    color: var(--primary-purple);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.goal-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    font-weight: 400;
    font-family: var(--secondary-font-family);
}

.find-about-btn {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-purple);
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.5rem 0.5rem 1.8rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 190px;
    align-self: flex-start;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(110, 35, 106, 0.2);
    font-family: var(--secondary-font-family);
}

.find-about-btn .arrow-icon {
    background: white;
    color: var(--primary-purple);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.find-about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(110, 35, 106, 0.3);
}

/* ================= HOME PAGE: WHY CREDORA ================= */
/* Why Credora Section */
.why-credora {
    padding: 2rem 0 5rem 0;
}

.why-header {
    margin-bottom: 3rem;
    max-width: 800px;
}

.why-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1.2rem;
    border: 1px solid var(--dark-purple);
    border-radius: 50px;
    color: var(--primary-purple);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.why-tag::before {
    content: '●';
    margin-right: 0.6rem;
    font-size: 0.7rem;
    color: #8b3d88;
}

.why-title {
    font-size: 2.3rem;
    line-height: 1;
    color: #6a2c70;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-top: 0.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-card {
    height: 280px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Uniform purple tint as seen in design */
    background: rgba(106, 44, 112, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Anchor text content to bottom */
    padding: 0;
}

.why-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    opacity: 1;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.why-content {
    background: rgba(0, 0, 0, 0.5);
    /* Darker for better contrast */
    /* backdrop-filter: blur(25px); */
    -webkit-backdrop-filter: blur(25px);
    padding: 1.5rem 2.5rem 2rem 2.5rem;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.why-card-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.why-card-desc {
    color: white;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 400;
    max-width: 95%;
    font-family: var(--secondary-font-family);
    opacity: 0.95;
}

@media screen and (max-width: 968px) {
    .why-title {
        font-size: 2.2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        height: 280px;
    }
}

.find-about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(106, 44, 112, 0.2);
}

@media screen and (max-width: 1050px) {

    /* Breakpoint slightly higher than 968px to accommodate side-by-side 500px */
    .goal-container {
        flex-direction: column;
        height: auto;
    }

    .goal-card,
    .goal-image {
        width: 100%;
        max-width: 500px;
        /* Keep neat box look on mobile but allow scaling down if really small */
    }
}

/* ================= SERVICES - TAILORED SOLUTIONS SECTION ================= */
.services-solutions {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.solutions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.solutions-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 2rem;
    border: 1.5px solid var(--primary-purple);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-purple);
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    font-family: var(--secondary-font-family);
    text-transform: uppercase;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: inline-block;
}

.solutions-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    line-height: 1.15;
    text-transform: uppercase;
}

.solutions-subtitle {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-family: var(--secondary-font-family);
}

.solutions-tabs-wrapper {
    position: relative;
    margin-top: 3rem;
}

/* Tabs */
.solutions-tabs {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.sol-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border: 1.5px solid var(--primary-purple);
    border-radius: 50px;
    background: white;
    color: var(--primary-purple);
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    font-family: var(--secondary-font-family);
    white-space: nowrap;
    text-transform: uppercase;
    flex-shrink: 1;
    min-width: fit-content;
}

.sol-tab:hover {
    background: var(--primary-purple);
    color: white;
}

.sol-tab.active {
    background: var(--primary-purple);
    color: white;
}

.tab-dot {
    width: 7px;
    height: 7px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.sol-tab:hover .tab-dot,
.sol-tab.active .tab-dot {
    background: white;
}

/* Tab Content */
.solutions-content {
    position: relative;
}

.sol-panel {
    display: none;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 520px;
}

.sol-panel.active {
    display: block;
}

.sol-panel-image {
    width: 100%;
    height: 520px;
    background: linear-gradient(135deg, #c4b5d4 0%, #b5a5c0 50%, #a8a0b5 100%);
    background-size: cover;
    background-position: center;
}

.sol-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sol-panel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.sol-info-card {
    max-width: 550px;
    background: rgba(0, 0, 0, 0.4);
    /* backdrop-filter: blur(20px); */
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.sol-card-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.sol-card-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    line-height: 1.7;
    font-family: var(--secondary-font-family);
    margin: 0;
}

.sol-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-purple);
    padding: 0.6rem 0.6rem 0.6rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-family: var(--secondary-font-family);
    white-space: nowrap;
}

.sol-apply-btn .arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    border-radius: 50%;
    color: white;
    transition: transform 0.3s ease;
}

.sol-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.sol-apply-btn:hover .arrow-icon {
    transform: rotate(45deg);
}

/* Responsive for Solutions Section */
@media (max-width: 1200px) {
    .sol-info-card {
        max-width: 480px;
        padding: 1.8rem 2rem;
    }

    .sol-card-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 1024px) {
    .solutions-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }

    .solutions-tabs {
        gap: 0.4rem;
        top: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
    }

    .sol-tab {
        padding: 0.5rem 0.8rem;
        font-size: 0.6rem;
        gap: 0.35rem;
    }

    .tab-dot {
        width: 6px;
        height: 6px;
    }

    .sol-panel {
        min-height: 480px;
    }

    .sol-panel-image {
        height: 480px;
    }

    .sol-info-card {
        max-width: 420px;
        padding: 1.5rem 1.8rem;
    }
}

@media (max-width: 768px) {
    .services-solutions {
        padding: 3rem 0;
    }

    .solutions-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .solutions-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
        top: 1rem;
        left: 1rem;
        right: 1rem;
        justify-content: center;
    }

    .sol-tab {
        padding: 0.6rem 1rem;
        font-size: 0.6rem;
        gap: 0.35rem;
        letter-spacing: 0.3px;
        flex-shrink: 0;
    }

    .tab-dot {
        width: 6px;
        height: 6px;
    }

    .sol-panel {
        min-height: 550px;
        border-radius: 20px;
    }

    .sol-panel-image {
        height: 550px;
    }

    .sol-panel-overlay {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .sol-info-card {
        max-width: 100%;
        padding: 1.5rem;
    }

    .sol-card-title {
        font-size: 1.2rem;
    }

    .sol-card-desc {
        font-size: 0.8rem;
    }

    .sol-apply-btn {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .solutions-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .solutions-subtitle {
        font-size: 0.9rem;
    }

    .solutions-tabs {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin-bottom: 1rem;
        gap: 0.4rem;
    }

    .sol-tab {
        padding: 0.65rem 1.1rem;
        font-size: 0.58rem;
    }

    .sol-panel {
        min-height: 600px;
    }

    .sol-panel-image {
        height: 600px;
    }

    .sol-info-card {
        padding: 1.2rem;
    }

    .sol-card-title {
        font-size: 1.1rem;
    }

    .sol-card-desc {
        font-size: 0.75rem;
    }

    .sol-apply-btn {
        padding: 0.5rem 0.5rem 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .sol-apply-btn .arrow-icon {
        width: 36px;
        height: 36px;
    }
}

/* ================= CTA SECTION (SHARED) ================= */
/* CTA Section */
.cta-section {
    padding: 2rem 0 0 0;
    position: relative;
    z-index: 10;
    margin-bottom: -250px;
    /* Overlap footer by half the CTA height */
}

.cta-card {
    position: relative;
    margin: 0 5px;
    /* Minimal gap on left and right sides - almost edge-to-edge */
    border-radius: 25px;
    min-height: 650px;
    background-image: url('assets/images/footer-bg.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cta-card .container {
    width: 100%;
}

.footer-contact-btn {
    background: white;
    color: var(--primary-purple);
    border: none;
    padding: 0.8rem 2.5rem;
    /* Larger button */
    border-radius: 50px;
    font-weight: 400;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: fit-content;
    margin-top: 1rem;
    text-decoration: none;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Purple overlay for brand consistency */
    /* background: linear-gradient(90deg,
            rgba(107, 63, 160, 0.9) 0%,
            rgba(107, 63, 160, 0.7) 40%,
            rgba(45, 27, 78, 0.3) 100%); */
    z-index: 1;
}

.cta-content-box {
    position: relative;
    z-index: 2;
    max-width: 400px;
    background: rgba(45, 27, 78, 0.6);
    /* SLIGHTLY more opaque for smaller size */
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-title {
    color: white;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    font-weight: 400;
    font-family: var(--secondary-font-family);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--primary-purple);
    padding: 0.6rem 0.6rem 0.6rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: var(--secondary-font-family);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    /* Lift and slightly scale */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    background: #ffffff;
}

.cta-btn:active {
    transform: translateY(-1px) scale(1.01);
    /* Slight press effect */
}

.cta-btn .arrow-icon {
    background: var(--primary-purple);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover .arrow-icon {
    transform: translate(2px, -2px);
}

/* ================= FOOTER SECTION ================= */
/* Footer Section */
.footer {
    background-color: var(--primary-purple);
    /* Matching the reference color */
    color: white;
    padding-top: 300px;
    /* Extra padding to account for CTA overlap */
    padding-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 200px;
}



.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links,
.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact-info li {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media screen and (max-width: 968px) {
    .logo-img {
        height: 40px;
    }

    .footer-logo-img {
        height: 45px;
    }

    .cta-section {
        margin-bottom: -150px;
    }

    .footer {
        padding-top: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-card {
        padding: 0 2rem;
        height: auto;
        min-height: 450px;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media screen and (max-width: 600px) {
    .logo-img {
        height: 35px;
    }

    .footer-logo-img {
        height: 40px;
    }

    .cta-section {
        margin-bottom: -120px;
    }

    .footer {
        padding-top: 180px;
        padding-bottom: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* Two columns as requested */
        gap: 2.5rem 1.5rem;
        text-align: left;
        /* Left align for cleaner 2-col look */
    }

    .footer-brand {
        grid-column: span 2;
        /* Brand spans full width for prominence */
        margin-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 2rem;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.2rem;
        text-align: left;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-links,
    .footer-contact-info {
        gap: 0.6rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

/* Mobile Menu Styles - Neat Overlay Design */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    background: white;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: scale(1);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-logo .logo-text {
    color: #000;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.mobile-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-body {
    padding: 1rem 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #f9f9f9;
    transition: background 0.2s;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    text-decoration: none;
    color: #000;
    font-size: 1.15rem;
    font-weight: 600;
    flex: 1;
}

.chevron-icon {
    display: none;
    color: #000;
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.mobile-menu-footer {
    padding: 1.5rem 2rem 2.5rem;
}

.mobile-action-btn {
    width: 100%;
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--main-font-family);
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 1px;
}

.mobile-action-btn:hover {
    background: var(--dark-purple);
}

@media screen and (min-width: 969px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ================= CONTACT PAGE STYLES ================= */
/* Contact Page Styles */
.contact-hero {
    min-height: 400px;
    padding-top: 150px;
    margin-bottom: 0;
}

.contact-section {
    padding: 8rem 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-title {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--primary-purple);
    margin: 1.5rem 0;
    text-transform: uppercase;
    font-weight: 500;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #555;
    font-family: var(--secondary-font-family);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateX(10px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-purple);
}

.method-details p {
    font-size: 0.95rem;
    color: #444;
    font-family: var(--secondary-font-family);
}

.contact-form-panel {
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 1px solid #eee;
    border-radius: 12px;
    font-family: var(--secondary-font-family);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: white;
    box-shadow: 0 0 0 4px rgba(110, 35, 106, 0.05);
}

.submit-btn {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 27, 78, 0.2);
}

.map-section {
    padding-bottom: 8rem;
    background: var(--light-bg);
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    line-height: 0;
}

@media screen and (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-form-panel {
        padding: 2.5rem;
    }
}

@media screen and (max-width: 600px) {
    .contact-section {
        padding: 5rem 0;
    }

    .contact-title {
        font-size: 2rem;
    }
}

/* Support for light-themed hero/header */
.contact-hero+.contact-section {
    margin-top: 0;
}

/* Support for light-themed hero/header removed for transparency */
.contact-hero+.contact-section {
    margin-top: 0;
}


/* Glassmorphism Contact Hero Styles - Compact Version */
.contact-hero-container {
    padding-top: 2rem;
    padding-bottom: 6rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: auto;
    /* Primary purple glass background */
    border-radius: 30px;
    -webkit-backdrop-filter: blur(20px);
}

.contact-glass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
}

.contact-glass-panel {
    background: rgba(110, 35, 106, 0.45);
    /* backdrop-filter: blur(30px); */
    -webkit-backdrop-filter: blur(30px);
    border-radius: 25px;
    padding: 2.5rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.glass-title {
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1.3rem;
    color: white;
    letter-spacing: -1px;
}

.glass-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 400;
    font-family: var(--secondary-font-family);
}

.glass-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.glass-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.3;
}

.glass-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Form Styles */
.glass-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* First 3 form groups (Name, Phone, Service) take 50% width */
.glass-form .glass-form-group:nth-child(-n+3) {
    width: 50%;
}

/* On mobile, revert to full width */
@media (max-width: 600px) {
    .glass-form .glass-form-group:nth-child(-n+3) {
        width: 100%;
    }
}

.glass-form-group.full-width {
    width: 100%;
}

.glass-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.glass-form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.2px;
}

.glass-form-group input,
.glass-form-group select,
.glass-form-group textarea {
    background: white;
    border: none;
    border-radius: 6px;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    color: #444;
    font-family: var(--secondary-font-family);
    width: fit-content;
    padding-right: 2rem;
    padding-left: 2rem;
    transition: all 0.2s ease;
}

.glass-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.glass-form-group input::placeholder,
.glass-form-group textarea::placeholder {
    color: #999;
}

.glass-submit-btn {
    background: #f5f1f8;
    color: #6e236a;
    border: none;
    padding: 0.5rem 0.55rem 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    margin-top: 0.6rem;
    width: fit-content;
    gap: 1rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.glass-btn-circle {
    background: #6e236a;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.glass-submit-btn:hover {
    transform: translateY(-2px);
    background: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.glass-submit-btn:hover .glass-btn-circle {
    transform: scale(1.05);
}

@media screen and (max-width: 968px) {
    .contact-glass-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .contact-hero-container {
        padding: 5rem 0;
    }

    .glass-title {
        font-size: 2.2rem;
    }

    .contact-glass-panel {
        padding: 2rem;
    }

    .form-panel {
        padding: 1.8rem 1.5rem;
    }
}

/* Contact page hero layout - unified background */
.hero-contact-page {
    padding-top: 130px !important;
    /* overflow: visible !important;     */
    z-index: 5;
    height: auto;
    min-height: 90vh;
    background-image: url('assets/images/Contact Us.webp');
    /* Dedicated contact hero image */
    background-size: cover;
    background-position: center top;
}

/* .hero-contact-page .hero-overlay {
    background: rgba(0, 0, 0, 0.4);
} */

/* Specific Footer Style for Contact Page */
.contact-footer {
    padding-top: 15rem;
    margin-top: -10rem;
    background-color: var(--primary-purple);
    position: relative;
    z-index: 0;
}

/* Ensure hero stays on top */
.contact-hero-container {
    position: relative;
    z-index: 2;
}

.footer-contact-btn {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ================= FAQ PAGE STYLES ================= */
/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 550px;
    width: 100%;
    margin: 2rem auto 0;
    padding: 0 1rem;
}

.faq-section .container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-align: left;
    transition: all 0.3s ease;
    line-height: 1.4;
    font-family: var(--primary-font-family);
}

.faq-question:hover {
    background: rgba(110, 35, 106, 0.02);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-purple);
    min-width: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    padding: 0 1.5rem;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0.5rem 1.5rem 1.1rem;
    opacity: 1;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
    font-family: var(--secondary-font-family);
    margin: 0;
    padding-top: 0.25rem;
    text-align: left;
}

/* FAQ Responsive */
@media screen and (max-width: 968px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .section-headline {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.1rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0.4rem 1.5rem 1.1rem;
    }

    .faq-cta-wrapper {
        margin-top: 2.5rem;
    }
}

@media screen and (max-width: 600px) {
    .faq-section {
        padding: 2.5rem 0;
    }

    .faq-container {
        padding: 0 0.25rem;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }

    .section-headline {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }

    .faq-item {
        border-radius: 12px;
        margin-bottom: 0.8rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0.35rem 1.25rem 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .faq-cta-wrapper {
        margin-top: 2rem;
        padding-bottom: 0.5rem;
    }

    .faq-cta-btn {
        font-size: 0.95rem;
        padding: 0.8rem 1rem 0.8rem 1.5rem;
    }

    .faq-arrow-icon {
        width: 28px;
        height: 28px;
    }
}

/* FAQ CTA Button */
.faq-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
    padding-bottom: 1rem;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-purple);
    color: white;
    text-decoration: none;
    padding: 0.9rem 1.2rem 0.9rem 2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(110, 35, 106, 0.25);
}

.faq-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 35, 106, 0.35);
    background: #7d2879;
}

.faq-arrow-icon {
    background: white;
    color: var(--primary-purple);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-cta-btn:hover .faq-arrow-icon {
    transform: rotate(45deg);
}

@media screen and (max-width: 600px) {
    .faq-cta-btn {
        font-size: 0.95rem;
        padding: 0.8rem 1rem 0.8rem 1.5rem;
    }

    .faq-arrow-icon {
        width: 28px;
        height: 28px;
    }
}

/* About Us Page Specific Overrides */
.cta-card.about-cta-bg {
    background-image: url('assets/images/about\ us\ footer.webp');
    /* Update this URL */
}

.cta-card.services-cta-bg {
    background-image: url('assets/images/services\ -\ footer.jpg');
}

/* ================= LOGO IMAGE STYLES ================= */
.logo img,
.footer-logo img,
.mobile-logo img {
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo img {
    max-height: 50px;
    /* Adjusted for typical logo visibility */
}

.footer-logo img {
    max-height: 60px;
    /* Slightly larger for footer */
    margin-bottom: 5px;
}

.mobile-logo img {
    max-height: 40px;
    /* Mobile menu logo height */
}

/* Ensure container fits image */
.logo,
.footer-logo,
.mobile-logo {
    display: block;
}

/* Override flex for .logo if it was set to flex-column */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* ================= PRIVACY POLICY PAGE STYLES ================= */
/* Privacy Policy Hero Section */
.privacy-hero {
    background-color: var(--primary-purple);
    padding: 8rem 0 6rem 0;
    padding-top: calc(var(--header-height) + 6rem);
    margin: 15px;
    margin-top: 15px;
    border-radius: 25px;
    text-align: center;
}

.privacy-hero-title {
    font-size: 4rem;
    font-weight: 400;
    color: white;
    margin: 0;
    letter-spacing: 0px;
    font-family: 'Playfair Display', 'Georgia', serif;
}

/* Privacy Policy Content Section */
.privacy-content {
    background-color: var(--light-bg);
    padding: 4rem 0 6rem 0;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.privacy-updated {
    /* text-align: center; */
    margin-bottom: 3rem;
}

.updated-badge {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.privacy-subheading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-purple);
    margin: 1.5rem 0 1rem 0;
}

.privacy-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
    font-family: var(--secondary-font-family);
}

.privacy-list {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.privacy-list li {
    margin-bottom: 0.8rem;
    color: #444;
    font-family: var(--secondary-font-family);
}

.privacy-list li strong {
    color: var(--primary-purple);
    font-weight: 600;
}

.contact-info-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-purple);
}

.contact-info-box p {
    margin-bottom: 0.5rem;
    color: #444;
    line-height: 1.6;
}

.contact-info-box a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

/* Privacy Policy Responsive */
@media screen and (max-width: 968px) {
    .privacy-hero {
        padding: 6rem 0 4rem 0;
    }

    .privacy-hero-title {
        font-size: 3rem;
    }

    .privacy-container {
        padding: 2rem;
    }

    .privacy-heading {
        font-size: 1.5rem;
    }

    .privacy-subheading {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 600px) {
    .privacy-hero {
        padding: 5rem 0 3rem 0;
    }

    .privacy-hero-title {
        font-size: 2.2rem;
    }

    .privacy-container {
        padding: 1.5rem;
    }

    .privacy-content {
        padding: 3rem 0 4rem 0;
    }

    .privacy-heading {
        font-size: 1.3rem;
    }

    .privacy-subheading {
        font-size: 1.1rem;
    }

    .privacy-text {
        font-size: 0.95rem;
    }

    .privacy-list {
        margin-left: 1.2rem;
    }

    /* Mobile menu logo height */
}

/* Ensure container fits image */
.logo,
.footer-logo,
.mobile-logo {
    display: block;
}

/* Override flex for .logo if it was set to flex-column */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* ================= PRIVACY POLICY PAGE STYLES ================= */
/* Privacy Policy Hero Section */
.privacy-hero {
    background-color: var(--primary-purple);
    padding: 8rem 0 8rem 0;
    padding-top: calc(var(--header-height) + 6rem);
    margin: 15px;
    margin-top: 15px;
    border-radius: 25px;
    text-align: center;
}

.privacy-hero-title {
    font-size: 4rem;
    font-weight: 400;
    color: white;
    margin: 0;
    letter-spacing: 0px;
    font-family: 'Playfair Display', 'Georgia', serif;
}

/* Privacy Policy Content Section */
.privacy-content {
    background-color: var(--light-bg);
    padding: 4rem 0 6rem 0;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.privacy-updated {
    /* text-align: center; */
    margin-bottom: 3rem;
}

.updated-badge {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.privacy-subheading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-purple);
    margin: 1.5rem 0 1rem 0;
}

.privacy-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
    font-family: var(--secondary-font-family);
}

.privacy-list {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.privacy-list li {
    margin-bottom: 0.8rem;
    color: #444;
    font-family: var(--secondary-font-family);
}

.privacy-list li strong {
    color: var(--primary-purple);
    font-weight: 600;
}

.contact-info-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-purple);
}

.contact-info-box p {
    margin-bottom: 0.5rem;
    color: #444;
    line-height: 1.6;
}

.contact-info-box a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

/* Privacy Policy Responsive */
@media screen and (max-width: 968px) {
    .privacy-hero {
        padding: 7rem 0 7rem 0;
        padding-top: calc(var(--header-height) + 4rem);
    }

    .privacy-hero-title {
        font-size: 3rem;
    }

    .privacy-container {
        padding: 2rem;
    }

    .privacy-heading {
        font-size: 1.5rem;
    }

    .privacy-subheading {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 600px) {
    .privacy-hero {
        padding: 5rem 0 5rem 0;
        padding-top: calc(var(--header-height) + 3rem);
    }

    .privacy-hero-title {
        font-size: 2.2rem;
    }

    .privacy-container {
        padding: 1.5rem;
    }

    .privacy-content {
        padding: 3rem 0 4rem 0;
    }

    .privacy-heading {
        font-size: 1.3rem;
    }

    .privacy-subheading {
        font-size: 1.1rem;
    }

    .privacy-text {
        font-size: 0.95rem;
    }

    .privacy-list {
        margin-left: 1.2rem;
    }

    .contact-info-box {
        padding: 1.5rem;
    }
}

/* Privacy Page - Glassy Transparent Menu Container */
.privacy-page .header {
    background: transparent;
}

.privacy-page .header .container-header {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.privacy-page .header .container-header {
    background-color: transparent;
}

.privacy-page .nav-link {
    color: white;
}

.privacy-page .nav-link:hover,
.privacy-page .nav-link.active {
    color: white;
    opacity: 1;
}

.privacy-page .contact-btn {
    background-color: white;
    color: var(--primary-purple);
}

.privacy-page .contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.privacy-updated {
    /* text-align: center; */
    margin-bottom: 3rem;
}

.updated-badge {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.privacy-subheading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-purple);
    margin: 1.5rem 0 1rem 0;
}

.privacy-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
    font-family: var(--secondary-font-family);
}

.privacy-list {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.privacy-list li {
    margin-bottom: 0.8rem;
    color: #444;
    font-family: var(--secondary-font-family);
}

.privacy-list li strong {
    color: var(--primary-purple);
    font-weight: 600;
}

.contact-info-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-purple);
}

.contact-info-box p {
    margin-bottom: 0.5rem;
    color: #444;
    line-height: 1.6;
}

.contact-info-box a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

/* Privacy Policy Responsive */
@media screen and (max-width: 968px) {
    .privacy-hero {
        padding: 6rem 0 6rem 0;
        padding-top: calc(var(--header-height) + 4rem);
    }

    .privacy-hero-title {
        font-size: 3rem;
    }

    .privacy-container {
        padding: 2rem;
    }

    .privacy-heading {
        font-size: 1.5rem;
    }

    .privacy-subheading {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 600px) {
    .privacy-hero {
        padding: 5rem 0 5rem 0;
        padding-top: calc(var(--header-height) + 3rem);
    }

    .privacy-hero-title {
        font-size: 2.2rem;
    }

    .privacy-container {
        padding: 1.5rem;
    }

    .privacy-content {
        padding: 3rem 0 4rem 0;
    }

    .privacy-heading {
        font-size: 1.3rem;
    }

    .privacy-subheading {
        font-size: 1.1rem;
    }

    .privacy-text {
        font-size: 0.95rem;
    }

    .privacy-list {
        margin-left: 1.2rem;
    }

    .contact-info-box {
        padding: 1.5rem;
    }
}

/* Privacy Page - Glassy Transparent Menu Container */
.privacy-page .header {
    background: transparent;
}

.privacy-page .header .container-header {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.privacy-page .header .container-header {
    background-color: transparent;
}

.privacy-page .nav-link {
    color: white;
}

.privacy-page .nav-link:hover,
.privacy-page .nav-link.active {
    color: white;
    opacity: 1;
}

.privacy-page .contact-btn {
    background-color: white;
    color: var(--primary-purple);
}

.privacy-page .contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.privacy-page .company-tag {
    color: white;
    border-color: white;
}

.privacy-page .mobile-menu-toggle span {
    background: white;
}

/* Privacy and Terms Pages - Reduce Footer Margin */
.privacy-page .footer {
    padding-top: 100px;
}

/* ================= REBRANDING POPUP MODAL ================= */
.rebranding-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
}

.rebranding-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.rebranding-popup {
    background: var(--primary-purple);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    max-width: 650px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.4s ease;
    pointer-events: auto;
    box-sizing: border-box;
}

.rebranding-popup-overlay.active .rebranding-popup {
    transform: scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
    line-height: 1;
}

.popup-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.popup-logo-container {
    margin-bottom: 1.5rem;
}

.popup-credora-logo {
    height: auto;
    max-height: 60px;
    width: auto;
    max-width: 100%;
    margin-bottom: 1rem;
}

.popup-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.popup-idmm-logo {
    height: auto;
    max-height: 80px;
    width: auto;
    max-width: 100%;
    margin: 1rem 0 0.5rem 0;
}

.popup-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.popup-message {
    color: white;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    text-transform: uppercase;
    font-family: 'Futura', 'Jost', 'Trebuchet MS', Arial, sans-serif;
}

.popup-message strong {
    font-weight: 500;
}

/* Mobile Responsive */
@media screen and (max-width: 600px) {
    .rebranding-popup {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        width: 95%;
        max-width: 95%;
    }

    .popup-close-btn {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .popup-logo-container {
        margin-bottom: 1rem;
    }

    .popup-credora-logo {
        max-height: 45px;
        height: auto;
        margin-bottom: 0.75rem;
    }

    .popup-heading {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.75rem;
    }

    .popup-idmm-logo {
        max-height: 60px;
        height: auto;
        margin: 0.75rem 0 0.5rem 0;
    }

    .popup-subtext {
        font-size: 0.7rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .popup-message {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ================= PRIVACY/TERMS PAGE FOOTER OVERRIDE ================= */
/* These pages have no CTA section, so remove the large top padding from footer */
.privacy-page .footer {
    padding-top: 4rem;
}

@media screen and (max-width: 968px) {
    .privacy-page .footer {
        padding-top: 3rem;
    }
}

@media screen and (max-width: 600px) {
    .privacy-page .footer {
        padding-top: 2.5rem;
    }
}