/*
 * STARTER THEMES - Güzellik Merkezi / SPA / Kuaför
 * Renk: Rose Gold & Soft Pink
 * Font: Playfair Display + Poppins
 */

/* =============================================
   CSS VARIABLES
============================================= */
:root {
    --primary: #B76E79;
    --primary-dark: #9A5A64;
    --primary-light: #D4949D;
    --secondary: #F8E8EE;
    --accent: #D4AF37;
    --accent-light: #E8D48A;
    --dark: #2D2D2D;
    --dark-light: #4A4A4A;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --border: #E5E5E5;
    --light: #FDFBF7;
    --white: #FFFFFF;

    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-soft: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);

    --shadow-sm: 0 2px 10px rgba(183, 110, 121, 0.08);
    --shadow: 0 10px 40px rgba(183, 110, 121, 0.12);
    --shadow-lg: 0 25px 80px rgba(183, 110, 121, 0.18);
    --shadow-hover: 0 20px 60px rgba(183, 110, 121, 0.22);

    --radius-sm: 8px;
    --radius: 15px;
    --radius-lg: 25px;
    --radius-xl: 40px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* =============================================
   UTILITY CLASSES
============================================= */
.section-padding {
    padding: 80px 0;
}

/* =============================================
   RESET & BASE
============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

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

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

ul, ol {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.header:not(.scrolled):not(.header-dark) .btn-primary {
    background: var(--white);
    color: var(--primary-dark);
}

.header:not(.scrolled):not(.header-dark) .btn-primary:hover {
    background: var(--secondary);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

.btn-lg {
    padding: 20px 50px;
    font-size: 15px;
}

/* =============================================
   HEADER
============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Logo */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    transition: var(--transition);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 56px;
    width: auto;
}

.header.scrolled .logo {
    color: var(--primary-dark);
}

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

.header:not(.scrolled):not(.header-dark) .logo span {
    color: rgba(255, 255, 255, 0.85);
}

/* Inner pages - header with dark text (add .header-dark class to header) */
.header.header-dark {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.header.header-dark .logo {
    color: var(--primary-dark);
}

.header.header-dark .nav-menu ul > li > a {
    color: var(--dark);
}

.header.header-dark .header-phone {
    color: var(--dark);
}

.header.header-dark .mobile-menu-btn span {
    background: var(--dark);
}

/* Navigation */
.nav-menu ul {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > ul > li {
    position: relative;
}

.nav-menu > ul > li > a {
    display: block;
    padding: 12px 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.header.scrolled .nav-menu > ul > li > a {
    color: var(--dark);
}

.nav-menu > ul > li > a:hover,
.nav-menu > ul > li > a.active {
    color: var(--accent);
}

.header.scrolled .nav-menu > ul > li > a:hover,
.header.scrolled .nav-menu > ul > li > a.active,
.header.header-dark .nav-menu > ul > li > a:hover,
.header.header-dark .nav-menu > ul > li > a.active {
    color: var(--primary-dark);
}

.header:not(.scrolled):not(.header-dark) .nav-menu > ul > li > a:hover,
.header:not(.scrolled):not(.header-dark) .nav-menu > ul > li > a.active {
    color: var(--white);
}

.nav-menu > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--primary-dark);
    transform: scaleX(0);
    transition: var(--transition);
}

.header:not(.scrolled):not(.header-dark) .nav-menu > ul > li > a::after {
    background: var(--white);
}

.nav-menu > ul > li:hover > a::after,
.nav-menu > ul > li > a.active::after {
    transform: scaleX(1);
}

/* Dropdown Menu - supports both .has-dropdown>.dropdown and .dropdown>.dropdown-menu */
.nav-menu .has-dropdown .dropdown,
.nav-menu .dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    list-style: none;
    z-index: 100;
}

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

.nav-menu .has-dropdown .dropdown li a,
.nav-menu .dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--gray);
    font-size: 14px;
    transition: var(--transition);
}

.nav-menu .has-dropdown .dropdown li a:hover,
.nav-menu .dropdown-menu li a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    padding-left: 30px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.header-phone span {
    display: block;
}

.header.scrolled .header-phone {
    color: var(--dark);
}

