/* ==========================================
   BIRDIE & BLOOM - Main Stylesheet
   ========================================== */

/* CSS Variables */
:root {
    /* Brand Colors - From Birdie & Bloom Mural */
    --sage: #6b7c5e;             /* Sage green (wall) */
    --sage-dark: #566349;
    --sage-light: #8a9a7d;
    --purple: #4a3a4d;           /* Deep purple (flowers) */
    --purple-light: #6d5a70;
    --gold: #c5a572;             /* Gold (logo/accents) */
    --gold-dark: #a8895c;
    --gold-light: #d4bb8e;
    --coral: #d4a59a;            /* Coral pink (cherry blossoms) */
    --coral-dark: #c08b7e;
    --tan: #b8855c;              /* Tan (chair) */
    --black: #000000;
    --dark: #1a1a1a;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #999999;
    --cream: #f5f0e8;            /* Cream (white flowers) */
    --cream-dark: #ebe4d8;
    --white: #ffffff;
    --off-white: #faf8f5;

    /* Primary colors mapped for easy use */
    --primary: var(--sage);
    --primary-dark: var(--sage-dark);
    --primary-light: var(--sage-light);
    --accent: var(--gold);
    --accent-dark: var(--gold-dark);

    /* Typography - Elegant serif fonts like Revived */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', sans-serif;
    --font-accent: 'Cinzel', serif;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 5px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.12);

    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-dark);
}

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

/* ==========================================
   Utility Classes
   ========================================== */
.section-padding {
    padding: var(--section-padding) 0;
}

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

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

.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-label.light {
    color: var(--gold-light);
}

.section-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--dark);
    font-style: italic;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 18px 40px;
    border-radius: 0;
    transition: var(--transition-normal);
}

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

.btn-primary:hover {
    background-color: var(--sage-dark);
    border-color: var(--sage-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 124, 94, 0.4);
}

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

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

.btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

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

.btn-light:hover {
    background-color: var(--cream);
    border-color: var(--cream);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 14px;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 11px;
}

/* ==========================================
   Top Bar
   ========================================== */
.top-bar {
    background-color: var(--dark);
    padding: 12px 0;
    font-size: 13px;
}

.top-bar-text {
    color: var(--white);
    font-family: var(--font-accent);
    letter-spacing: 1px;
}

.top-bar-text i,
.top-bar-link i {
    margin-right: 6px;
}

.top-bar-link {
    color: var(--white);
    font-family: var(--font-accent);
    letter-spacing: 1px;
}

