:root {
    --primary-gold: #b08d57;
    --primary-gold-light: #c5a67c;
    --dark-charcoal: #1a1a1a;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    height: 70px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    height: 55px;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 100%;
    width: auto;
    transition: all 0.3s ease;
}

.logo-dark {
    display: none;
}

.navbar.scrolled .logo-light {
    display: none;
}

.navbar.scrolled .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.mobile-menu-logo {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--dark-charcoal);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    z-index: 1001;
}

.navbar.scrolled .menu-toggle {
    color: var(--dark-charcoal);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 700;
}

.gold-text {
    color: var(--primary-gold);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-charcoal);
    margin-bottom: 3rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/hero.jpg');
    background-size: cover;
    background-position: center 20%;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    padding-left: 5%;
}

.hero-subtitle {
    font-size: 1.8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 5.5rem;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    display: block;
}

.hero-title .botox {
    font-size: 8rem;
    color: var(--primary-gold);
    display: inline-block;
    position: relative;
}

.hero-title .botox::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gold);
}

.hero-footer-text {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-cta-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.hero-cta-btn:hover {
    background: var(--primary-gold-light);
    border-color: var(--primary-gold-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(176, 141, 87, 0.4);
}

/* Overlap Banner */
.overlap-banner {
    background: var(--white);
    padding: 5rem 3rem;
    margin-top: -120px;
    position: relative;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: 4px;
}

.banner-title {
    font-size: 3.8rem;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.banner-title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--primary-gold);
    font-weight: 400;
}

.banner-highlight {
    background: var(--primary-gold);
    color: var(--white);
    display: inline-block;
    padding: 0.8rem 3rem;
    font-size: 3.2rem;
    margin: 1.5rem 0;
    font-family: var(--font-serif);
    font-weight: 700;
}

.banner-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.tag-sep {
    color: var(--primary-gold);
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

/* Infinite Carousel */
.carousel-section {
    padding: 1rem 0 6rem;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    width: calc(300px * 10);
    /* Adjust based on image count and width */
    animation: scroll 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    padding: 10px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.carousel-item img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 5));
    }

    /* Scroll half of the duplicated track */
}

/* Comparison Section */
.comparison {
    padding: 6rem 0 1rem;
    background-color: var(--white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.comparison-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.comparison-image-container img {
    width: 100%;
    display: block;
}

.label-float {
    position: absolute;
    bottom: 30px;
    background: rgba(176, 141, 87, 0.95);
    color: white;
    padding: 8px 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.label-before {
    left: 30px;
}

.label-after {
    right: 30px;
}

.comparison-content {
    padding-right: 2rem;
}

.quote-box {
    position: relative;
    padding: 2rem;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 8rem;
    color: var(--primary-gold);
    opacity: 0.2;
    font-family: var(--font-serif);
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--dark-charcoal);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.quote-text em {
    color: var(--primary-gold);
    font-style: italic;
}

/* Benefits Grid */
.benefits {
    padding: 5rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 1rem;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(176, 141, 87, 0.3);
    border-radius: 50%;
    padding: 15px;
}

.benefit-card h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-charcoal);
    font-weight: 700;
}

/* Trust Strip */
.trust-strip {
    padding: 4rem 0;
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.strip-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--dark-charcoal);
    line-height: 1.2;
}

.strip-item i {
    width: 32px;
    height: 32px;
    color: var(--primary-gold);
}

/* Site Footer */
.site-footer {
    background: var(--primary-gold);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 3rem;

}

.footer-cta-title {
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-cta-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer-logo-main {
    height: 80px;
    width: auto;
}

.footer-brand-tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 5px;
    opacity: 0.7;
    text-transform: uppercase;
}

