/* ==========================================================
   Beauty Clinic - Sophisticated Dusty Rose & Velvet Blush (2026)
   Dusty Rose, Rose Gold, Silky Blush Cream, Deep Velvet Charcoal
   ========================================================== */

:root {
    /* Sophisticated Rose & Blush Palette */
    --primary-rose: #d48b97;
    --primary-rose-hover: #bd717e;
    --rose-light: #fbf2f4;
    --rose-border: #edd5da;
    
    --rose-gold-accent: #dfb094;
    --rose-gold-hover: #cf9b7c;
    
    --dark-charcoal: #1f181b;
    --slate-velvet: #2a2024;
    
    --warm-cream: #fdfaf9;
    --warm-alabaster: #f7f1f2;
    --sand-blush: #ebd6da;
    
    --text-main: #2d3136;
    --text-muted: #7b8089;
    --white: #ffffff;
    --border-color: #f0e2e5;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 6px rgba(31, 24, 27, 0.04);
    --shadow-md: 0 8px 24px rgba(31, 24, 27, 0.07);
    --shadow-lg: 0 16px 36px rgba(31, 24, 27, 0.11);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
    background-color: var(--warm-cream);
    color: var(--text-main);
    line-height: 1.75;
    font-size: 15px;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

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

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

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

.text-gold { color: var(--primary-rose) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-danger { color: #d9534f !important; }
.text-success { color: #43a047 !important; }
.text-primary { color: #3b82f6 !important; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-xs { font-size: 0.8rem; }
.text-sm { font-size: 0.9rem; }
.text-lg { font-size: 1.15rem; }
.text-xl { font-size: 1.4rem; }
.text-2xl { font-size: 1.8rem; }
.text-6xl { font-size: 4rem; }

.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 4rem; padding-bottom: 4rem; }
.my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-5 { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.ms-2 { margin-right: 0.5rem; }
.ms-3 { margin-right: 1rem; }
.me-2 { margin-left: 0.5rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }

.bg-light { background-color: var(--warm-alabaster); }
.bg-dark { background-color: var(--dark-charcoal); color: var(--white); }
.bg-dark-navy { background-color: var(--slate-velvet); color: var(--white); }
.bg-gold-light { background-color: var(--rose-light); border: 1px solid var(--rose-border); border-radius: var(--radius-md); }

.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }

.card-box {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.card-box:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--sand-blush);
}

.badge-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--rose-light);
    color: var(--primary-rose);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--rose-border);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary {
    background-color: var(--primary-rose);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(212, 139, 151, 0.35);
}
.btn-primary:hover {
    background-color: var(--primary-rose-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 139, 151, 0.45);
    color: var(--white);
}
.btn-gold {
    background-color: var(--rose-gold-accent);
    color: var(--dark-charcoal);
    font-weight: 700;
}
.btn-gold:hover {
    background-color: var(--rose-gold-hover);
    transform: translateY(-2px);
}
.btn-outline {
    background-color: transparent;
    border-color: var(--primary-rose);
    color: var(--primary-rose);
}
.btn-outline:hover {
    background-color: var(--primary-rose);
    color: var(--white);
}
.btn-outline-white {
    background: transparent;
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark-charcoal);
}
.btn-sm {
    padding: 7px 16px;
    font-size: 0.85rem;
}
.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}
.btn-block {
    display: flex;
    width: 100%;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-charcoal);
    color: #a49ea2;
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-info {
    display: flex;
    gap: 20px;
}
.top-contact {
    display: flex;
    gap: 15px;
}
.top-phone {
    color: #f1ecf0;
    font-weight: 600;
}
.top-whatsapp {
    color: #52c41a;
}

