:root {
    --primary-color: #BFA05A;
    /* Gold/Bronze for premium feel */
    --primary-dark: #8C7540;
    --secondary-color: #2C2C2C;
    /* Dark Charcoal */
    --text-color: #4A4A4A;
    --light-bg: #F9F9F9;
    --white: #FFFFFF;
    /* Toc Box */
    --toc-box-bg: #f3e2b5;
    --toc-box-text: #2C2C2C;
    --toc-box-link: #BFA05A;
    --toc-box-link-hover: #8C7540;
    /* Sidebar */
    --sidebar-bg: #f3e2b5;
    --sidebar-text: #2C2C2C;
    --sidebar-link: #BFA05A;
    --sidebar-link-hover: #8C7540;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --container-width: 1200px;
    --header-height: 120px;
    --transition: all 0.3s ease;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

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

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: rgba(233, 30, 99, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.text-left .section-desc {
    margin: 0;
}

/* Header */
header {
    height: var(--header-height);
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

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

.logo-img {
    max-height: 80px;
    width: auto;
    display: block;
}



.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
}

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

/* Language Selector */
.language-selector {
    position: relative;
}

.language-toggle {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-toggle:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.language-toggle i.fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-selector.active .language-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-selector.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu li {
    list-style: none;
}

.language-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    border-bottom: 1px solid #f0f0f0;
}

.language-menu li:last-child a {
    border-bottom: none;
}

.language-menu li a:hover {
    background-color: #f8f8f8;
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Fixed Appointment Button */
.fixed-appointment-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    background: linear-gradient(135deg, var(--primary-color), #d4a853);
    color: var(--white);
    margin: 0px 20px 0px 0px;
    padding: 15px 40px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px 8px 0 0;
    box-shadow: -2px 0 15px rgba(191, 160, 90, 0.4);
    z-index: 999;
    transition: var(--transition);
    cursor: pointer;
}

.fixed-appointment-btn:hover {
    background: linear-gradient(135deg, #d4a853, var(--primary-color));
    box-shadow: -2px 0 20px rgba(191, 160, 90, 0.6);
    transform: translateY(-50%) rotate(-90deg) translateX(-5px);
}

/* Hero Section */
.hero {
    margin-top: var(--header-height);
    position: relative;
    height: 600px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* justify-content: flex-start;  Removed as container margin handles centering */
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide .container {
    width: 100%;
    /* Ensure container takes full width to center itself */
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Dark overlay */
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 550px;
    position: relative;
    /* Changed from absolute */
    padding: 20px 0;
    /* Removed horizontal padding to align with container edge */
    /* padding-left: 100px; Removed to use container alignment */
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Dropdown Menu */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    width: 250px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 2px solid var(--primary-color);
    z-index: 1001;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    color: var(--secondary-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: var(--primary-color);
    padding-left: 25px;
    /* Slide effect */
}

.nav-links li a i {
    font-size: 10px;
    margin-left: 3px;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        background-color: var(--white);
        height: calc(100vh - var(--header-height));
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-actions {
        display: none;
        /* Hide button on very small screens or move to menu */
    }

    .hero-content {
        margin: 0 20px;
    }

}

/* Quick Appointment Section */
.appointment-section {
    position: relative;
    margin-top: -50px;
    /* Overlap hero */
    z-index: 10;
    margin-bottom: 80px;
}

.appointment-box {
    background-color: var(--white);
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.appointment-box h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary-dark);
}

/* New Grid Layout */
.appointment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #C1A570;
    /* Muted gold for icons */
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background-color: #F8F5F2;
    /* Light beige bg */
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #555;
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus {
    background-color: #fff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.form-group .btn {
    width: 100%;
    border: none;
    padding: 16px;
    font-size: 16px;
    background-color: #CFA362;
    /* Gold color from screenshot */
    border-radius: 8px;
    margin-top: 10px;
}

.form-group .btn:hover {
    background-color: #b88d4d;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(191, 160, 90, 0.4);
}

.exp-badge .years {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.exp-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
}

.section-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--secondary-color);
}

.about-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

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

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

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

.section-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #666;
}

/* Services Slider (Owl Carousel) */
.services-carousel .item {
    margin: 10px;
    /* Optional spacing around items inside owl-stage */
}

/* Service Card Styles */
.service-card {
    background-color: var(--white);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    height: 400px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 80%);
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
}

/* Owl Carousel Dots Customization */
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.service-link {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    margin-left: 10px;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 992px) {
    .appointment-form {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        background-color: var(--white);
        height: calc(100vh - var(--header-height));
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: 0.4s;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        padding-top: 40px;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: #f5f5f5;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-top: none;
    }

    .dropdown-menu.active {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 0;
        font-size: 13px;
    }

    .nav-actions {
        display: none;
    }

    .hero-content {
        margin: 0 20px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    }

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

    .appointment-section {
        margin-top: 0;
        padding-top: 50px;
        margin-bottom: 50px;
    }

    .appointment-form {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 50px;
    }

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

    .exp-badge {
        width: 100px;
        height: 100px;
        right: -10px;
        padding: 20px;
    }

    .exp-badge .years {
        font-size: 24px;
    }
}

/* Expert Profile Section */
.expert-section {
    padding: 100px 0;
    background-color: #fff;
}

.expert-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expert-content {
    text-align: left;
}

.expert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    /* Site primary color */
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expert-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-color);
    /* Site primary color */
    line-height: 1.2;
    margin-bottom: 25px;
}

