/* Hard-clip the viewport - overflow:clip stops ALL sources including position:fixed */
html {
    overflow-x: clip;
}

body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Clamp all top-level sections to the viewport - never let any leak horizontally */
section,
footer,
.main-footer {
    max-width: 100%;
    overflow-x: hidden;
}

/* === Hero Section Styles === */
.hero-section {
    background-color: var(--ivory);
    min-height: 100vh;
    padding: 7rem 4rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

/* Floating Stars */
.star {
    position: absolute;
    font-size: 2rem;
    color: var(--charcoal);
    user-select: none;
    line-height: 1.2;
    z-index: 1;
}

.star-1 {
    top: 10%;
    left: 48%;
    font-size: 2.5rem;
}

.star-2 {
    top: 20%;
    right: 20%;
    font-size: 1.8rem;
}

.star-3 {
    bottom: 30%;
    right: 25%;
    font-size: 1.8rem;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem !important;
}

.hero-top-left {
    flex: 1;
    max-width: 55%;
}

.hero-top-left h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    color: var(--deep-navy);
    margin: 0;
    font-weight: 600;
}

.hero-top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    flex: 1;
    max-width: 45%;
}

.hero-subtext {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.5;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.text-link-gold {
    color: var(--sovereign-gold);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.text-link-gold:hover {
    color: #b0913b;
    gap: 0.8rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.practice-hours-badge {
    background-color: rgba(13, 27, 62, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    color: var(--deep-navy);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.hero-media {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}

.main-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.hero-bottom-cards {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-bottom-cards-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scrollCards 35s linear infinite;
}

.hero-bottom-cards:hover .hero-bottom-cards-track {
    animation-play-state: paused;
}

@keyframes scrollCards {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

.hero-review-card {
    width: 380px;
    flex-shrink: 0;
    background-color: var(--deep-navy);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.hero-review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-details strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--ivory);
    line-height: 1.2;
}

.reviewer-details span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.8;
}

.review-header .rating {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ivory);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.review-header .rating i {
    color: var(--sovereign-gold);
    font-size: 0.8rem;
}

.hero-review-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

/* === Stats Section === */
.stats-section {
    background-color: #ffffff;
    width: 100%;
}

.stats-container {
    padding: 4rem;
    margin: 0 auto;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(13, 27, 62, 0.1);
    padding: 0 1rem;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--sovereign-gold);
    margin-bottom: 0.5rem;
}

.stat-item h3 {
    font-size: 1.65rem;
    color: var(--deep-navy);
    line-height: 1.2;
    letter-spacing: 1px;
    font-family: 'Helvetica', sans-serif;
    font-variant-numeric: tabular-nums;
}



.stat-item p {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
    line-height: 1.5;
    margin: 0;
}

/* === Meet Surgeons Section - Luxury Redesign === */
.surgeons-section.luxury-dark {
    background-color: var(--deep-navy);
    width: 100%;
    color: #fff;
    padding: 5rem 0;
}

.surgeons-container {
    padding: 0 4rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

/* Image Column with Professional Frame */
.surgeons-image-col {
    position: relative;
    padding: 0;
    height: 100%;
    min-height: 400px;
    /* Fallback for mobile */
}

.surgeons-image-col .image-wrapper {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    overflow: hidden;
    z-index: 2;
    background-color: var(--deep-navy);
    width: 100%;
    height: 100%;
    max-width: none;
    padding: 0;
    border: none;
}

.surgeons-image-col .image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 62, 0.4) 0%, transparent 40%);
    pointer-events: none;
    z-index: 3;
}

.surgeons-image-col img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(10%) contrast(1.05);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.surgeons-image-col:hover img {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.03);
}

/* Content Typography */
.surgeons-container.reversed {
    grid-template-columns: 1.2fr 0.8fr;
}