/* Header */
.main-header {
    background-color: rgba(253, 250, 249, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-rose), #9e5b66);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(212, 139, 151, 0.35);
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-charcoal);
    letter-spacing: -0.5px;
}
.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-charcoal);
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link:hover {
    color: var(--primary-rose);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-charcoal);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1f181b 0%, #2d2126 100%);
    color: var(--white);
    padding: 75px 0 95px;
    position: relative;
    overflow: hidden;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(212, 139, 151, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212, 139, 151, 0.15);
    border: 1px solid rgba(212, 139, 151, 0.35);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #f3d4d9;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 20px;
}
.hero-desc {
    font-size: 1.05rem;
    color: #e2d9de;
    margin-bottom: 30px;
    line-height: 1.85;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}
.trust-metrics {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}
.metric-item {
    display: flex;
    flex-direction: column;
}
.metric-number {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--primary-rose);
}
.metric-label {
    font-size: 0.82rem;
    color: #b5acb2;
}

/* Appointment Box Card */
.card-glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.box-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: inherit;
}
.form-control {
    width: 100%;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-main);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-rose);
    box-shadow: 0 0 0 3px rgba(212, 139, 151, 0.2);
}
.form-msg {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    display: none;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-rose);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 58px;
    height: 58px;
    background: var(--rose-light);
    color: var(--primary-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
    border: 1px solid var(--rose-border);
}
.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-charcoal);
}
.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-border);
}
.service-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--rose-light);
    color: var(--primary-rose);
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 700;
    border: 1px solid var(--rose-border);
}
.service-icon-box {
    width: 50px;
    height: 50px;
    background: var(--slate-velvet);
    color: var(--primary-rose);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
}
.service-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark-charcoal);
}
.service-summary {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    flex-grow: 1;
    line-height: 1.65;
}
.service-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    padding: 10px 0;
    border-top: 1px dashed var(--border-color);
    margin-bottom: 15px;
}
.service-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Before / After Visual Cards */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.ba-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.ba-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--rose-border);
}
.ba-visual-container {
    height: 200px;
    background: #fdf8f9;
    position: relative;
    display: flex;
    border-bottom: 1px solid var(--border-color);
}
.ba-visual-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
}
.ba-side-before {
    background: #f5ebeb;
    border-left: 2px dashed #ddc2c6;
    color: #6d6668;
}
.ba-side-after {
    background: #fffafa;
    color: var(--primary-rose);
}
.ba-tag-pill {
    position: absolute;
    top: 10px;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
}
.tag-before { right: 10px; background: #6d6668; color: #fff; }
.tag-after { left: 10px; background: var(--primary-rose); color: #fff; }

.ba-icon-graphic {
    font-size: 2.2rem;
    margin-bottom: 8px;
}
.ba-state-text {
    font-size: 0.8rem;
    font-weight: 700;
}
.ba-info {
    padding: 20px;
}
.ba-category {
    font-size: 0.75rem;
    color: var(--primary-rose);
    font-weight: 700;
}
.ba-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 4px 0 6px;
    color: var(--dark-charcoal);
}
.ba-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
}