.expert-title span {
    display: block;
    color: var(--secondary-color);
    font-size: 32px;
    margin-top: 10px;
}

.expert-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.expert-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary-pink {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-pink:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--secondary-color);
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-dark:hover {
    border-color: var(--secondary-color);
    background-color: #f9f9f9;
}

.expert-features {
    display: flex;
    gap: 25px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.expert-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.expert-features span i {
    color: #E91E63;
    /* Pink icon */
}

/* Expert Gallery Grid */
.expert-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 200px;
    gap: 20px;
}

.gallery-main {
    grid-column: 1 / -1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-sub {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.expert-gallery div:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .expert-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .expert-actions {
        justify-content: center;
    }

    .expert-features {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Popular Treatments */
/* Popular Treatments Redesign */
.popular-section {
    padding: 80px 0;
    background-color: #F8F5F2;
    /* Very light beige */
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* New Treatment Card Design */
.treatment-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.treatment-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.treatment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.treatment-card:hover .treatment-img img {
    transform: scale(1.1);
}

.pop-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #D4AF37;
    /* Gold color */
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.treatment-content {
    padding: 25px;
}

.treatment-cat {
    display: block;
    font-size: 13px;
    color: #D4AF37;
    margin-bottom: 5px;
    font-weight: 500;
}

.treatment-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.treatment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.meta-item {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.treatment-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    background-color: #D4AF37;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.treatment-btn:hover {
    background-color: #C5A028;
    /* Darker gold */
}

/* Contact Banner Redesign */
.contact-banner {
    position: relative;
    padding: 100px 0;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(45, 45, 45, 0.9), rgba(45, 45, 45, 0.8));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;
}

.banner-actions {
    display: flex;
    gap: 20px;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--white);
}

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

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid #25D366;
}

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

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background-color: #FAF6F0;
    /* Beige tint */
    color: #D4AF37;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
    transition: var(--transition);
}

.read-more:hover {
    color: #D4AF37;
    gap: 12px;
}

@media (max-width: 992px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .banner-text p {
        margin: 0 auto;
    }
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-desc {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6;
    color: #999;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    background-color: #333;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
}

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

.footer-col ul li a {
    color: #999;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 10px;
    color: #999;
    font-size: 14px;
}

.contact-list li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Footer & Other Responsiveness */
@media (max-width: 992px) {
    .treatments-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .appointment-section {
        margin-top: 0;
        padding-top: 50px;
        margin-bottom: 50px;
    }

    .appointment-form {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 50px;
    }

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

    .exp-badge {
        width: 100px;
        height: 100px;
        right: -10px;
        padding: 20px;
    }

    .exp-badge .years {
        font-size: 24px;
    }
}

/* Page Header */
.page-header {
    margin-top: var(--header-height);
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    text-align: center;
    color: var(--white);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--white);
}