.surgeon-eyebrow {
    display: block;
    color: var(--sovereign-gold);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.surgeons-content-col h2 {
    font-size: 2.5rem;
    color: var(--sovereign-gold);
    line-height: 1.2;
    font-weight: 700;
}

.surgeons-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.surgeons-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

.surgeons-detail-list li .list-dot {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-container {
        padding: 4rem 4rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 6rem 2rem 2rem;
        gap: 2rem;
    }

    .hero-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-top-left,
    .hero-top-right {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .hero-top-left h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .star {
        display: none;
    }

    .hero-media {
        height: auto;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        border-radius: 0;
        aspect-ratio: 16/9;
    }

    .main-hero-video {
        border-radius: 6px;
        height: 100%;
    }

    .hero-bottom-cards {
        position: relative;
        padding: 0;
        width: 100%;
    }

    .hero-bottom-cards-track {
        gap: 1rem;
    }

    .hero-review-card {
        width: 280px;
        padding: 1rem;
        gap: 0.8rem;
    }

    /* Surgeons Responsive */
    .surgeons-container,
    .surgeons-container.reversed {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 1rem;
    }

    .surgeons-image-col {
        padding: 0 0rem;
        order: -1;
    }

    .surgeons-image-col::before {
        display: none;
    }

    .stats-container {
        padding: 3rem 0;
        /* Remove horizontal padding so scroll goes edge to edge */
    }

    .stats-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .stats-row::-webkit-scrollbar {
        display: none;
    }

    .stat-item {
        flex: 0 0 160px;
        /* Fixed width for each item */
        border-right: 1px solid rgba(13, 27, 62, 0.1);
        padding: 0 1rem;
        text-align: center;
    }


    .stat-item:last-child {
        border-right: none;
    }
}

/* === Services Bento Grid Section === */
.services-section {
    background-color: #ffffff;
    padding: 5rem 0;
    /* Match surgeons section padding */
}

.services-container {
    margin: 0 auto;
    padding: 0 4rem;
    /* Add padding to container instead */
}

.services-header {
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 2.5fr 2fr;
    gap: 3rem;
    align-items: flex-start;
    text-align: left;
}

.services-eyebrow {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sovereign-gold);
    padding-top: 0.5rem;
    /* Aligns with the first line of the header */
}

.services-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.services-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
    /* Aligns with the first line of the header */
}

@media (max-width: 992px) {
    .services-header {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1rem;
    }

    .services-eyebrow,
    .services-desc {
        padding-top: 0;
    }
}

/* Services, Testimonials & Gallery Carousel Containers */
.services-carousel-container,
.testimonials-carousel-container,
.gallery-carousel-container {
    position: relative;
    width: 100%;
}

.services-prev,
.services-next,
.testimonials-prev,
.testimonials-next,
.gallery-prev,
.gallery-next,
.featured-prev,
.featured-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-prev:hover,
.services-next:hover,
.testimonials-prev:hover,
.testimonials-next:hover,
.gallery-prev:hover,
.gallery-next:hover,
.featured-prev:hover,
.featured-next:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.services-prev,
.testimonials-prev,
.gallery-prev,
.featured-prev {
    left: 2rem;
}

.services-next,
.testimonials-next,
.gallery-next,
.featured-next {
    right: 2rem;
}

@media (max-width: 768px) {

    .services-prev,
    .testimonials-prev,
    .gallery-prev,
    .featured-prev {
        left: 0.5rem;
    }

    .services-next,
    .testimonials-next,
    .gallery-next,
    .featured-next {
        right: 0.5rem;
    }
}

/* Horizontal Scroll Wrapper */
.services-scroll-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    cursor: grab;
    /* For draggable feature */
    contain: paint;
}

.services-scroll-wrapper.active {
    cursor: grabbing;
}

.services-scroll-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.services-scroll-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    padding-left: 1rem;
    padding-right: 1rem;
}

.scroll-card {
    position: relative;
    width: 320px;
    height: 440px;
    border-radius: 6px;
    background-color: transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Safe shadow on unclipped parent */
    transition: transform 0.3s ease;
    user-select: none;
    /* Prevent text selection while dragging */
}

.card-inner {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    clip-path: inset(0 round 6px);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    isolation: isolate;
    background-color: #fff;
}

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.card-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.card-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    padding: 1rem;
    display: flex;
    align-items: flex-end;
}

.card-content-top {
    position: relative;
    z-index: 3;
    padding: 1.2rem 1rem 1rem 1rem;
    /* Visually balanced with bottom padding */
    text-align: left;
}

.card-content-top h3 {
    font-size: 1.4rem;
    /* Slightly larger to accommodate the serif font gracefully */
    margin: 0;
    color: #fff;
    font-family: 'Helvetica', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    /* Remove excess invisible line-height gap */
}