.footer-contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-block {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-block:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.contact-block i {
    width: 24px;
    height: 24px;
}

.footer-bottom-info {
    padding-top: 2rem;
    text-align: center;
}

.footer-address {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.footer-schedule {
    margin-bottom: 2rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-legal {
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dev-logo {
    height: 22px;
    width: auto;
    margin-left: 10px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    vertical-align: middle;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    color: var(--dark-charcoal);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 1s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-title .botox {
        font-size: 6rem;
    }

    .overlap-banner {
        padding: 3rem 1.5rem;
        margin-top: -80px;
        width: 90%;
    }

    .banner-title {
        font-size: 2.8rem;
    }

    .banner-highlight {
        font-size: 2.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comparison-content {
        padding-right: 0;
        padding-top: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root { --nav-height: 60px; }
    .navbar { top: 44px !important; }
    .navbar.scrolled { top: 0 !important; }

    .nav-container {
        justify-content: center;
        position: relative;
    }

    .menu-toggle {
        display: block;
        padding: 10px;
        position: absolute;
        right: 15px;
        z-index: 10001;
        /* Ensure it's above everything */
        color: var(--white);
        transition: color 0.3s ease;
    }

    .navbar.scrolled .menu-toggle {
        color: var(--dark-charcoal);
    }

    .navbar.menu-open .menu-toggle {
        color: #b08d57 !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        /* Almost solid for luxury feel */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 6rem;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 10000;
        gap: 1.5rem;
    }

    .mobile-menu-logo {
        display: block;
        margin-bottom: 2rem;
    }

    .mobile-menu-logo img {
        height: 100px;
        width: auto;
    }

    .mobile-cta-li {
        width: 80%;
        margin-top: 5rem;
        display: block !important;
    }


    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: #b08d57 !important;
        font-size: 1.1rem;
        margin: 0;
        letter-spacing: 3px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .hero {
        min-height: 600px;
        padding-top: 60px;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-title .botox {
        font-size: 3.8rem;
    }

    .hero-footer-text {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .hero-cta-btn {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .overlap-banner {
        margin-top: -60px;
        padding: 3rem 1rem;
        width: 95%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-highlight {
        font-size: 1.5rem;
        padding: 0.4rem 1.2rem;
        margin: 1rem 0;
    }

    .banner-tags {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        font-size: 0.9rem;
    }

    .comparison {
        padding: 4rem 0 1rem;
    }

    .comparison-grid {
        gap: 2rem;
    }

    .quote-text {
        font-size: 1.4rem;
        padding: 0;
    }

    .quote-box::before {
        font-size: 5rem;
        top: -30px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .carousel-section {
        padding: 1rem 0 2rem;
    }

    .benefits {
        padding: 3rem 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
        margin-bottom: 1rem;
    }

    .benefit-card h4 {
        font-size: 0.7rem;
    }

    .main-footer {
        padding: 4rem 0;
    }

    .footer-content {
        gap: 3rem;
    }

    .signature-area {
        text-align: center;
    }

    .signature-area p {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .footer-badges {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .badge-item {
        justify-content: center;
        font-size: 0.72rem;
        white-space: nowrap;
        gap: 8px;
    }

    .appointment-btn {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .btn-icon {
        width: 35px;
        height: 35px;
    }

    .btn-content h3 {
        font-size: 1.2rem;
    }

    .strip-grid {
        flex-direction: column;
        gap: 2.5rem;
    }

    .strip-item {
        flex-direction: column;
        text-align: center;
        font-size: 0.85rem;
        gap: 10px;
    }

    .site-footer {
        padding: 4rem 0 2rem;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-cta-title {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }

    .footer-cta-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .rejuvenece-text {
        font-size: 2rem;
    }

    .footer-bottom-info {
        padding-top: 3rem;
    }

    .footer-address,
    .footer-schedule {
        font-size: 0.95rem;
    }
}


/* Main Footer / Bio */
.main-footer {
    padding: 4rem 0;
    background: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.signature-area h2 {
    font-family: var(--font-script);
    font-size: 6rem;
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: 0;
    line-height: 1;
}

.signature-area p {
    font-size: 1.3rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--dark-charcoal);
    font-weight: 600;
    margin-top: -10px;
}

.footer-badges {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--text-muted);
}

.badge-item i {
    color: var(--primary-gold);
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.appointment-btn {
    background: var(--primary-gold);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(176, 141, 87, 0.3);
    text-align: center;
}

.appointment-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(176, 141, 87, 0.4);
    background: var(--primary-gold-light);
}

.btn-icon {
    width: 50px;
    height: 50px;
}

.btn-content h3 {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
}

.dm-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.dm-icon {
    width: 40px;
    height: 40px;
    color: var(--text-muted);
}

.dm-text {
    font-size: 1.1rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .signature-area h2 {
        font-size: 4rem;
    }

    .badge-item {
        justify-content: center;
    }

    .appointment-btn {
        padding: 2rem;
    }

    .appointment-btn h3 {
        font-size: 1.3rem;
    }
}

/* Editorial Criteria Section */
.criteria-editorial {
    padding: 6rem 0 4rem;
    background: #fff;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.editorial-title {
    font-size: 3.5rem;
    color: var(--dark-charcoal);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.editorial-subtitle {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary-gold);
    font-style: italic;
    line-height: 1.4;
}

.editorial-list {
    list-style: none;
    border-left: 2px solid #f0f0f0;
    padding-left: 3rem;
}

.editorial-list li {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.editorial-list .number {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 5px;
    opacity: 0.6;
}

.editorial-list .text-content strong {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-charcoal);
    margin-bottom: 0.4rem;
}

.editorial-list .text-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.editorial-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 4rem;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--dark-charcoal);
}

@media (max-width: 1024px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .editorial-title {
        font-size: 2.5rem;
    }

    .editorial-list {
        padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .editorial-footer {
        font-size: 1.4rem;
    }
}

/* Editorial Image Styling - Circular Version */
.editorial-image-pc {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-top: 2.5rem;
    display: block;
}

.editorial-image-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .editorial-image-pc {
        display: none;
    }

    .editorial-image-mobile {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 2rem auto 0;
    }
}

/* Botox Context Section */
.botox-context {
    padding: 6rem 0 2rem;
    background: #fff;
    text-align: center;
}

.context-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.context-lead {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--dark-charcoal);
    margin-bottom: 2rem;
    font-weight: 600;
}

.context-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .context-lead {
        font-size: 1.6rem;
    }

    .context-body {
        font-size: 1rem;
    }
}

.context-highlight {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.3;
    color: var(--primary-gold);
    margin-top: 3rem;
    font-weight: 500;
    font-style: italic;
}



.footer-legal a {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.footer-legal a:hover {
    transform: scale(1.1);
}


/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #fafafa;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.stars {
    color: #ffc107;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 5px;
}

.stars i {
    width: 18px;
    height: 18px;
    fill: #ffc107;
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.patient-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.patient-name {
    font-weight: 700;
    color: var(--dark-charcoal);
    font-size: 1.1rem;
}

.platform {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .testimonials-carousel {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        display: flex;
        overflow-x: auto;
        padding-bottom: 2rem;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
    }

    .testimonial-card {
        min-width: 85%;
        scroll-snap-align: center;
    }
}





.mobile-cta-li {
    display: none;
}


.nav-links li a.nav-cta-btn-mobile {
    background: #b08d57 !important;
    color: #ffffff !important;
    padding: 1.2rem !important;
    border-radius: 50px;
    text-align: center;
    display: block !important;
    margin-top: 1rem;
    text-decoration: none !important;
}

.text-black {
    color: #000000 !important;
}

/* Top Bar & Global Marquee (Single Line) */
.top-bar {
    background: #1a1a1a;
    color: var(--white);
    height: 44px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10002;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.top-bar-marquee {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

.top-bar-marquee p {
    display: inline-block;
    margin: 0;
    padding-right: 50px;
}

.top-bar-sep {
    margin: 0 15px;
    color: var(--primary-gold);
    font-weight: 700;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .top-bar { font-size: 0.75rem; }
    .top-bar-marquee { animation: marquee 45s linear infinite; }
}