.header-phone i {
    color: var(--accent);
}

.header:not(.scrolled):not(.header-dark) .header-phone i {
    color: rgba(255, 255, 255, 0.85);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    display: block;
    border-radius: 2px;
}

.header.scrolled .mobile-menu-btn span,
.header.header-dark .mobile-menu-btn span {
    background: var(--dark);
}

/* Hamburger Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Menu */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        z-index: 1001;
        padding: 100px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        overflow-y: auto;
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu > ul > li {
        border-bottom: 1px solid var(--secondary);
    }

    .nav-menu > ul > li > a {
        color: var(--dark);
        padding: 15px 0;
        font-size: 15px;
    }

    .nav-menu > ul > li > a:hover,
    .nav-menu > ul > li > a.active {
        color: var(--primary-dark);
    }

    .nav-menu > ul > li > a::after {
        display: none;
    }

    /* Mobile Dropdown */
    .nav-menu .has-dropdown > a,
    .nav-menu .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu .has-dropdown > a::after,
    .nav-menu .dropdown > a i {
        transition: transform 0.3s ease;
    }

    .nav-menu .has-dropdown > a::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 12px;
        margin-left: 10px;
    }

    .nav-menu .has-dropdown.open > a::after,
    .nav-menu .dropdown.open > a i {
        transform: rotate(180deg);
    }

    .nav-menu .has-dropdown .dropdown,
    .nav-menu .dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        background: var(--light);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
    }

    .nav-menu .has-dropdown.open .dropdown,
    .nav-menu .dropdown.open .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-menu .has-dropdown .dropdown li a,
    .nav-menu .dropdown-menu li a {
        padding: 10px 20px;
        font-size: 14px;
        color: var(--gray);
    }

    .nav-menu .has-dropdown .dropdown li a:hover,
    .nav-menu .dropdown-menu li a:hover {
        color: var(--primary-dark);
        background: var(--secondary);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    /* Mobile Menu Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark) 100%);
    opacity: 0.75;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.hero-badge i {
    color: var(--white);
}

.hero-badge span {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1,
.hero h2,
.hero-slide h1,
.hero-slide h2 {
    font-size: clamp(42px, 6vw, 72px) !important;
    color: var(--white) !important;
    margin-bottom: 25px;
    text-shadow: 2px 2px 40px rgba(0,0,0,0.2);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.hero h1 span,
.hero h2 span,
.hero-slide h1 span,
.hero-slide h2 span {
    color: var(--white) !important;
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 8px;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.9;
}

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

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark) 100%);
    opacity: 0.75;
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 1;
}

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

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

.hero-slide .container {
    position: relative;
    z-index: 3;
}

/* Hero Slider Dots */
.hero-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.hero-dot.active,
.hero-dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 10;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* =============================================
   PAGE HEADER (İç Sayfalar)
============================================= */
.page-header {
    padding: 180px 0 100px;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark) 100%);
    opacity: 0.9;
}

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

.page-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.breadcrumb .current {
    color: var(--accent);
}

/* =============================================
   SECTION STYLES
============================================= */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light);
}

.section-white {
    background: var(--white);
}

.section-pink {
    background: var(--secondary);
}

.section-pink .section-badge {
    color: var(--dark-light);
}

.section-pink .section-desc {
    color: var(--dark-light);
}

.section-pink .btn-outline {
    color: var(--dark);
    border-color: var(--dark);
}

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

.section-dark {
    background: var(--dark);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-badge::before,
.section-badge::after {
    content: '✦';
    color: var(--accent);
    font-size: 10px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-dark);
    font-style: italic;
}

.section-desc {
    color: var(--gray);
    font-size: 16px;
}