.card-overlay-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.card-hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 1rem 1.8rem;
    background: linear-gradient(to top, rgba(13, 27, 62, 1) 70%, rgba(13, 27, 62, 0.88) 100%);
    max-height: 82%;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
}

.hover-scroll {
    text-align: left;
}

.hover-scroll h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--sovereign-gold);
    margin: 1rem 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hover-scroll h4:first-child {
    margin-top: 0;
}

.hover-scroll ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hover-scroll li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.2rem;
}

.hover-scroll li a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.hover-scroll li a:hover {
    color: var(--sovereign-gold);
}

.hover-scroll li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--sovereign-gold);
}

/* Hover States */
.services-scroll-wrapper:not(.is-dragging) .scroll-card:hover .card-hover-content {
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 992px) {
    .scroll-card {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }

    .services-container {
        padding: 0 2rem;
    }

    .services-scroll-track {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .scroll-card {
        width: 280px;
        height: 420px;
    }
}

/* === Video Testimonials Section === */
.testimonials-section.luxury-dark {
    background-color: var(--deep-navy);
    width: 100%;
    color: #fff;
    padding: 5rem 0;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.testimonials-header {
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 2.5fr 2fr;
    gap: 3rem;
    align-items: flex-start;
    text-align: left;
}

.testimonials-eyebrow {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sovereign-gold);
    padding-top: 0.5rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.testimonials-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
}

@media (max-width: 992px) {
    .testimonials-header {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1rem;
    }

    .testimonials-eyebrow,
    .testimonials-desc {
        padding-top: 0;
    }
}

.testimonials-scroll-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    contain: paint;
    scrollbar-width: none;
    cursor: grab;
}

.testimonials-scroll-wrapper.active {
    cursor: grabbing;
}

.testimonials-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonials-scroll-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    padding-left: 1rem;
    padding-right: 1rem;
}

.video-card {
    position: relative;
    width: 320px;
    aspect-ratio: 9/16;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    background-color: #000;
    user-select: none;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .video-card {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .testimonials-section.luxury-dark {
        padding: 4rem 0;
    }

    .testimonials-container {
        padding: 0 2rem;
    }

    .testimonials-scroll-track {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .video-card {
        width: 280px;
    }
}

/* === Why Choose Us Section === */
.why-choose-section {
    position: relative;
    /* padding-bottom: 5rem; */
    background-color: #ffffff;
}

.why-choose-top-bg {
    background-color: var(--ivory);
    padding: 5rem 0 60px 0;
    /* The 60px padding perfectly aligns with the -60px margin on the cards */
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Header Area */
.why-choose-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 0;
    /* Margin handled by top-bg padding for precise bisection */
}

.why-choose-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--sovereign-gold);
}

.why-choose-title-area {
    text-align: center;
}

.why-choose-title-area h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--deep-navy);
}

.why-choose-title-area p {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Circular Booking Badge */
.why-choose-badge {
    display: flex;
    justify-content: flex-end;
}

.booking-badge {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: spin 15s linear infinite;
    fill: var(--midnight-navy);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.badge-button {
    width: 60px;
    height: 60px;
    background-color: var(--midnight-navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.badge-button:hover {
    transform: scale(1.1);
    background-color: var(--sovereign-gold);
}

/* Feature Cards Area */
.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
    padding-top: 2rem;
    /* Clean spacing instead of negative margin overlap */
}

.why-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 2rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(13, 27, 62, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 27, 62, 0.2);
}

.why-icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Elegant circles instead of squares */
    margin-bottom: 1.2rem;
    background-color: var(--sovereign-gold);
    color: #ffffff;
}

.why-icon-box svg {
    width: 28px;
    height: 28px;
}



.why-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.why-card p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-choose-badge {
        justify-content: center;
    }

    .why-choose-cards {
        gap: 2rem;
    }

    .why-choose-top-bg {
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .why-choose-container {
        padding: 0 2rem;
    }

    .why-choose-cards {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: -40px;
    }
}

@media (max-width: 480px) {
    .why-choose-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .why-card {
        padding: 1rem 0.5rem;
    }

    .why-card h4 {
        font-size: 0.85rem;
    }
}

/* Gallery Section */
.gallery-section.luxury-dark {
    padding: 5rem 0;
    background-color: var(--deep-navy);
    color: #fff;
    overflow: hidden;
}

.luxury-dark .services-header h2 {
    color: #ffffff;
}

.luxury-dark .services-desc {
    color: rgba(255, 255, 255, 0.8);
}

.gallery-title {
    text-align: center;
    color: var(--deep-navy);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

.gallery-marquee-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
    position: relative;
    contain: paint;
}

.gallery-marquee-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-marquee-wrapper.active {
    cursor: grabbing;
}

.gallery-marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    min-width: 100%;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.gallery-img {
    flex: 0 0 auto;
    height: 215px;
    width: auto;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    user-select: none;
}

@media (max-width: 992px) {
    .gallery-img {
        height: 195px;
    }
}

@media (max-width: 768px) {
    .gallery-img {
        height: 175px;
    }
}

.gallery-img img,
.gallery-img iframe,
.gallery-img video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: auto; /* Allow interaction with videos/iframes */
}

