:root {
    /* Brand Colors derived from Logo (Green, Teal, Purple) + Skin Tones */
    --color-primary: #855BA2;
    /* Deep Purple */
    --color-primary-light: #9B76B5;
    --color-secondary: #00877C;
    /* Teal */
    --color-accent: #65AD4E;
    /* Leaf Green */

    /* Skin Tones for warmth and dermatology feel */
    --color-bg-light: #FFFBF9;
    --color-bg-white: #FFFFFF;
    --color-surface: #F9EFEA;

    /* Text */
    --color-text-main: #2D3748;
    --color-text-muted: #4A5568;
    --color-text-light: #F7FAFC;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Utilities */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    /* Enhanced Depth Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.04);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.03);

    --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-text-main);
}

body {
    background-color: var(--color-bg-light);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text-main);
    letter-spacing: -0.015em;
}

h1 {
    font-size: clamp(2rem, 3.5vw + 1rem, 2.75rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 2.5vw + 1rem, 2.25rem);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 65ch;
    line-height: 1.7;
}

.text-sm {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

.text-xs {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background: linear-gradient(to bottom, var(--color-bg-white), var(--color-bg-light));
}

.bg-accent {
    background-color: var(--color-primary);
}

.text-white,
.text-white h2,
.text-white p {
    color: var(--color-text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(37, 211, 102, 0.3);
}

.btn-shadow {
    box-shadow: var(--shadow-md);
}

.btn-shadow:hover {
    box-shadow: var(--shadow-lg);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 1.25rem 0;
    transition: var(--transition);
}

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

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1px;
}

.logo-subtext {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-main);
    letter-spacing: 2px;
}

.header-contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-phone,
.header-whatsapp {
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-main);
    transition: var(--transition);
}

.header-phone:hover {
    color: var(--color-primary);
}

.header-whatsapp:hover {
    color: #25D366;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    /* Neater, tighter spacing */
    background: linear-gradient(105deg, rgba(255, 251, 249, 0.98) 0%, rgba(249, 239, 234, 0.9) 60%, transparent 100%), url('assets/hero-bg.png') center/cover no-repeat;
    background-position: right center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 70vh;
    /* Reduced from 80vh */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    /* Tighter gap */
    align-items: center;
}

.hero-content {
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more solid for neatness */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    /* Tighter internal padding */
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
}

.hero-image-wrapper {
    position: relative;
    z-index: 5;
    max-width: 380px;
    /* Constrain image to prevent massive vertical height */
    justify-self: center;
    /* Center horizontally in the grid column */
    transform: perspective(1000px) rotateY(-3deg);
    /* Subtler perspective */
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.03);
}

.hero-doctor-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-icon {
    font-size: 1.5rem;
    background: var(--color-surface);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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

.floating-text strong {
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.floating-text span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.authority-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 10px rgba(133, 91, 162, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-desc {
    font-size: 1.05rem;
    /* More compact body text */
    margin: 0.75rem 0 1.25rem;
    max-width: 600px;
    color: var(--color-text-main);
    font-weight: 400;
    line-height: 1.6;
}

.hero-benefits {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    /* Neat and compact */
    color: var(--color-text-main);
    font-weight: 500;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-accent);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Make buttons a bit tighter */
.btn-large {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.trust-indicators {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
}

.trust-text {
    color: var(--color-text-main);
    font-size: 0.9rem;
    margin-top: 0;
}

.trust-text strong {
    color: var(--color-primary);
}

.stars {
    color: #F59E0B;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* Mouse Interactions EVERYWHERE */
.interactive {
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.interactive:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 25px rgba(133, 91, 162, 0.15) !important;
    border-color: rgba(133, 91, 162, 0.3);
}

/* Make major cards interactive natively */
.service-card,
.review-card,
.info-card,
.gallery-placeholder,
.gallery-item {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease !important;
    cursor: pointer;
}

.service-card:hover,
.review-card:hover,
.gallery-item:hover,
.info-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 0 30px rgba(133, 91, 162, 0.1) !important;
    /* Soft purple glow */
}

/* Subtle image scale interactions */
.gallery-item:hover .gallery-placeholder {
    transform: scale(1.04);
}

/* Form interactions */
input,
select,
textarea {
    transition: all 0.3s ease;
}

input:hover,
select:hover,
textarea:hover {
    background-color: var(--color-bg-white) !important;
    border-color: rgba(133, 91, 162, 0.3) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}

/* Link underline interactions */
.nav-links a {
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Doctor Profile */
.doctor-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.doctor-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1200px) rotateY(4deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
}

.doctor-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.doctor-image-wrapper:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.03);
    box-shadow: 0 35px 65px rgba(0, 0, 0, 0.15);
}

.doctor-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.doctor-creds {
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.doctor-highlights {
    margin-top: 2rem;
}

.doctor-highlights li {
    margin-bottom: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-main);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--color-bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: inline-block;
    padding: 1rem;
    background: var(--color-surface);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-inner);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.service-list li:last-child {
    border-bottom: none;
}

/* Hair Regrowth Offer Section */
.offer-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.offer-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
}

.offer-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    display: block;
    object-fit: cover;
}

.offer-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #A80038, #E02058);
    /* Deep red/pink from the image */
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(168, 0, 56, 0.3);
    border: 4px solid white;
    z-index: 10;
    transform: rotate(15deg);
}