/* =============================================
   SERVICE CARDS
============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

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

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

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

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 24px;
}

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-content h3 a:hover {
    color: var(--primary-dark);
}

.service-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.service-price {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: -0.3px;
}

.service-price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
}

.service-link {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    transition: var(--transition);
}

.service-link:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* =============================================
   TEAM CARDS
============================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    height: 320px;
    overflow: hidden;
    position: relative;
}

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

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

.team-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 20px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-info h3 a:hover {
    color: var(--primary-dark);
}

.team-position {
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   PRICING CARDS
============================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border-color: var(--primary-dark);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--dark);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-dark);
}

.pricing-name {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-amount {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.pricing-period {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 30px;
}

.pricing-features {
    margin-bottom: 35px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--gray);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-dark);
}

.pricing-card.featured .pricing-features li {
    color: var(--dark);
    border-color: var(--secondary);
    font-weight: 600;
}

.pricing-card.featured .pricing-features li i {
    color: var(--primary-dark);
}

.pricing-card.featured .pricing-amount {
    color: var(--primary-dark);
    font-weight: 700;
}

.pricing-card.featured .pricing-period {
    color: var(--gray);
}

.pricing-card.featured .pricing-name {
    color: var(--dark);
    font-weight: 700;
}

.pricing-card.featured .pricing-icon {
    background: var(--secondary);
    color: var(--primary-dark);
}

.pricing-card.featured .pricing-features li.disabled {
    color: var(--gray-light);
}

.pricing-card.featured .pricing-features li.disabled i {
    color: var(--gray-light);
}

/* =============================================
   GALLERY
============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 280px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--primary-dark), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

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

.gallery-overlay span {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}

.gallery-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 20px;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

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

/* =============================================
   TESTIMONIALS
============================================= */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    position: relative;
    box-shadow: var(--shadow);
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--secondary);
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 18px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--dark);
    line-height: 1.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
}

.testimonial-info h4 {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 3px;
}

.testimonial-info span {
    color: var(--primary-dark);
    font-size: 14px;
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-nav button {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    font-size: 18px;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-nav button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

/* =============================================
   BLOG CARDS
============================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-meta span {
    color: var(--gray);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--primary-dark);
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a:hover {
    color: var(--primary-dark);
}

.blog-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

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

.blog-link:hover {
    gap: 15px;
}

/* =============================================
   CONTACT & FORMS
============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 22px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item span {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
    background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    background: var(--white);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 40px;
}

/* =============================================
   FOOTER
============================================= */
.footer {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), var(--primary-dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand .logo-img {
    height: 64px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '›';
    color: var(--primary-light);
    font-size: 18px;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

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

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

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

.footer-bottom-links a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

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

/* =============================================
   WHATSAPP BUTTON
============================================= */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #1a7e42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 5px 25px rgba(26, 126, 66, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(26, 126, 66, 0.5);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--dark);
    transform: translateY(-3px);
}

/* =============================================
   UTILITIES
============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-dark); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }

.bg-primary { background: var(--primary-dark); }
.bg-secondary { background: var(--secondary); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--dark); }

.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1200px) {
    .container {
        padding: 0 25px;
    }

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

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

@media (max-width: 992px) {
    .hero h1 {
        font-size: 42px;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .hero {
        min-height: 80vh;
    }

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

    .hero-desc {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .page-header {
        padding: 140px 0 80px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

    .services-grid,
    .team-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item {
        height: 250px;
    }

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

    .contact-form {
        padding: 30px 20px;
    }

    .logo-img {
        height: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-grid > div:last-child {
        grid-column: span 2;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact {
        display: inline-block;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 14px 25px;
        font-size: 13px;
    }

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

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-quote {
        font-size: 80px;
        top: 15px;
        right: 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}

/* =============================================
   BLOG DETAIL PAGE STYLES
============================================= */
.post-meta-header {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.post-meta-header span {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.post-meta-header i {
    margin-right: 8px;
    color: var(--accent);
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 350px);
    gap: 50px;
}

.blog-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 16px;
    line-height: 1.9;
}

.article-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--dark);
}

.article-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--dark);
}

.article-content p {
    margin-bottom: 20px;
    color: var(--gray);
}

.article-content p.lead {
    font-size: 18px;
    color: var(--dark);
    font-weight: 500;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 30px;
}

.content-highlight {
    display: flex;
    gap: 20px;
    background: var(--secondary);
    padding: 25px;
    border-radius: var(--radius);
    margin: 30px 0;
}