.gallery-img img {
    pointer-events: none; /* Keep images un-draggable */
}

@keyframes scroll-gallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}

@media (max-width: 768px) {
    .gallery-img {
        height: 175px;
        width: auto;
        margin-right: 1rem;
    }

    .gallery-title {
        font-size: 2rem;
    }

    @keyframes scroll-gallery {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50%));
        }
    }
}

/* News Section */
.news-section {
    padding: 5rem 0;
    background-color: var(--ivory);
}

.news-layout {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.news-header-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.news-eyebrow {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sovereign-gold);
}

.news-header-side h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
}

.news-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.news-grid-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.news-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    cursor: pointer;
}

.news-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-img-wrap img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    bottom: 0.8rem;
    left: 0.8rem;
    background-color: var(--ivory);
    color: var(--deep-navy);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-item h3 {
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-header-side h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .news-grid-side {
        grid-template-columns: 1fr;
    }
}

/* === Before & After Section === */
.before-after-section.luxury-dark {
    background-color: var(--deep-navy);
    width: 100%;
    color: #fff;
    padding: 5rem 0;
}

.ba-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.ba-category {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 1rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.ba-category:hover,
.ba-category.active {
    background-color: var(--sovereign-gold);
    color: var(--deep-navy);
    border-color: var(--sovereign-gold);
}

.ba-img {
    position: relative;
}

.ba-badge {
    position: absolute;
    top: 0;
    padding: 0.25rem 0.6rem;
    background-color: var(--sovereign-gold);
    color: var(--midnight-navy);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.ba-badge.before {
    left: 0;
    border-bottom-right-radius: 6px;
}

.ba-badge.after {
    right: 0;
    border-bottom-left-radius: 6px;
}

.before-after-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.before-after-header {
    text-align: center;
}

@media (max-width: 768px) {
    .before-after-container {
        padding: 0 2rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 5rem 0 4rem 0;
    background-color: #ffffff;
}

.cta-banner {
    display: flex;
    background-color: var(--deep-navy);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    align-items: center;
}

.cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}

.cta-image img,
.cta-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-fade {
    position: absolute;
    top: 0;
    right: -1px;
    width: 15%;
    height: 100%;
    background: linear-gradient(90deg, rgba(250, 247, 242, 0) 0%, rgba(250, 247, 242, 1) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-left: 50%;
    padding: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 1rem;
}

.cta-content p.services-desc {
    color: rgba(255, 255, 255, 0.8);
}

.cta-content .nav-cta {
    background-color: var(--sovereign-gold);
    color: var(--deep-navy);
    border-color: var(--sovereign-gold);
}

.cta-content .nav-cta:hover {
    background-color: #d1b45f;
    border-color: #d1b45f;
}

@media (max-width: 1024px) {
    .cta-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-image {
        position: relative;
        width: 100%;
        height: 350px;
    }

    .cta-fade {
        width: 100%;
        right: 0;
        bottom: -1px;
        top: auto;
        height: 25%;
        background: linear-gradient(180deg, rgba(250, 247, 242, 0) 0%, rgba(250, 247, 242, 1) 80%, rgba(250, 247, 242, 1) 100%);
    }

    .cta-content {
        margin-left: 0;
        text-align: center;
        padding: 3rem 1.35rem;
    }
}

/* === FAQ Section === */
.faq-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.faq-section.luxury-dark {
    background-color: var(--deep-navy);
    padding: 5rem 0;
    color: #ffffff;
}

.luxury-dark .faq-header-side h2 {
    color: #ffffff;
}

.luxury-dark .faq-desc {
    color: rgba(255, 255, 255, 0.8);
}

.luxury-dark .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.luxury-dark .faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.luxury-dark .faq-question,
.luxury-dark .faq-question i {
    color: #ffffff;
}

.luxury-dark .faq-answer p {
    color: rgba(255, 255, 255, 0.8);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.faq-header-side {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.faq-eyebrow {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sovereign-gold);
}

.faq-header-side h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.faq-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.faq-accordion-side {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 2rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--sovereign-gold);
}

.faq-question i {
    color: #1a1a1a;
    width: 24px;
    height: 24px;
    transition: color 0.3s ease;
}

.faq-question:hover i {
    color: var(--sovereign-gold);
}

.faq-icon-minus {
    display: none;
}

.faq-item.active .faq-icon-plus {
    display: none;
}

.faq-item.active .faq-icon-minus {
    display: block;
}

.faq-item.active .faq-question,
.faq-item.active .faq-question i,
.luxury-dark .faq-item.active .faq-question,
.luxury-dark .faq-item.active .faq-question i {
    color: var(--sovereign-gold);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 0;
    transition: padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer p {
    padding-bottom: 2rem;
}

@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-header-side h2 {
        font-size: 2.2rem;
    }
}

/* === Our Approach Section === */
.approach-section {
    background-color: #ffffff;
    padding: 5rem 0;
    width: 100%;
}

.approach-container {
    margin: 0 auto;
    padding: 0 4rem;
}

.approach-layout {
    display: grid;
    grid-template-columns: 1.1fr 3fr;
    gap: 2rem;
    align-items: center;
}

.approach-header {
    text-align: left;
}

.approach-eyebrow {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sovereign-gold);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.7rem;
}

.approach-header h2 {
    font-size: 2.2rem;
    /* Reduced to stop awkward wrapping */
    color: var(--deep-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.approach-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.approach-timeline-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}

.approach-timeline-wrapper::-webkit-scrollbar {
    display: none;
}

.approach-timeline {
    display: flex;
    justify-content: space-between;
    min-width: 800px;
    padding-bottom: 1rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-step.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-step:nth-child(1) {
    transition-delay: 0s;
}

.timeline-step:nth-child(2) {
    transition-delay: 0.2s;
}

.timeline-step:nth-child(3) {
    transition-delay: 0.4s;
}

.timeline-step:nth-child(4) {
    transition-delay: 0.6s;
}

.timeline-step:nth-child(5) {
    transition-delay: 0.8s;
}

.timeline-step:nth-child(6) {
    transition-delay: 1.0s;
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sovereign-gold);
    margin-bottom: 1rem;
    border: 1px solid var(--sovereign-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.step-icon i {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.timeline-step:hover .step-icon {
    background-color: var(--sovereign-gold);
    color: #fff;
}

.timeline-step:hover .step-icon i {
    transform: scale(1.15);
}

.step-point-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 1rem;
    height: 10px;
}

.step-point {
    width: 8px;
    height: 8px;
    background-color: var(--sovereign-gold);
    border-radius: 50%;
    z-index: 2;
}

.step-point-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    right: -50%;
    top: 50%;
    height: 1px;
    background-color: var(--sovereign-gold);
    z-index: 1;
}

.timeline-step:last-child .step-point-wrapper::before {
    display: none;
}

.timeline-step h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--deep-navy);
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
}

.timeline-step:hover h4 {
    color: var(--sovereign-gold);
}

.timeline-step p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1024px) {
    .approach-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-container {
        padding: 0 1rem;
    }
}

/* === Consultation Form Section === */
.consultation-section {
    background-color: #ffffff;
    padding: 5rem 0;
    width: 100%;
}

.consultation-section.luxury-dark {
    background-color: var(--deep-navy);
}

.luxury-dark .consultation-form-header h2 {
    color: #ffffff;
}

.luxury-dark .form-group label {
    color: #ffffff;
}

.consultation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.consultation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

/* Left: Image Wrap */
.consultation-image-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.consultation-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right: Form Wrap */
.consultation-form-wrap {}

.consultation-form-header {
    margin-bottom: 2rem;
}

.consultation-form-header h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin: 0.5rem 0 0 0;
    line-height: 1.2;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: left;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--deep-navy);
}