.offer-badge span:first-child {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.offer-badge span:last-child {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.offer-subtitle {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.offer-details {
    padding: 2.5rem;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    background: var(--color-surface);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.offer-features strong {
    display: block;
    font-size: 1.15rem;
    color: var(--color-text-main);
    margin-bottom: 0.25rem;
}

.offer-features span {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Premium Treatment Showcase */
.showcase {
    background: radial-gradient(circle at top right, rgba(235, 219, 210, 0.4) 0%, rgba(255, 251, 249, 1) 60%);
    position: relative;
    overflow: hidden;
}

.showcase-tabs-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.showcase-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.showcase-tabs {
    position: relative;
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.4rem;
    border-radius: 50px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.03), 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.showcase-tab {
    background: transparent;
    border: none;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 2;
    position: relative;
}

.showcase-tab:hover {
    color: var(--color-primary);
}

.showcase-tab.active {
    color: var(--color-bg-white);
    font-weight: 600;
}

.tab-indicator {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    height: calc(100% - 0.8rem);
    background: linear-gradient(135deg, var(--color-primary), #4D3360);
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(133, 91, 162, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    width: 0;
    /* Updated via JS */
}

/* Panels */
.showcase-panel {
    display: none;
    animation: fadeInScale 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.showcase-panel.active {
    display: block;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.98) translateY(15px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-left {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 0 40px rgba(133, 91, 162, 0.05);
    aspect-ratio: 1/1;
    transform: perspective(1000px);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-left:hover {
    transform: perspective(1000px) scale(1.03);
}

.showcase-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.image-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.15);
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.showcase-right {
    padding-right: 2rem;
    text-align: left;
}

.luxury-badge {
    display: inline-flex;
    padding: 0.4rem 1.25rem;
    background: rgba(133, 91, 162, 0.08);
    color: var(--color-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(133, 91, 162, 0.15);
}

.showcase-right h3 {
    font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.showcase-divider {
    height: 2px;
    width: 50px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.showcase-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
}

.showcase-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    opacity: 0;
    transform: translateY(15px);
}

.showcase-panel.active .showcase-bullets li {
    animation: bulletFade 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.showcase-panel.active .showcase-bullets li:nth-child(1) {
    animation-delay: 0.15s;
}

.showcase-panel.active .showcase-bullets li:nth-child(2) {
    animation-delay: 0.3s;
}

.showcase-panel.active .showcase-bullets li:nth-child(3) {
    animation-delay: 0.45s;
}

.showcase-panel.active .showcase-bullets li:nth-child(4) {
    animation-delay: 0.6s;
}

.showcase-panel.active .showcase-bullets li:nth-child(5) {
    animation-delay: 0.75s;
}

@keyframes bulletFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-bullets li::before {
    content: '✧';
    color: var(--color-secondary);
    font-size: 1.25rem;
    line-height: 1.1;
}

/* Reviews */
.section-title {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--color-bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: left;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-size: 4rem;
    color: var(--color-surface);
    position: absolute;
    top: -0.25rem;
    left: 1rem;
    line-height: 1;
    font-family: Georgia, serif;
    z-index: 0;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.review-card:hover .quote-icon {
    transform: translateY(-5px) rotate(5deg);
}

.review-text {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-primary);
}

.stars-small {
    color: #F59E0B;
    font-size: 1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding: 1rem;
}

.gallery-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, rgba(200, 180, 170, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 1.125rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-inner);
    border: none;
    overflow: hidden;
}

.gallery-caption {
    margin-top: 1rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 0;
    text-align: center;
}

/* Contact Layout Update */
.contact-container {
    max-width: 1200px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
}

.box-shadow-premium {
    background: var(--color-bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Trust Counters Strip */
.trust-counter-strip {
    background: linear-gradient(135deg, var(--color-primary), #4D3360);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.trust-counter-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* FAQ Accordion Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--color-bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-main);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s 0.2s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .trust-counter-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 1rem;
    }

    .counter-item:not(:last-child)::after {
        display: none;
    }
}

/* Contact Overlays */
.contact {
    background: linear-gradient(135deg, var(--color-primary) 0%, #4D3360 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.text-dark {
    color: var(--color-text-main);
}

.text-muted {
    color: var(--color-text-muted);
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.text-light-opacity {
    color: rgba(255, 255, 255, 0.8);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--color-bg-light);
    box-shadow: var(--shadow-inner);
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-bg-white) !important;
    box-shadow: 0 0 0 4px rgba(133, 91, 162, 0.15), var(--shadow-inner) !important;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Info Cards */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.15);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

/* Map specific interactiveness */
iframe {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

iframe:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.info-content h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4), 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.1) rotate(-10deg);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5), 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Overrides */
@media (max-width: 900px) {

    .contact-grid,
    .offer-container {
        grid-template-columns: 1fr;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-image-wrapper {
        display: none;
        /* Hide on mobile to save space */
    }

    .hero {
        background-position: center;
    }
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: var(--color-text-main);
    color: var(--color-text-light);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpAnim 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes slideUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .header-contact-info .header-phone,
    .d-none-mobile {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .doctor-container {
        grid-template-columns: 1fr;
    }

    .doctor-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        gap: 2rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .showcase-right {
        padding-right: 0;
    }

    .showcase-tabs-wrapper {
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}