.content-highlight > i {
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.content-highlight h4 {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}

.content-highlight p {
    margin: 0;
    font-size: 14px;
}

.content-image {
    margin: 30px 0;
}

.content-image img {
    border-radius: var(--radius);
    width: 100%;
}

.content-image figcaption {
    text-align: center;
    font-size: 13px;
    color: var(--gray-light);
    margin-top: 10px;
    font-style: italic;
}

.styled-list {
    margin: 25px 0;
    padding-left: 0;
}

.styled-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
}

.styled-list li i {
    color: var(--primary-dark);
}

.content-quote {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
    position: relative;
}

.content-quote blockquote {
    font-size: 18px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin: 0;
    line-height: 1.8;
}

.content-quote cite {
    display: block;
    margin-top: 15px;
    color: var(--primary-dark);
    font-style: normal;
    font-weight: 500;
}

.treatment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.treatment-card {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
}

.treatment-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 22px;
}

.treatment-card h4 {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.treatment-card p {
    font-size: 13px;
    margin: 0;
}

.mistakes-list {
    margin: 30px 0;
}

.mistake-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
}

.mistake-number {
    width: 40px;
    height: 40px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.mistake-item h4 {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}

.mistake-item p {
    margin: 0;
    font-size: 14px;
}

.content-cta {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 40px 0;
}

.content-cta h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.content-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.tags-label {
    font-weight: 600;
    color: var(--dark);
}

.tag {
    padding: 6px 15px;
    background: var(--secondary);
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.share-label {
    font-weight: 600;
    color: var(--dark);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #1a7e42; }
.share-btn.pinterest { background: #bd081c; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.author-box {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius-lg);
    margin: 30px 0;
}

.author-image {
    flex-shrink: 0;
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
}

.author-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
    font-weight: 600;
}

.author-info h4 {
    font-size: 20px;
    margin: 5px 0;
}

.author-title {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 14px;
    color: var(--gray);
}

.author-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

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

.author-social a:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.post-nav-link {
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.post-nav-link:hover {
    background: var(--secondary);
}

.nav-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    display: block;
    margin-bottom: 8px;
}

.nav-title {
    font-weight: 600;
    color: var(--dark);
    display: block;
}

.post-nav-link.next {
    text-align: right;
}

.related-posts {
    margin-top: 50px;
}

.related-title {
    font-size: 24px;
    margin-bottom: 25px;
}

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

.related-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
}

.related-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

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

.related-link {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.related-card:hover .related-link {
    opacity: 1;
    transform: translateY(0);
}

.related-content {
    padding: 20px;
}

.related-category {
    font-size: 12px;
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-content h4 {
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.4;
}

.related-content h4 a:hover {
    color: var(--primary-dark);
}

.related-date {
    font-size: 13px;
    color: var(--gray-light);
}

/* Comments Section */
.comments-section {
    margin-top: 50px;
}

.comments-title {
    font-size: 24px;
    margin-bottom: 25px;
}

.comments-list {
    margin-bottom: 40px;
}

.comment {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.comment.reply {
    margin-left: 60px;
    padding-left: 20px;
    border-left: 2px solid var(--secondary);
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.comment-header h5 {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.author-badge {
    padding: 3px 10px;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

.comment-date {
    font-size: 13px;
    color: var(--gray-light);
}

.comment-content p {
    color: var(--gray);
    margin-bottom: 10px;
}

.reply-btn {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.comment-form-wrapper {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.comment-form-wrapper h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Blog Sidebar Widgets */
.author-widget {
    text-align: center;
    padding: 30px;
}

.widget-author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--secondary);
}

.author-widget h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-widget p {
    color: var(--gray);
    font-size: 14px;
}

.widget-author-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.widget-author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

.widget-author-social a:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.cta-widget {
    background: var(--gradient-primary);
    text-align: center;
    padding: 30px;
}

.cta-widget i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 15px;
}

.cta-widget h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 10px;
}

.cta-widget p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 20px;
}

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

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

/* =============================================
   CONTACT PAGE STYLES
============================================= */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-dark);
}

.contact-info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-info-card p a {
    color: var(--gray);
}

.contact-info-card p a:hover {
    color: var(--primary-dark);
}

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

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.section-header-left {
    margin-bottom: 30px;
}

.section-subtitle-left {
    display: inline-block;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.section-header-left p {
    color: var(--gray);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
}

.quick-contact-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.quick-contact-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.quick-contact-box p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
}

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

.btn-dark:hover {
    background: var(--dark-light);
}

.btn-whatsapp {
    background: #1a7e42;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #15693a;
}

.contact-social-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.contact-social-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-social-box p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.social-link i {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.social-link.instagram i { color: #E4405F; }
.social-link.facebook i { color: #3b5998; }
.social-link.youtube i { color: #FF0000; }
.social-link.twitter i { color: #1da1f2; }

.social-link:hover {
    background: var(--secondary);
}

/* Branches Section */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.branch-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.branch-card.featured {
    border: 2px solid var(--accent);
}

.branch-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.branch-image {
    height: 200px;
    overflow: hidden;
}

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

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

.branch-content {
    padding: 25px;
}

.branch-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.branch-info {
    margin-bottom: 20px;
}

.branch-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 8px;
}

.branch-info li i {
    color: var(--primary-dark);
    width: 20px;
}

.branch-actions {
    display: flex;
    gap: 10px;
}

/* FAQ Section */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item.active {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-item.active .faq-question {
    background: var(--secondary);
}

.faq-question h4 {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0;
    color: var(--dark);
    flex: 1;
    padding-right: 15px;
}

.faq-question i {
    color: var(--primary-dark);
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    color: var(--gray);
    line-height: 1.8;
}

.contact-faq .faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

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

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

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

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

/* =============================================
   BOOKING PAGE STYLES
============================================= */
.booking-steps-section {
    background: var(--light);
    padding: 30px 0;
}

.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: var(--transition);
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--gray);
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.step span {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
}

.step.active span {
    color: var(--primary-dark);
}

.step-line {
    width: 80px;
    height: 2px;
    background: var(--border);
    margin: 0 10px;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
}

.booking-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step-header {
    margin-bottom: 30px;
}

.form-step-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-step-header p {
    color: var(--gray);
}

/* Branch Selection */
.branch-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.branch-option {
    cursor: pointer;
}

.branch-option input {
    display: none;
}

.branch-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.branch-option input:checked + .branch-option-content {
    border-color: var(--primary-dark);
    background: var(--secondary);
}

.branch-option-content i {
    font-size: 20px;
    color: var(--primary-dark);
}

.branch-option-content strong {
    display: block;
    font-size: 14px;
}

.branch-option-content span {
    font-size: 12px;
    color: var(--gray);
}

/* Service Categories */
.service-categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.service-category {
    cursor: pointer;
}

.service-category input {
    display: none;
}

.category-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: center;
}

.service-category input:checked + .category-content {
    border-color: var(--primary-dark);
    background: var(--secondary);
}

.category-content i {
    font-size: 24px;
    color: var(--primary-dark);
}

.category-content span {
    font-size: 12px;
    font-weight: 500;
}

.category-content .service-price {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 2px;
}

/* Date Picker */
.date-picker {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius-lg);
}

.date-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.date-nav {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.date-nav:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.current-month {
    font-weight: 600;
    font-size: 16px;
}

.date-picker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.day-name {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    padding: 10px;
}

.date-picker-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.date.disabled {
    color: var(--gray-light);
    cursor: not-allowed;
}

.date.today {
    border: 2px solid var(--primary);
    color: var(--primary-dark);
    font-weight: 600;
}

.date.available:hover {
    background: var(--secondary);
}

.date.selected {
    background: var(--primary-dark);
    color: var(--white);
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.time-slot {
    cursor: pointer;
}

.time-slot input {
    display: none;
}

.time-slot span {
    display: block;
    padding: 12px;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.time-slot:hover span {
    border-color: var(--primary-dark);
}

.time-slot input:checked + span,
.time-slot.selected span {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.time-slot.unavailable {
    cursor: not-allowed;
}

.time-slot.unavailable span {
    background: var(--light);
    color: var(--gray-light);
    text-decoration: line-through;
}

.time-slot.unavailable:hover span {
    border-color: var(--border);
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.form-actions .btn:only-child {
    margin-left: auto;
}

/* Booking Summary */
.booking-summary {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
}

.summary-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

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

.summary-section h4 {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-section h4 i {
    color: var(--primary-dark);
}

.summary-section p {
    font-weight: 500;
    text-align: right;
}

.summary-section.highlight {
    background: var(--secondary);
    margin: 15px -30px;
    padding: 20px 30px;
}

.summary-section.highlight p {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    font-family: 'Poppins', sans-serif;
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 15px 0;
}

.summary-notes {
    padding-top: 15px;
}

.summary-notes h4 {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-notes p {
    color: var(--gray);
    font-size: 14px;
    font-style: italic;
}

.booking-notice {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--secondary);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.booking-notice > i {
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}

.booking-notice strong {
    display: block;
    margin-bottom: 5px;
}

.booking-notice p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Booking Success */
.booking-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.booking-success h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.booking-success > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.success-details {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
}

.success-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.success-detail-item:last-child {
    border-bottom: none;
}

.success-detail-item .label {
    color: var(--gray);
}

.success-detail-item .value {
    font-weight: 600;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Booking Sidebar */
.booking-sidebar .sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.booking-sidebar .sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.booking-info-widget {
    background: var(--secondary);
}

.booking-info-widget h3 {
    border-bottom-color: rgba(0,0,0,0.08);
}

.selected-service-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.selected-service-info h4 {
    font-size: 18px;
    margin-bottom: 2px;
}

.selected-service-info p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.service-details-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 14px;
}

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

.service-details-list li i {
    color: var(--primary-dark);
    width: 20px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
}

.benefits-list li i {
    color: var(--accent);
}

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

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.btn-block {
    width: 100%;
}

.promo-widget {
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
}

.promo-widget h3 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}

.promo-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.promo-widget h4 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 10px;
}

.promo-widget p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 15px;
}

.promo-code {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: 2px;
}

/* Booking Testimonials */
.booking-testimonials .testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.booking-testimonials .testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.booking-testimonials .testimonial-rating {
    margin-bottom: 15px;
}

.booking-testimonials .testimonial-rating i {
    color: var(--accent);
}

.booking-testimonials .testimonial-text {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
}

.booking-testimonials .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.booking-testimonials .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.booking-testimonials .testimonial-author h5 {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2px;
}

.booking-testimonials .testimonial-author span {
    font-size: 12px;
    color: var(--gray-light);
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: 14px;
    color: var(--gray);
}

.checkbox-label span a {
    color: var(--primary-dark);
    font-weight: 500;
}

/* =============================================
   RESPONSIVE - ADDITIONAL PAGES
============================================= */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        order: -1;
    }
}

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

    .blog-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .treatment-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .time-slots {
        grid-template-columns: repeat(4, 1fr);
    }

    .booking-testimonials .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .post-meta-header {
        gap: 15px;
    }

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

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

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

    .treatment-cards,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-social {
        justify-content: center;
    }

    .comment.reply {
        margin-left: 30px;
    }

    .booking-steps {
        flex-wrap: wrap;
        gap: 15px;
    }

    .step-line {
        display: none;
    }

    .branch-select,
    .service-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .booking-testimonials .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .quick-contact-buttons {
        flex-direction: column;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .booking-info-widget {
        display: none;
    }

    .booking-sidebar .sidebar-widget:has(.benefits-list) {
        display: none;
    }

    .promo-widget {
        display: none;
    }

    .booking-form-container {
        order: 1;
    }

    .booking-sidebar {
        display: flex;
        flex-direction: column;
        order: 2;
    }

    .contact-widget {
        order: 3;
    }
}

@media (max-width: 480px) {
    .branch-select,
    .service-categories {
        grid-template-columns: 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .success-actions {
        flex-direction: column;
    }

    .date-picker {
        padding: 15px;
    }

    .date-picker-days {
        gap: 4px;
    }

    .day-name {
        font-size: 10px;
        padding: 5px;
    }

    .date-picker-dates {
        gap: 4px;
    }

    .date {
        font-size: 12px;
    }

    .gallery-item {
        height: 200px;
    }
}
