/* PRODENT Custom Stylesheet - Teal Breeze & Luxury Gold */

/* CSS Variables & Design Tokens */
:root {
    --primary-color: #0b5e94;
    --primary-hover: #074a75;
    --secondary-color: #0ea5e9;
    --accent-color: #06b6d4;
    --accent-gold: #d97706;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-premium: 0 20px 40px -15px rgba(15, 76, 129, 0.15);
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.w-full { width: 100%; }
.mt-4 { margin-top: 1.5rem; }
.d-block { display: block; }
.font-xs { font-size: 0.75rem; }
.font-sm { font-size: 0.875rem; }
.text-danger { color: #ef4444; }
.text-orange { color: #f97316; }

/* Section Styling */
section {
    padding: 100px 0;
}

.section-tagline {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-title.text-white {
    color: var(--bg-white);
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 60px auto;
    color: var(--text-muted);
}

/* Button Custom Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(11, 94, 148, 0.4);
}

.btn-primary:hover:not(:disabled) {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 94, 148, 0.5);
}

.btn-primary:disabled {
    background-color: var(--border-color);
    color: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(11, 94, 148, 0.05);
    transform: translateY(-2px);
}

.icon-right {
    margin-left: 8px;
}

.icon-left {
    margin-right: 8px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-smooth);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-img {
    height: 48px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-appointment-nav {
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 10px 20px !important;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(11, 94, 148, 0.2);
}

.btn-appointment-nav::after {
    display: none;
}

.btn-appointment-nav:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 40%),
                radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.05), transparent 45%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.badge {
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-rating {
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--accent-gold);
}

.badge-women {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.star-gold { color: #f59e0b; }
.heart-purple { color: #a78bfa; }

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.accent-text {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Carousel */
.hero-gallery {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    aspect-ratio: 4 / 5;
    background-color: #e2e8f0;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    color: var(--bg-white);
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 10;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

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

.carousel-indicators {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background-color: var(--bg-white);
    transform: scale(1.2);
}

.fade {
    animation-name: fadeAnimation;
    animation-duration: 0.8s;
}

@keyframes fadeAnimation {
    from { opacity: 0.4 }
    to { opacity: 1 }
}

/* Quick Info Banner */
.quick-info-section {
    padding: 40px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--primary-color);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 2px 4px -1px rgba(0,0,0,0.01);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(14, 165, 233, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(14, 165, 233, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* About Us / Doctor Profile Section */
.about-section {
    background-color: var(--bg-white);
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    padding-bottom: 40px;
}

.image-frame-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-doctor-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.small-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.badge-num {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.badge-txt {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.doctor-action-frame {
    position: absolute;
    width: 180px;
    aspect-ratio: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 6px solid var(--bg-white);
    box-shadow: var(--shadow-lg);
    bottom: -20px;
    right: -20px;
    z-index: 5;
}

.sec-doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.doctor-credentials {
    color: var(--secondary-color);
    font-size: 1.15rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-para {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.qualifications-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.qual-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.qual-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 4px;
}

.qual-item strong {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #0f172a;
}

.qual-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.certificate-wall-showcase {
    margin-top: 36px;
}

.certificate-wall-showcase h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.certificate-thumbnail-container {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.cert-img-preview {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 94, 148, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--bg-white);
    opacity: 0;
    transition: var(--transition-smooth);
}

.cert-overlay i {
    font-size: 1.5rem;
}

.cert-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.certificate-thumbnail-container:hover .cert-overlay {
    opacity: 1;
}

.certificate-thumbnail-container:hover .cert-img-preview {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-light);
}

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

.gallery-item-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
}

.gallery-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
    color: var(--bg-white);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-hover-content h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-hover-content p {
    font-size: 0.85rem;
    opacity: 0.85;
}

.gallery-item-card:hover img {
    transform: scale(1.08);
}

.gallery-item-card:hover .gallery-hover-content {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-white);
}

.testimonials-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.testimonials-header-block {
    text-align: left;
}

.testimonials-header-block .section-subtitle {
    margin: 0 0 30px 0;
}

.google-rating-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.rating-badge-top {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.rating-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    background-color: var(--bg-white);
    padding: 4px;
}

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

.stars-outer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stars-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.stars-icons {
    color: #f59e0b;
    font-size: 1.1rem;
    display: flex;
    gap: 2px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.maps-links-group {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.maps-info-thumb {
    width: 100%;
    height: 48px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.btn-sm-map {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-align: center;
}

.btn-sm-map:hover {
    background-color: var(--primary-hover);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 30px;
    border: 1px solid rgba(226, 232, 240, 0.7);
    transition: var(--transition-smooth);
}

.review-card:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-premium);
    transform: translateX(6px);
}

.review-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(14, 165, 233, 0.15);
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.reviewer-name {
    font-size: 1rem;
    line-height: 1.2;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    font-style: italic;
}

/* Appointment / Booking Form Section */
.booking-section {
    background-color: #0b1e36;
    color: var(--bg-white);
}

.booking-grid-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: flex-start;
}

.text-light-blue {
    color: #93c5fd;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

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

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(14, 165, 233, 0.2);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    color: var(--bg-white);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-link {
    color: #38bdf8;
    font-weight: 600;
}

.text-white-soft {
    color: #cbd5e1;
    font-size: 0.925rem;
}

.map-container-mock {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.9);
}

.map-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.map-overlay-btn:hover {
    background-color: var(--primary-hover);
}

/* Wizard Booking Card */
.booking-form-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 44px;
    color: var(--text-main);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.booking-form-card h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: #0f172a;
}

.wizard-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 36px;
    position: relative;
}

.wizard-steps-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: relative;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.step-dot.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 0 0 6px rgba(11, 94, 148, 0.15);
}

.step-dot.completed {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.dot-label {
    position: absolute;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    white-space: nowrap;
    color: var(--text-muted);
    font-weight: 600;
}

.step-dot.active .dot-label {
    color: var(--primary-color);
}

.wizard-step-content {
    display: none;
}

.wizard-step-content.active {
    display: block;
    animation: slideInForm 0.3s ease;
}

@keyframes slideInForm {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: #0f172a;
}

.service-selector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.service-select-card {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-fast);
    text-align: center;
}

.service-select-card i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.service-select-card:hover {
    border-color: var(--secondary-color);
    background-color: rgba(14, 165, 233, 0.02);
}

.service-select-card.active {
    border-color: var(--primary-color);
    background-color: rgba(11, 94, 148, 0.05);
}

.service-select-card.active i {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 24px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 94, 148, 0.1);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.time-slot {
    border: 1px solid var(--border-color);
    padding: 10px 4px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.time-slot:hover {
    border-color: var(--secondary-color);
    background-color: rgba(14, 165, 233, 0.02);
}

.time-slot.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-group-wizard {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 16px;
}

.btn-group-wizard .btn {
    flex: 1;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-dialog {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    line-height: 0.5;
    color: var(--text-muted);
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.modal-body {
    max-height: 450px;
    overflow-y: auto;
}

.modal-cert-img {
    width: 100%;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

/* Success Modal Details */
.success-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px auto;
}

.booking-summary-box {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin: 24px 0;
    border: 1px solid var(--border-color);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    font-size: 0.925rem;
}

.summary-line:last-child {
    border-bottom: none;
}

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

/* Footer styling */
.footer {
    background-color: #08111e;
    color: #cbd5e1;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin: 20px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-logo {
    height: 48px;
    object-fit: contain;
    filter: brightness(1.2);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--bg-white);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
}

.footer h3 {
    color: var(--bg-white);
    font-size: 1.15rem;
    margin-bottom: 24px;
}

.footer-links ul, .footer-treatments ul {
    list-style: none;
}

.footer-links li, .footer-treatments li {
    margin-bottom: 12px;
}

.footer-links a, .footer-treatments a {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-links a:hover, .footer-treatments a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact p i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.direction-link-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255,255,255,0.05);
    color: var(--bg-white);
    padding: 10px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 12px;
}

.direction-link-footer:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
    font-size: 0.85rem;
    color: #64748b;
}

/* FAQ Section Styles */
.faq-section {
    background-color: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
    font-family: var(--font-heading);
    margin: 0;
    padding-right: 20px;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition-smooth);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(11, 94, 148, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 30px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-bottom: 24px;
}

/* Active FAQ Item State */
.faq-item.active {
    border-color: rgba(14, 165, 233, 0.3);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-premium);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* arbitrary height to slide down */
    padding: 0 30px;
}

/* Blog Section Styles */
.blog-section {
    background-color: var(--bg-light);
}

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

.blog-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(14, 165, 233, 0.25);
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-author {
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-read-more:hover {
    color: var(--secondary-color);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    section { padding: 80px 0; }
    .hero-container { gap: 40px; }
    .hero-title { font-size: 2.75rem; }
    .about-container { gap: 40px; }
    .testimonials-container { gap: 40px; }
    .booking-grid-layout { gap: 40px; }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    
    .badge-row { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-gallery { width: 100%; max-width: 480px; aspect-ratio: 4/5; }
    
    .info-grid { grid-template-columns: 1fr; gap: 24px; }
    
    .services-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    
    .about-container { grid-template-columns: 1fr; gap: 60px; }
    .about-images { max-width: 450px; margin: 0 auto; width: 100%; }
    
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    
    .testimonials-container { grid-template-columns: 1fr; gap: 50px; }
    .testimonials-header-block { text-align: center; }
    .google-rating-card { max-width: 450px; margin: 0 auto; }
    
    .booking-grid-layout { grid-template-columns: 1fr; }
    .booking-info-block { text-align: center; }
    .contact-details-list { align-items: center; }
    .contact-detail-item { text-align: left; }
    .map-container-mock { max-width: 450px; margin: 0 auto; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 24px;
        padding: 40px;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .btn-appointment-nav {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.25rem; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .booking-form-card { padding: 24px; }
    .service-selector-grid { grid-template-columns: 1fr; }
    .time-slots-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-dialog { padding: 20px; }
}