.required {
    color: #e53e3e;
}

.consultation-form input,
.consultation-form textarea {
    width: 100%;
    padding: 0 1rem;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--sovereign-gold);
    box-shadow: 0 0 0 3px rgba(184, 151, 88, 0.1);
}

.consultation-form textarea {
    resize: vertical;
    padding: 0.75rem 1rem;
    /* Textarea needs normal padding instead of height */
    height: auto;
    min-height: 80px;
}

/* Custom Dropdown */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-dropdown.active .dropdown-trigger {
    border-color: var(--sovereign-gold);
    box-shadow: 0 0 0 3px rgba(184, 151, 88, 0.1);
}

.dropdown-trigger i {
    width: 20px;
    height: 20px;
    color: #1a1a1a;
    transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.custom-dropdown.active .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option {
    padding: 0.8rem 1.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1a1a1a;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-option:hover {
    background-color: var(--ivory);
    color: var(--sovereign-gold);
}

.consultation-submit-btn {
    background-color: var(--sovereign-gold);
    color: var(--midnight-navy);
    border: none;
    height: 44px;
    padding: 0 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.consultation-submit-btn:hover {
    background-color: #dcb858;
}

@media (max-width: 992px) {
    .consultation-container {
        padding: 0 1rem;
    }

    .consultation-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* === Custom Calendar (.bw-calendar) Popup === */
.custom-date-dropdown {
    position: relative;
    width: 100%;
}

.bw-calendar {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    z-index: 100;
    display: none;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.custom-date-dropdown.active .bw-calendar {
    display: block;
}

.bw-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.bw-cal-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-navy);
    flex: 1;
    text-align: center;
}

.bw-cal-nav {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    color: var(--deep-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.bw-cal-nav:hover {
    background: #f1f5f9;
}

.bw-cal-nav i {
    font-size: 12px;
}

.bw-cal-dow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 6px;
}

.bw-cal-dow>div {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: #666;
    padding: 4px 0;
}

.bw-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.bw-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--deep-navy);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.bw-cal-day:hover:not(.is-off):not(.is-empty):not(.is-selected) {
    background: #f1f5f9;
}

.bw-cal-day.is-empty {
    cursor: default;
    pointer-events: none;
}

.bw-cal-day.is-off {
    color: #ccc;
    cursor: not-allowed;
    background: transparent;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(0, 0, 0, 0.1);
}

.bw-cal-day.is-today {
    font-weight: 700;
    color: var(--deep-navy);
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

.bw-cal-day.is-selected {
    background: var(--deep-navy);
    border-color: var(--deep-navy);
    color: #ffffff;
}

.bw-cal-day.is-selected.is-today {
    color: #ffffff;
}

.bw-cal-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: #666;
}

.bw-cal-legend>span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bw-cal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.bw-cal-dot--selected {
    background: var(--deep-navy);
}

.bw-cal-dot--today {
    background: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
}

.bw-cal-dot--off {
    background: #ccc;
}

/* === Highlights Section === */
.highlights-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.highlights-container {
    padding: 0 4rem;
}

.highlights-grid {
    /* Overridden in HTML style attribute for horizontal scroll */
}

.highlight-card {
    background-color: #Fdfbf7;
    border-radius: 6px;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    flex: 0 0 480px;
    max-width: 90vw;
}

.highlight-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.highlight-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.highlight-content h3 {
    font-size: 1.4rem;
    color: var(--midnight-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.highlight-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sovereign-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
}

.highlight-link:hover {
    opacity: 0.8;
}

.highlight-img {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-img img {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
    .highlight-card {
        flex: 0 0 340px;
    }
}

@media (max-width: 768px) {
    .highlight-card {
        flex: 0 0 300px;
        flex-direction: column;
    }

    .highlight-img {
        flex: 1;
        width: 100%;
    }

    .highlight-img img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .highlights-container {
        padding: 0 2rem;
    }
}

/* ── Global mobile overflow guard ── */
@media (max-width: 992px) {

    section,
    .hero-section,
    .stats-section,
    .surgeons-section,
    .services-section,
    .testimonials-section,
    .why-choose-section,
    .gallery-section,
    .news-section,
    .before-after-section,
    .cta-section,
    .approach-section,
    .consultation-section,
    .highlights-section {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Symmetric vertical padding for content sections */
    .surgeons-section,
    .services-section,
    .testimonials-section,
    .gallery-section,
    .news-section,
    .before-after-section,
    .cta-section,
    .approach-section,
    .consultation-section,
    .highlights-section,
    .why-choose-top-bg {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }
}

/* Global container padding fix for mobile */
@media (max-width: 768px) {

    .hero-section,
    .stats-container,
    .services-container,
    .testimonials-container,
    .why-choose-container,
    .before-after-container,
    .faq-container,
    .approach-container,
    .consultation-container,
    .footer-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .highlights-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .main-footer {
        padding-top: 3.5rem !important;
    }
}

/* Responsive Typography for Mobile */
@media (max-width: 768px) {

    /* Main Headers */
    .hero-left h1 {
        font-size: 2.2rem !important;
    }

    .surgeons-content-col h2,
    .services-header h2,
    .testimonials-header h2,
    .why-choose-title-area h2,
    .news-header-side h2,
    .cta-content h2,
    .faq-header-side h2,
    .core-team-header h2,
    .tech-left h2,
    .approach-header h2,
    .consultation-form-header h2 {
        font-size: 1.8rem !important;
    }

    .stat-item h3 {
        font-size: 1.8rem !important;
    }

    .stat-item p {
        white-space: nowrap;
        font-size: 0.75rem !important;
    }

    /* Eyebrow Texts */
    .surgeon-eyebrow,
    .services-eyebrow,
    .testimonials-eyebrow,
    .why-choose-eyebrow,
    .news-eyebrow,
    .faq-eyebrow,
    .approach-eyebrow,
    .highlight-eyebrow {
        font-size: 0.95rem !important;
    }

    /* Vertical Approach Timeline for Mobile */
    .approach-timeline-wrapper {
        overflow: visible;
    }

    .approach-timeline {
        flex-direction: column;
        min-width: 100%;
        gap: 2rem;
    }

    .timeline-step {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 1rem;
        row-gap: 0.25rem;
        text-align: left;
        align-items: start;
    }

    .timeline-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50px;
        bottom: -2rem;
        left: 25px;
        width: 1px;
        background-color: rgba(201, 168, 76, 0.4);
        /* subtle gold connector */
        z-index: 0;
    }

    .timeline-step .step-icon {
        grid-column: 1;
        grid-row: 1 / 3;
        margin: 0;
    }

    .timeline-step .step-point-wrapper {
        display: none;
        /* Hide horizontal connecting line on mobile */
    }

    .timeline-step h4 {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0;
        margin-top: 0.25rem;
    }

    .timeline-step p {
        grid-column: 2;
        grid-row: 2;
        margin: 0;
    }
}

/* Core Team Section */
.core-team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 4rem;
}

.core-team-section.midnight-blue {
    background-color: var(--deep-navy);
    color: #fff;
}

.core-team-header {
    margin-bottom: 4rem;
    text-align: center;
}

.core-team-header h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.core-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.core-team-card {
    background-color: transparent;
    border: none;
    text-align: center;
}

.core-team-card:hover {
    /* No generic card hover */
}

.core-team-img {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 150px 150px 0 0;
    margin-bottom: 1rem;
}

.core-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.core-team-card:hover .core-team-img img {
    transform: scale(1.08);
}

.core-team-info {
    padding: 0;
    text-align: center;
}

.core-team-info h3 {
    color: var(--ivory);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.core-team-info p {
    color: var(--sovereign-gold);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.view-all-members-wrap {
    margin-top: 4rem;
    text-align: center;
}

.view-all-members-wrap .core-team-btn {
    background-color: var(--sovereign-gold);
    color: var(--deep-navy);
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600 !important;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.view-all-members-wrap .core-team-btn:hover {
    background-color: #dcb858;
    color: var(--deep-navy);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .core-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .core-team-container {
        padding: 4rem 1rem;
    }

    .view-all-members-wrap {
        margin-top: 3rem;
    }

    .core-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .core-team-info h3 {
        font-size: 1rem;
    }

    .core-team-info p {
        font-size: 0.8rem;
    }
}

/* === Technology Section === */
.technology-section {
    padding: 5rem 0;
    background-color: #FAFAF9;
    /* very light off-white */
}

.technology-container {
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.tech-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tech-eyebrow {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sovereign-gold);
    margin-bottom: 1rem;
}

.tech-left h2 {
    font-size: 2.3rem;
    color: var(--deep-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.tech-subtext {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.tech-right {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.tech-prev,
.tech-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--sovereign-gold);
    background: transparent;
    color: var(--sovereign-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99; /* Increased z-index */
    transition: all 0.3s ease;
}

.tech-prev:hover,
.tech-next:hover {
    background-color: var(--sovereign-gold);
    color: #fff;
}

.tech-prev {
    left: 1rem;
}

.tech-next {
    right: 1rem;
}

.tech-carousel {
    overflow: hidden;
    margin: 0 3rem;
    /* Space for arrows */
}

.tech-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
}

.tech-img {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
    margin-right: 2.5rem;
}

.tech-img img {
    height: 180px;
    width: 180px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
}

.tech-info {
    flex: 1;
}

.tech-info h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.tech-info p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.tech-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.tech-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(184, 134, 11, 0.3);
    /* muted gold */
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-dot.active {
    background-color: var(--sovereign-gold);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .technology-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tech-left {
        text-align: left;
        align-items: flex-start;
    }

    .tech-slide {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .tech-img {
        margin-right: 0;
        justify-content: center;
    }

    .tech-img img {
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .technology-section {
        padding: 3rem 0;
        overflow: hidden;
    }

    .technology-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .tech-right {
        padding: 2rem 1rem;
    }

    .tech-carousel {
        margin: 0 1.5rem;
    }

    .tech-prev,
    .tech-next {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        border: none;
    }

    .tech-prev:hover,
    .tech-next:hover,
    .tech-prev:active,
    .tech-next:active,
    .tech-prev:focus,
    .tech-next:focus {
        background-color: transparent;
        color: var(--sovereign-gold);
    }

    .tech-prev {
        left: 0.25rem;
    }

    .tech-next {
        right: 0.25rem;
    }

    .tech-img img {
        height: 110px;
        width: 110px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        margin-bottom: 0.5rem;
    }

    .tech-dots {
        margin-top: 1.5rem;
    }

    /* Fix slider alignment for mobile: display one centered item at a time */
    .services-scroll-wrapper,
    .testimonials-scroll-wrapper,
    .gallery-marquee-wrapper {
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        /* give some room for snap if needed */
    }

    .scroll-card,
    .video-card,
    .gallery-img {
        scroll-snap-align: center;
        width: 85vw !important;
        /* Almost full width but shows a hint of next card */
        flex: 0 0 auto;
    }

    .gallery-img {
        margin-right: 0 !important;
        /* override any margin-right that interferes with flex gap */
    }
}

@media (max-width: 1080px) {
    .desktop-only-br {
        display: none;
    }
}

/* === Featured Moments Section === */
.featured-wrapper {
    margin: 0 auto;
    position: relative;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0 4rem;
    scroll-behavior: smooth; /* Smooth scrolling for arrows */
}
.featured-card {
    background: transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.featured-card:hover {
    transform: translateY(-5px);
}
@media (max-width: 1024px) {
    .featured-grid {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        padding: 0; /* Remove padding to allow edge bleeding */
    }
    .featured-grid::before,
    .featured-grid::after {
        content: '';
        flex: 0 0 4rem; /* Spacer for scroll */
    }
    .featured-grid::-webkit-scrollbar { display: none; }
    .featured-card {
        flex: 0 0 320px;
    }
}
@media (max-width: 992px) {
    .featured-grid::before,
    .featured-grid::after {
        flex: 0 0 2rem;
    }
}
@media (max-width: 768px) {
    .featured-card { flex: 0 0 280px; }
    
    .featured-grid::before,
    .featured-grid::after {
        flex: 0 0 1rem;
    }
    
    .featured-grid {
        scroll-snap-type: x mandatory;
    }
    .featured-card {
        scroll-snap-align: center;
    }
}