@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Premium Dark & Gold Palette */
    --primary: #C9A96E;
    --primary-dark: #A88B56;
    --primary-light: rgba(201, 169, 110, 0.12);
    --primary-glow: rgba(201, 169, 110, 0.25);
    --secondary: #FFFFFF;
    --bg-dark: #0A0A0A;
    --bg-section: #111111;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --text-primary: #F5F0E8;
    --text-secondary: rgba(245, 240, 232, 0.7);
    --text-muted: rgba(245, 240, 232, 0.45);
    --accent-gradient: linear-gradient(135deg, #C9A96E 0%, #E8D5A3 50%, #C9A96E 100%);
    --accent-gradient-hover: linear-gradient(135deg, #E8D5A3 0%, #C9A96E 100%);
    --glass-bg: rgba(26, 26, 26, 0.65);
    --glass-border: rgba(201, 169, 110, 0.15);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 16px 48px rgba(201, 169, 110, 0.12);
    --shadow-gold: 0 0 40px rgba(201, 169, 110, 0.08);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    --nav-height: 160px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul { list-style: none; }

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-padding {
    padding: 120px 0;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-dark);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 169, 110, 0.35);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.2);
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-text:hover {
    gap: 14px;
    color: #E8D5A3;
}

.btn-full {
    width: 100%;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

/* Dividers */
.gold-line {
    width: 60px;
    height: 2px;
    background: var(--accent-gradient);
    margin: 0 auto 24px;
    border-radius: 2px;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 12px;
    display: block;
}

.section-header {
    margin-bottom: 72px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    height: 90px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-logo img {
    height: auto;
    max-height: 140px;
    max-width: 560px;
    object-fit: contain;
    filter: brightness(1.05) contrast(1.05);
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: left center;
}

.navbar.scrolled .nav-logo img {
    max-height: 60px;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
}

.nav-logo:hover::after {
    opacity: 1;
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: width 0.4s ease;
}

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

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

.nav-btn {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Layout Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.align-center { align-items: center; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 110, 0.3);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 16px 22px;
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: rgba(26, 26, 26, 0.6);
    color: var(--text-primary);
}

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

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
    background: rgba(26, 26, 26, 0.9);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A96E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

select.form-control option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-control.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-color: var(--bg-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-carousel {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.85) 100%),
        url('../assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.slide-bg-2 {
    background-image: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.85) 100%),
        url('../assets/images/hero_2.png');
}

.slide-bg-3 {
    background-image: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.85) 100%),
        url('../assets/images/hero_1.png');
}

.slide-content {
    position: relative;
    z-index: 5;
}

.hero-text {
    max-width: 720px;
    padding-top: var(--nav-height);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 28px;
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    font-weight: 700;
}

.hero-title .gold {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 44px;
    max-width: 520px;
    line-height: 1.8;
}

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

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-control:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(201, 169, 110, 0.3);
}

.carousel-control.prev { left: 32px; }
.carousel-control.next { right: 32px; }

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

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.25);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.indicator.active {
    background: var(--primary);
    width: 36px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(201, 169, 110, 0.4);
}

/* Floating Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.3;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(201, 169, 110, 0.08);
    top: 15%;
    right: 5%;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(201, 169, 110, 0.05);
    bottom: 10%;
    left: 15%;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: rgba(201, 169, 110, 0.06);
    top: 45%;
    right: 30%;
}

/* ============================================
   SPECIALIZATIONS RIBBON
   ============================================ */
.specializations-ribbon {
    background: var(--bg-section);
    border-top: 1px solid rgba(201, 169, 110, 0.08);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    padding: 48px 0;
    position: relative;
    z-index: 5;
}

.spec-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

.spec-item i {
    font-size: 1.8rem;
    color: var(--primary);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 14px;
    border: 1px solid rgba(201, 169, 110, 0.12);
}

/* ============================================
   FEATURES (WHY CHOOSE US)
   ============================================ */
.features {
    background: var(--bg-dark);
    position: relative;
}

.feature-card {
    background: var(--bg-card);
    padding: 44px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 110, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.15);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 76px;
    height: 76px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 28px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(201, 169, 110, 0.25);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   TREATMENTS
   ============================================ */
.treatments {
    background: var(--bg-section);
    position: relative;
}

.treatments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.treatment-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(201, 169, 110, 0.06);
}

.treatment-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.15);
    box-shadow: var(--shadow-hover);
}

.treatment-img {
    height: 200px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, rgba(26, 26, 26, 0.9) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.treatment-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, var(--bg-card));
}

.treatment-card:hover .treatment-img {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.treatment-content {
    padding: 28px;
}

.treatment-content h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.treatment-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================
   DOCTORS
   ============================================ */
.doctors {
    background: var(--bg-dark);
    position: relative;
}

.doctor-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 110, 0.06);
    position: relative;
    overflow: hidden;
}

.doctor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 0 0 3px 3px;
}

.doctor-card:hover {
    border-color: rgba(201, 169, 110, 0.15);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.doctor-img {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(201, 169, 110, 0.25);
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.1);
    transition: var(--transition);
}