/* Doctors (Clean Avatar Graphic Style) */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.doctor-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 22px;
    text-align: center;
    transition: var(--transition);
}
.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-rose);
}
.doctor-avatar-box {
    width: 95px;
    height: 95px;
    background: linear-gradient(135deg, var(--rose-light), #f0d8dc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid var(--rose-border);
    color: var(--primary-rose);
}
.doctor-name {
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--dark-charcoal);
}
.doctor-title {
    font-size: 0.88rem;
    color: var(--primary-rose);
    font-weight: 600;
    margin-bottom: 4px;
}
.doctor-reg {
    font-size: 0.78rem;
    color: #9b9498;
}
.doctor-exp {
    font-size: 0.8rem;
    background: var(--warm-alabaster);
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    margin: 8px 0 12px;
}
.doctor-bio {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.review-user-icon {
    font-size: 2.2rem;
    color: #d1c7cc;
}
.review-author {
    font-size: 0.95rem;
    font-weight: 700;
}
.review-service {
    font-size: 0.75rem;
    color: var(--primary-rose);
}
.review-stars {
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.review-text {
    font-size: 0.88rem;
    color: #4a4548;
    line-height: 1.65;
    font-style: italic;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--dark-charcoal);
    cursor: pointer;
    text-align: right;
}
.faq-icon {
    transition: var(--transition);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    background-color: var(--rose-light);
    font-size: 0.9rem;
    color: #4a4548;
}
.faq-item.active .faq-answer {
    padding: 16px 20px;
    max-height: 300px;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--rose-border);
}
.blog-img-box {
    position: relative;
    height: 180px;
    background: #f7eded;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--dark-charcoal);
    color: var(--white);
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
}
.blog-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.blog-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.55;
    color: var(--dark-charcoal);
}
.blog-title a:hover {
    color: var(--primary-rose);
}
.blog-summary {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}
.read-more-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-rose);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--dark-charcoal), var(--slate-velvet));
    color: var(--white);
}
.cta-inner {
    max-width: 800px;
}
.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
}
.cta-desc {
    color: #e5dde2;
    font-size: 1rem;
    margin-bottom: 25px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Single Pages Layout */
.single-service-layout,
.single-article-layout,
.booking-page-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
.service-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
}
.highlight-box {
    background: var(--warm-alabaster);
    padding: 15px 10px;
    border-radius: var(--radius-sm);
}
.custom-checklist, .custom-steps {
    padding-right: 20px;
    margin: 15px 0;
}
.custom-checklist li {
    margin-bottom: 8px;
    position: relative;
    list-style-type: none;
}
.custom-checklist li::before {
    content: "✔";
    color: var(--primary-rose);
    position: absolute;
    right: -20px;
    font-weight: bold;
}
.sidebar-services-list {
    list-style: none;
}
.sidebar-services-list li {
    border-bottom: 1px solid var(--border-color);
}
.sidebar-services-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-weight: 600;
    font-size: 0.9rem;
}
.sidebar-services-list li.active a,
.sidebar-services-list li a:hover {
    color: var(--primary-rose);
    padding-right: 5px;
}

/* Contact Page */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
}
.contact-form-and-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Footer */
.main-footer {
    background-color: var(--dark-charcoal);
    color: #dcd4d9;
    padding: 65px 0 0;
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 35px;
    padding-bottom: 40px;
}
.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}
.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #a49ea2;
}
.license-badge {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #f1ecf0;
}
.footer-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 2px;
    background: var(--primary-rose);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links li a {
    color: #a49ea2;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
}
.footer-links li a:hover {
    color: var(--primary-rose);
    padding-right: 4px;
}
.nap-item {
    margin-bottom: 12px;
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}
.social-links a:hover {
    background: var(--primary-rose);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    font-size: 0.82rem;
    color: #797176;
}
.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Sticky Floating Contact Actions */
.floating-actions {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}
.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    position: relative;
    transition: var(--transition);
}
.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}
.whatsapp-btn {
    background: #25d366;
}
.call-btn {
    background: var(--primary-rose);
}
.float-tooltip {
    position: absolute;
    left: 65px;
    background: var(--dark-charcoal);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.float-btn:hover .float-tooltip {
    opacity: 1;
}

/* Admin Dashboard Tables */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.admin-table th, .admin-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-color);
    text-align: right;
}
.admin-table th {
    background: var(--warm-alabaster);
    font-weight: 700;
}
.table-responsive {
    overflow-x: auto;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}
.status-pending {
    background: #feebc8;
    color: #c05621;
}
.status-confirmed {
    background: #c6f6d5;
    color: #22543d;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-grid,
    .single-service-layout,
    .single-article-layout,
    .booking-page-layout,
    .contact-form-and-map {
        grid-template-columns: 1fr;
    }
    .features-grid,
    .services-grid,
    .ba-grid,
    .doctors-grid,
    .blog-grid,
    .contact-info-cards,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        gap: 15px;
    }
    .nav-menu.open {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }
    .features-grid,
    .services-grid,
    .ba-grid,
    .doctors-grid,
    .reviews-grid,
    .blog-grid,
    .contact-info-cards,
    .row-grid,
    .service-highlights-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hide-mobile {
        display: none;
    }
    .bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
