/*
Theme Name: Gyno Custom Theme
Author: Antigravity
Description: A custom theme for FeminCare Gynaecology.
Version: 1.1
*/

:root {
    --primary-color: #F5A9B4;
    --primary-hover: #d4829a;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #fffafa;
    --loader-bg: #fff1f5;
    --header-height: 125px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Header Styles */
header {
    height: var(--header-height);
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

header.header-scrolled {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.loader-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.brand-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.book-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-btn:hover {
    background-color: #D4829A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 130, 154, 0.35);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    background-image: url('hero.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-text-wrapper {
    max-width: 600px;
}

.hero-tag {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.hero-tag::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-left: 10px;
    vertical-align: middle;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 400;
    color: #1a2a47;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.hero h1 span {
    color: var(--primary-color);
    font-style: italic;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    align-items: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background-color: #D4829A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 130, 154, 0.35);
    color: #fff;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
}

.play-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    color: var(--primary-color);
}

.btn-secondary:hover .play-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px; /* Reduced gap from walls on mobile */
    }
}

/* About Doctor Section */
.about-doctor {
    padding: 100px 0 40px;
    background-color: #fff;
}

.doctor-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.doctor-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.doctor-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    z-index: 1;
}

.doctor-info {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.doctor-info .btn-primary {
    display: inline-flex;
    width: auto;
    padding: 12px 30px;
    font-size: 15px;
}

.section-tag {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
    padding-top: 30px;
    /* Moved down in desktop view */
}

.doctor-name {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    color: #1a2a47;
    margin-bottom: 10px;
}

.doctor-qualifications {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.doctor-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.doctor-specialties {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.doctor-specialties li {
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    color: var(--text-dark);
}

.doctor-specialties li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .doctor-flex {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .doctor-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-tag {
        padding-top: 0;
        margin-bottom: 10px;
    }

    .doctor-name {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .doctor-image.mobile-only {
        margin-bottom: 25px;
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .doctor-image.mobile-only img {
        max-width: 300px;
    }

    .doctor-qualifications {
        font-size: 16px;
        margin-bottom: 25px;
        max-width: 90%;
    }

    .doctor-intro {
        border-left: none;
        padding: 25px;
        background: var(--primary-color);
        /* Full pink background */
        color: #fff;
        /* White text */
        border-radius: 20px;
        margin-bottom: 30px;
        text-align: left;
        width: 100%;
        box-shadow: 0 10px 25px rgba(212, 106, 154, 0.2);
    }

    .doctor-intro p {
        color: #fff;
        /* Ensure paragraph text is also white */
    }

    .doctor-specialties {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 100%;
        margin: 0 auto 40px auto;
    }
}

.feature-overlay {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
}

.feature-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 80px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #fdf2f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 20px;
}

.feature-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.feature-info p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 56px;
    }

    nav ul {
        display: none;
    }

    .feature-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .header-container {
        padding: 0 20px;
    }

    .logo svg,
    .logo-img {
        height: 38px;
        width: auto;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-sub {
        font-size: 10px;
    }

    nav {
        display: none;
        /* Hide nav on mobile as per image */
    }

    .book-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero {
        background-image: url('heroMobile.png');
        background-size: cover;
        background-position: center top;
        /* Ensures image is cropped from the bottom */
        text-align: center;
        min-height: auto;
        padding-bottom: 60px;
        /* Replaced min-height with auto to fit content and buttons */
        display: flex;
        align-items: flex-start;
        /* Move content above */
        padding-top: calc(var(--header-height) + 40px);
        /* Adjust spacing from top */
    }

    .hero-content {
        padding: 0 20px;
        width: 100%;
    }

    .hero-text-wrapper {
        margin: 0 auto;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .btn-secondary {
        font-size: 14px;
    }

    .play-icon {
        width: 40px;
        height: 40px;
    }

    .feature-overlay {
        display: none;
        /* Hide features on mobile as per the provided screenshot */
    }
}

/* Services Section with Image Background */
.services-section {
    padding: 40px 0 50px;
    background-color: #fff;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header .section-tag {
    padding-top: 0;
}

.section-title {
    font-size: 52px;
    font-family: 'Playfair Display', serif;
    color: #1a2a47;
    margin-top: 15px;
    line-height: 1.1;
}

.script-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-color);
    font-size: 52px;
}

/* Heading Divider Styling */
.heading-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: #ffe4ed;
}

.divider-icon {
    font-size: 14px;
    color: var(--primary-color);
    opacity: 0.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 cards per row */
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-card {
    background-color: #fbf2f5;
    border-radius: 40px;
    padding: 15px 15px 30px;
    /* Reduced top padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(212, 106, 154, 0.12);
    border: 1px solid rgba(212, 106, 154, 0.08);
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: #fbeffa;
    box-shadow: 0 20px 50px rgba(212, 106, 154, 0.2);
}

.service-icon {
    width: 100%;
    height: 190px;
    margin-top: -10px;
    /* Pull icon up slightly */
    margin-bottom: 0;
    /* Minimal gap between icon and text */
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon img {
    width: 150%;
    /* Further increased scale to fill the space */
    height: 150%;
    object-fit: contain;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a2a47;
    line-height: 1.2;
    margin-bottom: 10px;
    height: auto;
}

.service-arrow {
    width: 35px;
    /* Slightly smaller arrow */
    height: 35px;
    border: 2px solid #F5A9B4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s;
}

.service-card:hover .service-arrow {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on mobile for better balance */
        gap: 10px; /* Tighter gap between cards */
        padding: 0 5px; /* Minimal side gap to maximize card width */
    }

    .services-section {
        padding: 50px 0;
    }

    .service-card {
        padding: 15px 10px 20px;
        border-radius: 25px;
        box-shadow: 0 10px 25px rgba(212, 106, 154, 0.08);
    }

    .service-icon {
        height: 120px; /* Smaller icon container for mobile tiles */
    }

    .service-icon img {
        width: 120%; /* Adjusted scale for mobile */
        height: 120%;
    }

    .service-card h3 {
        font-size: 14px; /* More appropriate font size for small tiles */
        margin-bottom: 15px;
    }
    
    .service-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 32px; /* Smaller section title for mobile */
    }

    .script-text {
        font-size: 32px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0 30px; /* Reduced bottom padding */
    background-color: #fff;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-header .section-tag {
    padding-top: 0;
}

.section-description {
    color: var(--text-light);
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.reviews-slider-outer {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
}

.reviews-slider-container {
    overflow: hidden;
    width: 100%;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
    align-items: flex-start;
    /* Important for expansion */
}

.review-card {
    min-width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: auto;
    transition: all 0.3s ease;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.quote-icon {
    font-size: 60px;
    color: var(--primary-color);
    line-height: 1;
    font-family: 'Playfair Display', serif;
    opacity: 0.8;
}

.rating {
    color: var(--primary-color);
    font-size: 18px;
    letter-spacing: 2px;
}

.review-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.review-content p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
    font-style: normal;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-card.is-expanded .review-content p {
    -webkit-line-clamp: unset;
    display: block;
}

.read-more-btn {
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
    transition: all 0.3s;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.card-divider {
    height: 1px;
    background: #f5f5f5;
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a2a47;
    margin-bottom: 2px;
}

.user-status {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.check-icon {
    font-size: 14px;
}

.slider-nav {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.slider-nav:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    padding-bottom: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f0f0f0; /* Light gray for inactive */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 106, 154, 0.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(212, 106, 154, 0.3);
}

/* Swipe Indicator */
.swipe-indicator {
    text-align: center;
    margin-top: 15px;
    opacity: 0.6;
}

.swipe-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .review-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .reviews-slider-outer {
        padding: 0 20px;
    }

    .review-card {
        min-width: 100%;
    }

    .slider-nav {
        display: none;
    }
}

/* Appointment Section */
.appointment-section {
    padding: 40px 0 100px; /* Reduced top padding */
    background-color: #ffffff;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.appointment-title {
    font-size: 56px;
    font-family: 'Playfair Display', serif;
    color: #1a2a47;
    line-height: 1.1;
    margin-bottom: 20px;
}

.appointment-title span {
    color: var(--primary-color);
    font-style: italic;
}

.title-divider {
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin-bottom: 30px;
}

.appointment-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 400px;
}

.contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    max-width: 380px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(212, 106, 154, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #fff0f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
}

.info-text span {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

.info-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a47;
}

/* Form Card */
.appointment-form-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid #f5f5f5;
}

.appointment-form-card h3 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    color: #1a2a47;
    margin-bottom: 15px;
}

.form-divider {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a2a47;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid #eee;
    border-radius: 15px;
    font-family: inherit;
    font-size: 15px;
    background: #fdfdfd;
    transition: all 0.3s;
}

.appointment-form select {
    padding-left: 20px;
    /* Selects usually don't have icons inside in native but we can adjust */
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23F5A9B4' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.appointment-form textarea {
    height: 120px;
    resize: none;
    padding-left: 20px;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 106, 154, 0.1);
}

.submit-appointment {
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}

.submit-appointment:hover {
    background-color: #D4829A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 130, 154, 0.35);
}

.form-footer {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-top: 25px;
}

@media (max-width: 1200px) {
    .appointment-grid {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .appointment-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .appointment-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .appointment-title {
        font-size: 42px;
    }

    .contact-info-boxes {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .appointment-form-card {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.footer-flex {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.cta-tag {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
}

.footer-heading {
    font-size: 52px;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.footer-heading span {
    color: #fff;
    font-style: italic;
    opacity: 0.9;
}

.footer-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 450px;
    line-height: 1.8;
}

.footer-btn {
    display: inline-block;
    background-color: #fff;
    color: var(--primary-color);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.footer-btn:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 130, 154, 0.35);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.item-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-shrink: 0;
}

.item-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-graphic {
    position: relative;
    height: 250px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-graphic svg {
    width: 300px;
    height: 300px;
    opacity: 0.6;
}

.footer-bottom {
    background-color: var(--primary-hover);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 1100px) {
    .footer-flex {
        grid-template-columns: 1fr 1fr;
    }

    .footer-graphic {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-flex {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-info {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }

    .footer-heading {
        font-size: 38px;
    }
}

/* About Page Specific Styles */
.about-page {
    padding-top: var(--header-height);
}

.page-header {
    background: linear-gradient(rgba(255, 241, 245, 0.8), rgba(255, 241, 245, 0.4)), url('about_hero_bg.png');
    background-size: cover;
    background-position: center;
    height: 650px !important;
    min-height: 650px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    padding-top: 100px !important;
    box-sizing: border-box !important;
}

.page-title {
    font-size: 64px;
    font-family: 'Playfair Display', serif;
    color: #1a2a47;
    margin-bottom: 20px;
}

.page-title span {
    color: var(--primary-color);
    font-style: italic;
}

.breadcrumb {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Story Section */
.our-story-section {
    padding: 100px 0;
    background: #fff;
}

.story-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(212, 106, 154, 0.3);
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 5px;
}

.story-content {
    flex: 1.2;
}

.story-intro {
    font-size: 20px;
    font-weight: 600;
    color: #1a2a47;
    margin-bottom: 20px;
    line-height: 1.5;
}

.story-text {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 40px;
}

.story-stats {
    display: flex;
    gap: 50px;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: #fdfdfd;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(212, 106, 154, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #fff0f5;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a2a47;
}

.value-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Credentials Section */
.credentials-section {
    padding: 100px 0;
    background: #fff;
}

.credentials-box {
    background: #1a2a47;
    border-radius: 50px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    color: #fff;
    align-items: center;
}

.credentials-box .section-title {
    color: #fff;
}

.credentials-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.credentials-list li {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cred-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.credentials-list h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.credentials-list p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* About CTA */
.about-cta {
    padding-bottom: 100px;
    background: #fff;
}

.cta-inner {
    background: var(--primary-color);
    padding: 80px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
}

.cta-inner h2 {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.cta-inner p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-inner .btn-primary {
    background: #fff;
    color: var(--primary-color);
    display: inline-flex;
}

/* Mobile Responsive About */
@media (max-width: 992px) {
    .story-flex {
        flex-direction: column;
        text-align: center;
    }
    .story-stats {
        justify-content: center;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .credentials-box {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    .page-title {
        font-size: 42px;
    }
}

/* Final Review & Spacing Polishes */
.reviews-section {
    padding: 60px 0 20px !important;
}

.appointment-section {
    padding: 30px 0 100px !important;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding-bottom: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0; /* Distinct gray */
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

.swipe-indicator {
    text-align: center;
    margin-top: 15px;
}

.swipe-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Mobile Review Limit */
@media (max-width: 768px) {
    .review-card:nth-child(n+11) {
        display: none !important;
    }
}

/* About Page Hero & Header Sync */
.about-page {
    padding-top: 0 !important; /* Allow background to go behind header */
}

.page-header {
    margin-top: 0;
}

/* Values & Clinic Section Re-layout */
.values-clinic-section {
    padding: 100px 0;
    background: #fff;
}

.values-clinic-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.values-content {
    flex: 1;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-icon-small {
    width: 50px;
    height: 50px;
    background: #fff0f5;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.value-text h3 {
    font-size: 20px;
    color: #1a2a47;
    margin-bottom: 5px;
}

.value-text p {
    color: var(--text-light);
    font-size: 15px;
}

.clinic-image-wrapper {
    flex: 1;
    position: relative;
}

.clinic-image-wrapper img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.image-accent-bottom {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-left: 5px solid var(--primary-color);
    border-bottom: 5px solid var(--primary-color);
    border-radius: 0 0 0 20px;
    z-index: -1;
}

/* Themed Credentials Box */
.credentials-box.themed {
    background: var(--primary-color) !important;
    box-shadow: 0 40px 80px rgba(212, 106, 154, 0.2);
}

.credentials-box.themed .section-title {
    color: #fff !important;
}

.credentials-box.themed .cred-icon {
    background: rgba(255, 255, 255, 0.2) !important;
}

.credentials-box.themed h4 {
    color: #fff !important;
}

.credentials-box.themed p {
    color: rgba(255, 255, 255, 0.8) !important;
}

@media (max-width: 992px) {
    .values-clinic-flex {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .value-item {
        flex-direction: column;
        align-items: center;
    }
    
    .page-header {
        height: 500px !important;
        min-height: 500px !important;
        padding-top: 80px !important;
    }
}

/* Clean Framed Layouts (Reduced Pink) */
.clean-framed {
    background: #ffffff !important;
    border: 3px solid var(--primary-color);
    border-radius: 40px;
    padding: 60px !important;
    box-shadow: 0 20px 50px rgba(212, 106, 154, 0.1);
}

.credentials-list-styled {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.credentials-list-styled li {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cred-icon-svg {
    width: 60px;
    height: 60px;
    background: #fff0f5;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.credentials-list-styled h4 {
    font-size: 18px;
    color: #1a2a47;
    margin-bottom: 2px;
}

.credentials-list-styled p {
    font-size: 14px;
    color: var(--text-light);
}

.cta-inner.clean-framed h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .clean-framed {
        padding: 30px !important;
        border-radius: 30px;
    }
}

/* Specific override for Framed Section Titles to ensure visibility */
.clean-framed .section-title {
    color: #1a2a47 !important;
}

.clean-framed .section-tag {
    color: var(--primary-color) !important;
    opacity: 1 !important;
}

/* Subtle Pink Button for About CTA */
.cta-inner.clean-framed .btn-primary {
    background: #fff0f5 !important;
    color: var(--primary-color) !important;
    border: 1px solid rgba(212, 106, 154, 0.2);
}

.cta-inner.clean-framed .btn-primary:hover {
    background: #D4829A !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 130, 154, 0.35);
}

/* Ensure Value Icons are Pink */
.value-icon-small {
    color: var(--primary-color) !important;
}

/* New Full-Width CTA Style */
.about-cta-new {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fff4f8 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-content-wrapper {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-new .section-title {
    font-size: 48px;
    margin-bottom: 25px;
}

.about-cta-new p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.main-cta {
    display: inline-flex !important;
    padding: 18px 45px !important;
    font-size: 18px !important;
    box-shadow: 0 15px 35px rgba(212, 106, 154, 0.2) !important;
}

.cta-bg-shape {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,106,154,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Tighten spacing between Credentials and CTA */
.credentials-section {
    padding-bottom: 40px !important;
}

.about-cta-new {
    padding-top: 60px !important;
}

/* Tighten spacing between Story and Values */
.our-story-section {
    padding-bottom: 40px !important;
}

.values-clinic-section {
    padding-top: 40px !important;
}

/* Tighten spacing between Values and Credentials */
.values-clinic-section {
    padding-bottom: 40px !important;
}

.credentials-section {
    padding-top: 40px !important;
}

/* About Contact Info Section (Image Inspired) */
.about-contact-info {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
    text-align: center;
}

.contact-info-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-title {
    font-size: 42px;
    color: #1a2a47;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 18px;
    color: #5a6a8a;
    margin-bottom: 25px;
}

.contact-cta-text {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-details-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon-circle {
    width: 50px;
    height: 50px;
    background: #fff0f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 106, 154, 0.1);
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
    color: #1a2a47;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 32px;
    }
    .contact-details-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* Premium Services Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-icon {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    margin-top: 10px;
    border: 1px solid rgba(212, 106, 154, 0.05);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    width: 100%;
    height: 20px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: #444 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease;
    border-bottom: none !important;
}

.dropdown-menu li a::after {
    display: none !important; /* Remove the pink bar for dropdown items */
}

.dropdown-menu li a:hover {
    background: #fff0f5;
    color: var(--primary-color) !important;
    padding-left: 30px;
}

/* Mobile Adjustments for Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 15px;
        display: none; /* Controlled by JS toggle */
    }
    
    .has-dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 10px 15px;
        color: #fff !important;
    }
}

/* Fix & Enhance Services Dropdown (Mega-Menu Style) */
.dropdown-menu {
    width: 600px !important; /* Wide enough for 2 columns */
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 clean columns */
    gap: 5px;
    padding: 20px !important;
    left: -150px; /* Center it better under the Services link */
    border-top: 4px solid var(--primary-color); /* Premium accent */
}

.dropdown-menu li {
    display: block !important;
    width: 100% !important;
}

.dropdown-menu li a {
    padding: 12px 15px !important;
    border-radius: 8px;
    white-space: normal !important; /* Allow long titles to wrap nicely */
    line-height: 1.4 !important;
}

.dropdown-menu li a:hover {
    padding-left: 20px !important;
    background: #fff0f5 !important;
    color: var(--primary-color) !important;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .dropdown-menu {
        width: 100% !important;
        grid-template-columns: 1fr; /* 1 column on mobile */
        left: 0;
        padding: 10px !important;
    }
}

/* Bridge the Hover Gap */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px; /* Bridge the 20px gap */
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Card-Style Dropdown Options */
.dropdown-menu {
    padding: 25px !important;
    gap: 15px !important;
    border: none !important; /* Remove the top border for a cleaner look */
    background: #fdfdfd !important;
}

.dropdown-menu li a {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px !important;
    padding: 15px 20px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    display: flex !important;
    align-items: center;
    gap: 12px;
}

.dropdown-menu li a::before {
    content: '•';
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
}

.dropdown-menu li a:hover {
    background: #fff !important;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(212, 106, 154, 0.1) !important;
    transform: translateY(-3px);
    padding-left: 20px !important; /* Keep padding stable */
}

.dropdown-menu li a span {
    color: #1a2a47;
    font-weight: 600;
}

/* Premium Pink Dark Shadow for Dropdown Cards */
.dropdown-menu li a {
    box-shadow: 0 4px 15px rgba(212, 106, 154, 0.15) !important;
    transition: all 0.4s ease !important;
}

.dropdown-menu li a:hover {
    box-shadow: 0 10px 25px rgba(212, 106, 154, 0.35) !important;
    transform: translateY(-4px) !important;
    border-color: var(--primary-color) !important;
}

/* Service Detail Page Styling */
.service-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #fff 0%, #fff4f8 100%);
    text-align: center;
}

.service-hero .service-title {
    font-size: 56px;
    font-family: 'Playfair Display', serif;
    color: #1a2a47;
    margin: 20px 0;
}

.service-hero .service-intro-text {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: #5a6a8a;
    line-height: 1.6;
}

.sub-services-section {
    padding: 100px 0;
    background: #fff;
}

.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.sub-service-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 25px rgba(212, 106, 154, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sub-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 106, 154, 0.15);
    border-color: var(--primary-color);
}

.sub-service-icon {
    width: 50px;
    height: 50px;
    background: #fff0f5;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sub-service-card h3 {
    font-size: 18px;
    color: #1a2a47;
    line-height: 1.4;
}

.service-cta {
    padding: 80px 0;
    background: #fdfdfd;
}

.cta-card.framed {
    background: #fff;
    border: 3px solid var(--primary-color);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-card.framed h2 {
    font-size: 36px;
    color: #1a2a47;
    margin-bottom: 10px;
}

.cta-card.framed p {
    color: var(--text-light);
    font-size: 18px;
}

@media (max-width: 992px) {
    .sub-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-card.framed {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .sub-services-grid {
        grid-template-columns: 1fr;
    }
    .service-hero .service-title {
        font-size: 40px;
    }
}

/* Split Hero Design for Service Detail */
.service-hero-split {
    padding: 180px 0 100px;
    background: #fff;
    overflow: hidden;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.service-hero-split .service-title {
    font-size: 56px;
    font-family: 'Playfair Display', serif;
    color: #1a2a47;
    margin: 20px 0;
    line-height: 1.1;
}

.hero-image-wrapper {
    flex: 1;
}

.hero-image-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(212, 106, 154, 0.15);
}

.hero-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(212, 106, 154, 0.2), rgba(212, 106, 154, 0.05));
    mix-blend-mode: multiply;
}

/* Active State for Dropdown Items */
.dropdown-menu li a.active-sub {
    background: #fff0f5 !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    font-weight: 700 !important;
    box-shadow: 0 5px 15px rgba(212, 106, 154, 0.2) !important;
}

@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-image-container img {
        height: 350px;
    }
    .service-hero-split {
        padding: 140px 0 60px;
    }
}

/* Full-Width Background Hero for Service Detail */
.service-hero-bg {
    height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Space for header */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 42, 71, 0.7) 0%, rgba(212, 106, 154, 0.6) 100%);
    z-index: 1;
}

.hero-content-over {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.section-tag-white {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(5px);
}

.service-title-white {
    font-size: 64px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin: 25px 0;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service-intro-white {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.breadcrumb-white {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-white a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.breadcrumb-white a:hover {
    border-color: #fff;
}

@media (max-width: 768px) {
    .service-hero-bg {
        height: 500px;
        text-align: center;
    }
    .hero-content-over {
        margin: 0 auto;
    }
    .service-title-white {
        font-size: 42px;
    }
}

/* Force Solid Header for Service Pages */
header.solid-header {
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    position: fixed !important;
}

header.solid-header .logo-text span, 
header.solid-header nav ul li a {
    color: #1a2a47 !important;
}

header.solid-header .dropdown-icon {
    border-top-color: #1a2a47 !important;
}

/* Ensure Unified Hero Height */
.service-hero-bg {
    height: 650px !important; /* Fixed height for consistency */
    min-height: 650px !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Fix Active Services Text Color in Header */
header.solid-header nav ul li a.dropdown-trigger.active {
    color: var(--primary-color) !important;
}

header.solid-header nav ul li a.dropdown-trigger.active::after {
    width: 100% !important;
    background: var(--primary-color) !important;
}

/* Ensure Dropdown Icon also turns pink when active */
header.solid-header nav ul li a.dropdown-trigger.active .dropdown-icon {
    border-top-color: var(--primary-color) !important;
}

/* Premium Sub-Service Card Styling */
.sub-service-card-premium {
    background: #ffffff;
    border-radius: 25px;
    padding: 35px;
    border: 1px solid rgba(212, 106, 154, 0.1);
    box-shadow: 0 10px 30px rgba(212, 106, 154, 0.12), 
                0 4px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.sub-service-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(212, 106, 154, 0.25), 
                0 10px 20px rgba(212, 106, 154, 0.1);
    border-color: var(--primary-color);
}

.sub-service-icon-box {
    width: 60px;
    height: 60px;
    background: #fff0f5;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.sub-service-card-premium:hover .sub-service-icon-box {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.sub-service-card-premium h3 {
    font-size: 22px;
    color: #1a2a47;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.sub-service-card-premium p {
    font-size: 15px;
    color: #5a6a8a;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sub-service-card-premium {
        padding: 25px;
    }
}

/* Patient Guide Page Styles */
.patient-guide-page {
    background-color: #fffafa;
}

.patient-guide-page .page-header {
    background: linear-gradient(rgba(255, 241, 245, 0.75), rgba(255, 241, 245, 0.45)), url('patientguide.png');
    background-size: cover;
    background-position: center;
    height: 650px !important;
    min-height: 650px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    padding-top: 100px !important;
    box-sizing: border-box !important;
}

@media (max-width: 992px) {
    .patient-guide-page .page-header {
        height: 500px !important;
        min-height: 500px !important;
        padding-top: 80px !important;
    }
}

@media (max-width: 768px) {
    .patient-guide-page .page-header {
        height: auto !important;
        min-height: 380px !important;
        padding: 120px 20px 60px !important;
    }
}

.timeline-section {
    padding: 100px 0;
    background-color: #fff;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, rgba(212, 106, 154, 0.1) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
    padding-right: 50px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-right: 0;
    padding-left: 50px;
}

.timeline-badge {
    position: absolute;
    top: 15px;
    right: -25px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px rgba(212, 106, 154, 0.2);
    z-index: 10;
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -25px;
    right: auto;
}

.timeline-content-card {
    background: #fff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(212, 106, 154, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 106, 154, 0.12);
    border-color: var(--primary-color);
}

.card-icon-circle-pink {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff0f5;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.timeline-content-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a2a47;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.timeline-content-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
        transform: none;
    }
    
    .timeline-item {
        width: 100%;
        padding-right: 0;
        padding-left: 50px;
        margin-bottom: 40px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-badge {
        left: -5px;
        right: auto;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .timeline-item:nth-child(even) .timeline-badge {
        left: -5px;
    }
}

/* FAQ Accordion Styling */
.faq-section {
    padding: 100px 0;
    background-color: #fffbfb;
}

.faq-flex-layout {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-intro-sidebar {
    flex: 1;
    max-width: 400px;
}

.faq-sidebar-text {
    color: var(--text-light);
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.faq-accordion-wrapper {
    flex: 1.5;
}

.accordion-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(212, 106, 154, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 12px 40px rgba(212, 106, 154, 0.06);
}

.accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 15px 45px rgba(212, 106, 154, 0.08);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a2a47;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.accordion-trigger span {
    pointer-events: none;
}

.accordion-item:hover .accordion-trigger {
    color: var(--primary-color);
}

.accordion-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff0f5;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.accordion-icon-box::before,
.accordion-icon-box::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Horizontal line */
.accordion-icon-box::before {
    width: 12px;
    height: 2px;
}

/* Vertical line */
.accordion-icon-box::after {
    width: 2px;
    height: 12px;
}

.accordion-item.active .accordion-icon-box {
    background: var(--primary-color);
    transform: rotate(45deg);
}

.accordion-item.active .accordion-icon-box::before,
.accordion-item.active .accordion-icon-box::after {
    background: #fff;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-content {
    padding: 0 30px 24px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.panel-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.panel-content a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .faq-flex-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .faq-intro-sidebar {
        max-width: 100%;
        text-align: center;
    }
}

/* Billing & Insurance Styling */
.billing-insurance-section {
    padding: 100px 0;
    background-color: #fff;
}

.billing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.billing-card {
    background: #fffbfb;
    border-radius: 35px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(212, 106, 154, 0.03);
    border: 1px solid rgba(212, 106, 154, 0.05);
    transition: all 0.3s ease;
}

.billing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(212, 106, 154, 0.1);
    border-color: var(--primary-color);
}

.billing-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.billing-icon-box {
    width: 60px;
    height: 60px;
    background: #fff0f5;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
}

.billing-header h3 {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: #1a2a47;
}

.billing-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.billing-list {
    list-style: none;
}

.billing-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.billing-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
}

@media (max-width: 768px) {
    .billing-grid {
        grid-template-columns: 1fr;
    }
}

/* Clinic Guidelines & Policies */
.policies-section {
    padding: 80px 0;
    background: #fffbfb;
}

.policies-box {
    background: #fff;
    padding: 60px 40px;
    border-radius: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
}

.policies-flex-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.policy-item-premium {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid rgba(212, 106, 154, 0.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.01);
    transition: all 0.3s ease;
}

.policy-item-premium:hover {
    box-shadow: 0 12px 40px rgba(212, 106, 154, 0.06);
    border-color: var(--primary-color);
}

.policy-item-premium h4 {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: #1a2a47;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-item-premium p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .policies-flex-row {
        flex-direction: column;
        gap: 30px;
    }
}

/* Downloads Section */
.downloads-section {
    padding: 100px 0;
    background: #fff;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.download-card {
    background: #fff;
    border-radius: 30px;
    padding: 35px 30px;
    border: 1px solid rgba(212, 106, 154, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 106, 154, 0.08);
    border-color: var(--primary-color);
}

.download-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: #fff0f5;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.download-info {
    margin-bottom: 30px;
    flex-grow: 1;
}

.download-info h3 {
    font-size: 18px;
    color: #1a2a47;
    margin-bottom: 10px;
    font-weight: 600;
}

.download-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.file-meta {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.btn-download {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff0f5;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    cursor: pointer;
}

.download-card:hover .btn-download {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .downloads-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .downloads-grid {
        grid-template-columns: 1fr;
    }
}

/* Add vertical breathing room to header */
.header-container {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

/* --- Blog Section (Homepage) --- */
.latest-blogs-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}
.blogs-header {
    text-align: center;
    margin-bottom: 60px;
}
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 106, 154, 0.15);
}
.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}
.blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #fff;
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.blog-content {
    padding: 30px;
}
.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}
.blog-title a {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.blog-title a:hover {
    color: var(--primary-color);
}
.blog-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}
.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.read-more-link:hover {
    transform: translateX(5px);
}
.view-all-blogs {
    text-align: center;
    margin-top: 50px;
}

.view-all-blogs .btn-primary {
    display: inline-flex;
    width: auto;
}

/* Page Hero */
.contact-page .page-hero-bg, .book-appointment-page .page-hero-bg {
    background-image: linear-gradient(135deg, #fff1f5 0%, #ffe4ec 100%);
}

/* Mobile Header Toggles & Drawer Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Mobile Drawer Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer Container */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 20px;
}

.mobile-menu-drawer.active {
    right: 0;
}

/* Drawer Header */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 106, 154, 0.08);
    margin-bottom: 20px;
}

.drawer-logo .logo-img {
    height: 65px !important;
    width: auto;
}

.close-drawer {
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: transform 0.3s ease;
}

.close-drawer:hover {
    transform: rotate(90deg);
}

/* Drawer Body & Action Button */
.drawer-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

.drawer-action {
    margin-bottom: 25px;
}

.drawer-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(212, 106, 154, 0.2);
}

.drawer-book-btn:hover {
    background-color: #D4829A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 130, 154, 0.35);
}

/* Drawer Navigation List */
.drawer-nav {
    display: block !important;
}

.drawer-nav ul {
    list-style: none;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 0 !important;
}

.drawer-nav ul li {
    width: 100%;
    margin: 0 !important;
}

.drawer-nav ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #1a2a47;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s;
}

.drawer-nav ul li a:hover,
.drawer-nav ul li a.active-drawer-link {
    background-color: #fff1f5;
    color: var(--primary-color);
}

/* Accordion for Dropdowns inside Drawer */
.drawer-dropdown-trigger .arrow-icon {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.drawer-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fffcfd;
    border-radius: 8px;
    margin-top: 5px;
    padding-left: 15px !important;
    display: flex !important;
    flex-direction: column;
    gap: 5px;
}

.drawer-dropdown-menu li a {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #5a6a8a !important;
    padding: 10px 15px !important;
}

.drawer-dropdown-menu li a:hover {
    background-color: #fff0f5 !important;
    color: var(--primary-color) !important;
}

/* Media Query to show hamburger icon and hide desktop navigation */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
    }
    
    header .book-btn,
    header .header-whatsapp-btn {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 52px !important; /* Larger logo on mobile view header */
    }
}

/* WhatsApp Header Button Styling */
.header-whatsapp-btn {
    background-color: #25D366;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

.header-whatsapp-btn:hover {
    background-color: #D4829A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 130, 154, 0.35);
}

/* WhatsApp Drawer Button Styling */
.drawer-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #25D366;
    color: #fff;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.drawer-whatsapp-btn:hover {
    background-color: #D4829A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 130, 154, 0.35);
}

/* Hero Section Buttons Styling */
.btn-hero-call,
.btn-hero-wa,
.btn-hero-book {
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-hero-call {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-hero-call:hover {
    background-color: #D4829A;
    color: #fff;
    border-color: #D4829A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 130, 154, 0.35);
}

.btn-hero-wa {
    background-color: #25D366;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-hero-wa:hover {
    background-color: #D4829A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 130, 154, 0.35);
}

.btn-hero-book {
    padding: 14px 22px !important;
    font-size: 15px !important;
}

@media (max-width: 768px) {
    .hero-btns {
        flex-wrap: wrap;
    }
    .btn-hero-call, .btn-hero-wa, .btn-hero-book {
        width: 100% !important;
        justify-content: center !important;
    }
    .btn-hero-call {
        background-color: var(--primary-color) !important;
        color: #fff !important;
        border-color: var(--primary-color) !important;
    }
}

/* Why Choose Us Custom Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.why-choose-card {
    background: #fbf2f5;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 106, 154, 0.08);
    transition: all 0.3s ease;
}
.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 106, 154, 0.15);
}
.why-choose-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.why-choose-card h3 {
    font-size: 22px;
    color: #1a2a47;
    margin-bottom: 15px;
}
.why-choose-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}