.doctor-card:hover .doctor-img {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(201, 169, 110, 0.2);
}

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

.doctor-info h3 {
    margin-bottom: 6px;
    font-size: 1.3rem;
}

.doctor-info .qualification {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.doctor-info .specialization {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.doctor-info .experience {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.doctor-info .languages {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 20px;
    font-style: italic;
}

.doctor-info .btn {
    margin-top: 16px;
    width: 100%;
}

/* Doctor Bio */
.doctor-bio {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    border: 1px solid rgba(201, 169, 110, 0.08);
    margin-top: 48px;
}

.doctor-bio-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
}

.doctor-bio-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(201, 169, 110, 0.25);
    flex-shrink: 0;
}

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

.doctor-bio-meta h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.doctor-bio-meta .qualification {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.doctor-bio-meta .role {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.doctor-bio p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.8;
}

.publications-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.publications-section h4 {
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

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

.publications-list li {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
}

.publications-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

.view-more-toggle {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    margin-top: 8px;
}

.view-more-toggle:hover {
    color: #E8D5A3;
    gap: 10px;
}

.publications-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.publications-expanded.active {
    max-height: 2000px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-section);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    position: relative;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    gap: 20px;
}

.stat-box {
    padding: 36px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(201, 169, 110, 0.08);
    transition: var(--transition);
}

.stat-box:hover {
    border-color: rgba(201, 169, 110, 0.2);
    box-shadow: var(--shadow-gold);
}

.stat-box h3 {
    font-size: 2.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-box p {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* ============================================
   BEFORE & AFTER
   ============================================ */
.before-after {
    background: var(--bg-dark);
}

.ba-slider-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    height: 500px;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.ba-bottom-image { z-index: 0; }
.ba-top-image {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--primary);
    z-index: 2;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.ba-handle-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
    color: var(--bg-dark);
    font-size: 1rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--bg-section);
    overflow: hidden;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-slider {
    display: flex;
    gap: 32px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 380px;
    max-width: 420px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    scroll-snap-align: center;
    border: 1px solid rgba(201, 169, 110, 0.06);
    text-align: left;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(201, 169, 110, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(201, 169, 110, 0.15);
    box-shadow: var(--shadow-hover);
}

.rating {
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--primary);
}

.rating .star {
    color: var(--primary);
}

.review {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-style: italic;
    line-height: 1.8;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.patient-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 169, 110, 0.2);
}

.patient-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201, 169, 110, 0.08);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
    animation: cta-glow 8s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.cta h2 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 2.8rem;
    position: relative;
}

.cta p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    background: var(--bg-dark);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 14px;
    border: 1px solid rgba(201, 169, 110, 0.06);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 169, 110, 0.12);
}

.faq-item.active {
    border-color: rgba(201, 169, 110, 0.2);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.faq-question i {
    font-size: 1.3rem;
    color: var(--primary);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--bg-section);
}

.contact-info {
    position: relative;
}

.contact-details {
    margin: 36px 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.contact-details i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(201, 169, 110, 0.1);
    flex-shrink: 0;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.1);
    height: 220px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.8) contrast(1.1) brightness(0.8);
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: grayscale(0.3) contrast(1) brightness(0.9);
}

.map-placeholder {
    height: 220px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    border: 1px solid rgba(201, 169, 110, 0.08);
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form-container {
    background: var(--bg-card);
    padding: 44px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(201, 169, 110, 0.08);
}

.contact-form-container h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.contact-form-container .form-subtitle {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

/* ============================================
   FLOATING ACTIONS
   ============================================ */
.floating-actions {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
}

.fab::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: transparent;
    transition: var(--transition);
}

.fab:hover {
    transform: translateY(-4px) scale(1.08);
}

.fab.whatsapp {
    background: #25D366;
}
.fab.whatsapp:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.fab.phone {
    background: var(--primary);
}
.fab.phone:hover {
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #050505;
    color: rgba(245, 240, 232, 0.5);
    padding-top: 96px;
    position: relative;
    border-top: 1px solid rgba(201, 169, 110, 0.06);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--accent-gradient);
}

.footer h4 {
    color: var(--text-primary);
    margin-bottom: 28px;
    font-size: 1.15rem;
    font-family: var(--font-heading);
}

.footer-logo {
    height: auto;
    max-height: 160px;
    max-width: 440px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-col p {
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 0.92rem;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.15rem;
    color: var(--primary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.2);
}

.footer ul li {
    margin-bottom: 14px;
}

.footer ul a {
    font-size: 0.92rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.footer ul a:hover {
    color: var(--primary);
    gap: 6px;
}

.footer ul a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
    display: inline-block;
}

.footer ul a:hover::before {
    width: 12px;
}

.newsletter-form {
    display: flex;
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 50px;
    overflow: hidden;
    padding: 4px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: var(--text-primary);
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.newsletter-form button:hover {
    background: #E8D5A3;
    box-shadow: 0 0 16px rgba(201, 169, 110, 0.3);
}

.footer-bottom {
    margin-top: 64px;
    padding: 24px 0;
    border-top: 1px solid rgba(201, 169, 110, 0.06);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(245, 240, 232, 0.5);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary);
}