.top-bar-link:hover {
    color: var(--primary-light);
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 20px 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo-subtext {
    font-family: var(--font-accent);
    font-size: 8px;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
}

.navbar-nav .nav-link {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
}

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

.nav-btn {
    margin-left: 20px;
    padding: 14px 28px !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 28px;
    height: 20px;
    background-image: none;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    position: absolute;
    left: 0;
    transition: var(--transition-fast);
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon span {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler-icon::after {
    bottom: 0;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 15px 0;
    border-top: 3px solid var(--gold);
}

.dropdown-item {
    font-family: var(--font-accent);
    font-size: 13px;
    padding: 10px 25px;
    color: var(--dark-gray);
    letter-spacing: 1px;
}

.dropdown-item:hover {
    background-color: var(--cream);
    color: var(--primary);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 58, 77, 0.5) 0%, rgba(107, 124, 94, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 2px 4px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 45px;
    opacity: 0.95;
    font-family: var(--font-accent);
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   Welcome Section
   ========================================== */
.welcome-section {
    background-color: var(--white);
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.welcome-content {
    padding-left: 60px;
}

.welcome-content .lead {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.9;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border: 2px dashed var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--primary);
}

.image-placeholder i {
    font-size: 56px;
    margin-bottom: 20px;
    opacity: 0.4;
}

.image-placeholder span {
    font-family: var(--font-accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.6;
}

.image-placeholder.large {
    min-height: 500px;
}

/* ==========================================
   Trust Section
   ========================================== */
.trust-card {
    background-color: var(--white);
    padding: 50px 35px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.trust-icon i {
    font-size: 40px;
    color: var(--white);
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 600;
}

.trust-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.8;
}

/* ==========================================
   Services Section
   ========================================== */
.service-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-image .image-placeholder {
    min-height: 220px;
    border-radius: 0;
    border: none;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 1px;
}

.service-content p {
    font-size: 15px;
    color: var(--medium-gray);
    margin-bottom: 18px;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--cream);
}

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

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.service-note {
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-link {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 15px;
}

/* ==========================================
   Addon Cards Section
   ========================================== */
.addon-card {
    background-color: var(--white);
    padding: 40px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    margin-bottom: 30px;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.addon-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.addon-icon i {
    font-size: 30px;
    color: var(--white);
}

.addon-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.addon-card p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.addon-tagline {
    font-family: var(--font-accent);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
}

/* ==========================================
   Locations Section
   ========================================== */
.location-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    margin-bottom: 30px;
}

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

.location-card.single-location {
    max-width: 500px;
    margin: 0 auto;
}

.location-header {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    padding: 35px;
    text-align: center;
}

.location-header i {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 12px;
    display: block;
}

.location-header h3 {
    font-size: 28px;
    color: var(--white);
    margin: 0;
    font-weight: 600;
}

.location-body {
    padding: 35px;
}

.location-body p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.location-body strong {
    font-family: var(--font-accent);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
}

.location-phone a,
.location-email a {
    color: var(--dark);
    font-weight: 500;
}

.location-phone a:hover,
.location-email a:hover {
    color: var(--primary);
}

.location-footer {
    padding: 0 35px 35px;
    display: flex;
    gap: 15px;
}

.location-footer .btn {
    flex: 1;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--sage) 0%, var(--purple) 100%);
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 124, 94, 0.92) 0%, rgba(74, 58, 77, 0.88) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-brand {
    margin-bottom: 25px;
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 22px;
}

.footer-brand .logo-subtext {
    color: var(--primary-light);
}

.footer-about {
    color: var(--light-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-title {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--light-gray);
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    color: var(--light-gray);
}

.footer-contact i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact a {
    color: var(--light-gray);
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 50px 0 30px;
}

.footer-bottom {
    font-size: 14px;
}

.copyright {
    color: var(--light-gray);
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-legal a {
    color: var(--light-gray);
}

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

/* ==========================================
   Responsive Styles
   ========================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 62px;
    }

    .section-title {
        font-size: 44px;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: var(--section-padding-mobile) 0;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .welcome-content {
        padding: 50px 0 0;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 25px;
        margin-top: 15px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
    }

    .nav-btn {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .top-bar {
        text-align: center;
    }

    .top-bar .col-md-6:first-child {
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-legal {
        justify-content: center;
        margin-top: 20px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .location-footer {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 34px;
    }

    .section-title {
        font-size: 30px;
    }

    .trust-card,
    .service-card,
    .location-card,
    .addon-card {
        margin-bottom: 20px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-subtext {
        font-size: 8px;
        letter-spacing: 2px;
    }
}

/* ==========================================
   Animation Enhancements
   ========================================== */
[data-aos] {
    transition-timing-function: ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--sage);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sage-dark);
}

/* Selection color */
::selection {
    background-color: var(--gold);
    color: var(--white);
}

/* ==========================================
   Service Detail Pages
   ========================================== */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 58, 77, 0.7) 0%, rgba(107, 124, 94, 0.6) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.service-hero-title {
    font-size: 56px;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 4px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}

.service-hero-subtitle {
    font-size: 18px;
    color: var(--white);
    opacity: 0.95;
    font-family: var(--font-body);
    letter-spacing: 1px;
}

/* Service Detail Content */
.service-detail {
    background-color: var(--white);
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--dark);
}

.service-detail-content h3 {
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-detail-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--cream);
}

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

.service-detail-list li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--gold);
    font-size: 16px;
}

/* Treatment Options */
.treatment-options {
    margin: 30px 0;
}

.treatment-option {
    background-color: var(--cream);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    border-left: 4px solid var(--gold);
}

.treatment-option h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
    color: var(--dark);
}

.treatment-option p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-sidebar-card {
    background-color: var(--cream);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.service-sidebar-card h4 {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-sidebar-card p {
    font-size: 15px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.quick-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-facts-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 14px;
    color: var(--dark-gray);
}

.quick-facts-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quick-facts-list li strong {
    color: var(--dark);
    display: block;
    margin-bottom: 3px;
}

/* Responsive Service Pages */
@media (max-width: 991px) {
    .service-hero {
        height: 40vh;
        min-height: 300px;
    }

    .service-hero-title {
        font-size: 42px;
    }

    .service-sidebar {
        position: static;
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .service-hero-title {
        font-size: 32px;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .service-detail-content h3 {
        font-size: 22px;
    }
}