.breadcrumb,
.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb li a,
.breadcrumbs li a {
    color: var(--white);
    transition: var(--transition);
}

.breadcrumb li a:hover,
.breadcrumbs li a:hover {
    color: var(--primary-color);
}

.breadcrumb li::after,
.breadcrumbs li::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb li:last-child::after,
.breadcrumbs li:last-child::after {
    display: none;
}


/* Treatment Detail Redesign */
.treatment-detail-section {
    padding: 60px 0;
}

/* Info Card */
.treatment-info-card {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}

.info-card-header {
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.info-card-header h3 {
    color: #e91e63;
    /* Pink accent */
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.info-grid {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: #e91e63;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.info-text span {
    font-size: 0.9rem;
    color: #666;
}

.info-image {
    flex: 1;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

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

/* Table of Contents (TOC) */
.toc-box {
    background-color: var(--toc-box-bg);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.toc-box h3 {
    color: var(--toc-box-text);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list li a {
    color: var(--toc-box-text);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.toc-list li a:before {
    content: '\f061';
    /* FontAwesome arrow right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--toc-box-link);
}

.toc-list li a:hover {
    color: var(--toc-box-link-hover);
}

/* Detail Content */
.detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #222;
}

.detail-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

/* Sidebar Menu */
.sidebar-menu {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #eee;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background-color: var(--sidebar-bg);
    color: var(--sidebar-text);
}

.sidebar-menu a i {
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .info-card-header {
        text-align: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .treatment-info-card {
        flex-direction: column;
    }

    .info-image {
        height: 200px;
    }
}

/* Treatment Detail Redesign */
.treatment-detail-section {
    padding: 60px 0;
}

/* Info Card */
.treatment-info-card {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}

.info-card-header {
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.info-card-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.info-grid {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.info-text span {
    font-size: 0.9rem;
    color: #666;
}

.info-image {
    flex: 1;
    min-width: 250px;
    position: relative;
    overflow: hidden;
    max-height: 150px;
}

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

/* Table of Contents (TOC) */
.toc-box {
    background-color: var(--toc-box-bg);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.toc-box h3 {
    color: var(--toc-box-text);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list li a {
    color: var(--toc-box-text);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.toc-list li a:before {
    content: '\f061';
    /* FontAwesome arrow right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--toc-box-link);
}

.toc-list li a:hover {
    color: var(--toc-box-link-hover);
}

/* Detail Content */
.detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #222;
}

.detail-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

/* Sidebar Menu */
.sidebar-menu {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #eee;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background-color: var(--sidebar-bg);
    color: var(--sidebar-text);
}

.sidebar-menu a i {
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .info-card-header {
        text-align: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .treatment-info-card {
        flex-direction: column;
    }

    .info-image {
        height: 200px;
    }
}

/* Minimal Grid System for Treatment Detail */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-header {
    background-color: var(--secondary-color);
    /* Site theme dark color */
    color: var(--white);
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-header:hover {
    background-color: #444;
    /* Slightly lighter on hover */
}

.faq-header i {
    transition: transform 0.3s;
    font-size: 0.9rem;
}

.faq-item.active .faq-header {
    background-color: var(--primary-color);
    /* Gold/Pink accent when active */
}

.faq-item.active .faq-header i {
    transform: rotate(90deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #fff;
}

.faq-item.active .faq-body {
    max-height: 200px;
    /* Adjust if content is very long */
    padding: 20px;
    border-top: 1px solid #eee;
}

.faq-body p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Ensure sidebar active state matches theme */
.sidebar-menu a.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-left: 4px solid var(--secondary-color);
    /* Extra accent */
}

/* Expanded Grid System */
/* Ensure basic responsive behavior */
@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

/* Blog Page Specific Styles */
.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .blog-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .blog-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-page-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.latest-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-posts-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 15px;
}

.latest-posts-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.latest-posts-list a {
    display: flex;
    gap: 15px;
    text-decoration: none;
}

.lp-img {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.lp-content h5 {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
    margin: 0 0 5px;
    transition: color 0.3s;
}

.latest-posts-list a:hover h5 {
    color: var(--primary-color);
}

.lp-date {
    font-size: 0.75rem;
    color: #888;
}

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

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-icon,
.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

/* Lightbox Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-info-cards {
    display: grid;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.info-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-content a {
    color: #666;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--primary-color);
}

.social-connect h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.social-btn {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

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

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(191, 160, 90, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.btn-primary-pink {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

.btn-primary-pink:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.map-section {
    line-height: 0;
}

.map-section iframe {
    display: block;
}

/* Grid System & Utilities */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.mb-4 {
    margin-bottom: 24px !important;
}

.mb-5 {
    margin-bottom: 48px !important;
}

.mt-5 {
    margin-top: 48px !important;
}

.mb-lg-0 {
    margin-bottom: 0 !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

/* Social Connect */
.social-connect h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.social-btn {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.social-btn.instagram:hover {
    background: #E1306C;
}

.social-btn.facebook:hover {
    background: #3b5998;
}

.social-btn.twitter:hover {
    background: #1DA1F2;
}

.social-btn.youtube:hover {
    background: #FF0000;
}


/* Treatment Info Split Design */
.treatment-info-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.treatment-image-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 4px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}


/* Treatment Info Split Design - Refined */
.treatment-info-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    /* Added subtle shadow */
    height: auto;
    /* Allow natural height */
}

.treatment-image-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    /* Added subtle shadow */
    height: auto;
    /* Allow natural height */
}

.treatment-image-box img {
    width: 100%;
    height: auto;
    /* Maintin aspect ratio */
    max-height: 400px;
    /* Limit max height if needed */
    object-fit: cover;
    border-radius: 2px;
}

/* Compact Info Grid */
.info-grid {
    padding: 20px;
    gap: 15px;
    /* Reduced gap */
}

.info-item {
    gap: 12px;
    /* Reduced gap */
}


/* Detail Content Typography & Elements - Enhanced */
.detail-content {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.detail-content h2,
.detail-content h3,
.detail-content h4 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.detail-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.detail-content h3 {
    font-size: 1.4rem;
}

.detail-content h4 {
    font-size: 1.2rem;
}

.detail-content p {
    margin-bottom: 20px;
}

/* Lists */
.detail-content ul,
.detail-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.detail-content ul li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.detail-content ul li::before {
    content: '\f00c';
    /* Check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
}

.detail-content ol li {
    margin-bottom: 10px;
    padding-left: 5px;
}

/* Links */
.detail-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dotted var(--primary-color);
    transition: all 0.3s ease;
}

.detail-content a:hover {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

/* Images */
.detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Tables */
.detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
}

.detail-content table th,
.detail-content table td {
    padding: 12px 15px;
    border: 1px solid #eee;
    text-align: left;
}

.detail-content table th {
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 600;
}

.detail-content table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.detail-content table tr:hover {
    background-color: #f1f1f1;
}

/* Blockquote */
.detail-content blockquote {
    background: #fdfdfd;
    border-left: 4px solid var(--primary-color);
    margin: 25px 0;
    padding: 20px 25px;
    font-style: italic;
    color: #666;
    border-radius: 0 4px 4px 0;
}


/* Modern Service Card Design */
.service-card-modern {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
    /* Prepare for hover effect */
}

.service-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary-color);
}

.service-card-modern .icon-wrapper {
    width: 70px;
    height: 70px;
    background: #FAF6F0;
    /* Soft beige */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card-modern:hover .icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.service-card-modern .icon-wrapper i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card-modern:hover .icon-wrapper i {
    color: #fff;
}

.service-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.service-card-modern h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #eee;
    transition: width 0.3s ease;
}

.service-card-modern:hover h3::after {
    width: 80px;
    background: var(--primary-color);
}

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

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: transform 0.2s ease;
}

.service-list li:hover {
    transform: translateX(8px);
    color: var(--secondary-color);
}

.service-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 5px;
    font-size: 0.85rem;
    background: rgba(212, 175, 55, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}


/* Hero CTA Button */
.btn-hero-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid var(--white);
    transition: var(--transition);
    text-shadow: none;
}

.btn-hero-cta:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
    background-color: var(--primary-color);
    border-color: var(--white);
    transform: scale(1.2);
}