/* ============================================
   Blue White Beauty - Premium Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #1e3a5f;
    --primary-dark: #142942;
    --primary-light: #2a4f7f;
    --secondary: #3b82f6;
    --secondary-dark: #2563eb;
    --secondary-light: #60a5fa;
    --accent: #d4a853;
    --accent-dark: #b8912f;
    --accent-light: #e8c068;
    --primary-color: #d4a853;
    --white: #ffffff;
    --off-white: #f8fafc;
    --dark: #0a1628;
    --text: #1a1a2e;
    --text-light: #64748b;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) var(--gray-200);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-200); }
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
}

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

.preloader-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-top: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.preloader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-top: 30px;
    overflow: hidden;
    position: relative;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 10px;
    animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
    0% { left: -40%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* ---------- Top Bar ---------- */
.topbar {
    background: var(--dark);
    padding: 10px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar-left a,
.topbar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
}

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

.topbar-left i {
    color: var(--accent);
    font-size: 0.72rem;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.topbar-badge i { margin-right: 4px; }

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

.topbar-social a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.topbar-social a:hover { color: var(--accent); transform: translateY(-1px); }

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary);
    transition: var(--transition);
    padding: 16px 0;
}

.header.scrolled {
    background: #1e3a5f;
    backdrop-filter: none;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    padding: 8px 0;
    top: 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.logo-text .brand {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1.2;
}

.header.scrolled .logo-text .brand { color: var(--white); }

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

.logo-text .tagline {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    display: block;
}

.header.scrolled .logo-text .tagline { color: rgba(255,255,255,0.6); }

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

.nav-menu a {
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: 8px;
    transition: var(--transition-fast);
    position: relative;
}

.header.scrolled .nav-menu a { color: rgba(255,255,255,0.85); }

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.header.scrolled .nav-menu a:hover,
.header.scrolled .nav-menu a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* Dropdown Menus */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: 8px;
    transition: var(--transition-fast);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.nav-dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s;
}
.nav-dropdown:hover .nav-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}
.header.scrolled .nav-dropdown-toggle { color: rgba(255,255,255,0.85); }
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.header.scrolled .nav-dropdown-toggle:hover,
.header.scrolled .nav-dropdown-toggle.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600) !important;
    transition: var(--transition-fast);
    background: none !important;
    border-radius: 0 !important;
}
.nav-dropdown-menu a:hover {
    color: var(--secondary) !important;
    background: rgba(59,130,246,0.06) !important;
    padding-left: 24px;
}
.nav-dropdown-menu a i {
    width: 20px;
    text-align: center;
    margin-right: 6px;
    font-size: 0.8rem;
}

/* Mobile Nav Submenu */
.mobile-nav-group {
    display: flex;
    flex-direction: column;
}
.mobile-nav-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-nav-arrow {
    transition: transform 0.3s;
    font-size: 0.7rem;
}
.mobile-nav-group.open .mobile-nav-arrow {
    transform: rotate(180deg);
}
.mobile-nav-children {
    display: none;
    padding-left: 16px;
    border-left: 2px solid rgba(59,130,246,0.2);
    margin-left: 12px;
}
.mobile-nav-group.open .mobile-nav-children {
    display: block;
}
.mobile-nav-children a {
    font-size: 0.9rem;
    padding: 8px 12px;
}

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

.nav-phone {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header.scrolled .nav-phone { color: rgba(255,255,255,0.8); }

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.btn-sm { padding: 8px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59,130,246,0.35);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,168,83,0.35);
}

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

.btn-outline-gold:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
}

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

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

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

.btn-whatsapp:hover {
    background: #1ebd5a;
    transform: translateY(-2px);
}

/* ---------- Hamburger ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 5px;
    transition: var(--transition);
}

.header.scrolled .hamburger span { background: var(--white); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Mobile Menu ---------- */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.mobile-menu.open { right: 0; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-header .logo-text .brand { color: var(--primary); }
.mobile-menu-header .logo-text .tagline { color: var(--gray-400); }

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: var(--gray-100);
    color: var(--gray-600);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.mobile-menu-close:hover {
    background: var(--error);
    color: white;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.mobile-nav a {
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(59,130,246,0.06);
    color: var(--secondary);
}

.mobile-menu-cta {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
}

.mobile-menu-cta .btn {
    justify-content: center;
    width: 100%;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ---------- Hero Slider ---------- */
.hero-slides {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    z-index: 0;
}

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

.hero-slide .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-slide .hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 7s ease;
}

.hero-slide.active .hero-bg img {
    transform: scale(1.08);
}

.hero-slide .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,22,40,0.85), rgba(30,58,95,0.75));
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding-top: 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide .hero-badge {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.hero-slide.active .hero-badge {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide .hero-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s;
}

.hero-slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide .hero-desc {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
}

.hero-slide.active .hero-desc {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide .hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.95s, transform 0.6s ease 0.95s;
}

.hero-slide.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-slider-arrow {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-slider-arrow:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.1);
}

.hero-slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    padding: 0;
}

.hero-slider-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.hero-slider-dot.active {
    border-color: var(--accent);
    width: 36px;
    border-radius: 8px;
}

.hero-slider-dot.active::after {
    transform: translate(-50%, -50%) scale(1);
    width: 20px;
    height: 4px;
    border-radius: 4px;
}

/* Slider Progress Bar */
.hero-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    z-index: 10;
}

.hero-slider-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* Stats Bar - bottom of hero */
.hero-stats-bar {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-stats-bar .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    background: rgba(10,22,40,0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 20px 40px;
    pointer-events: auto;
}

.hero-shapes {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(59,130,246,0.08);
}

.hero-shape:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-shape:nth-child(2) { width: 400px; height: 400px; bottom: -100px; left: -50px; background: rgba(212,168,83,0.06); }
.hero-shape:nth-child(3) { width: 200px; height: 200px; top: 30%; left: 15%; background: rgba(59,130,246,0.05); }
.hero-shape:nth-child(4) { width: 300px; height: 300px; bottom: 20%; right: 20%; background: rgba(212,168,83,0.04); }

.hero-dots {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(212,168,83,0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-dot:nth-child(2) { top: 40%; right: 15%; animation-delay: 1s; }
.hero-dot:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 2s; }
.hero-dot:nth-child(4) { top: 60%; left: 60%; animation-delay: 3s; }
.hero-dot:nth-child(5) { top: 15%; right: 30%; animation-delay: 4s; }
.hero-dot:nth-child(6) { bottom: 20%; right: 35%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-20px); opacity: 0.8; }
}

/* hero-content is now inside slides - styled above */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,168,83,0.15);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(212,168,83,0.2);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

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

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59,130,246,0.08);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(59,130,246,0.1);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 16px;
}

.section-title span { color: var(--secondary); }

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---------- Service Cards ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: rgba(184, 134, 11, 0.15);
}

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

/* Service Image Card */
.service-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-image-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.12), transparent);
    pointer-events: none;
}

.service-content {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card:not(.has-image) .service-content {
    padding: 40px 30px;
}

.service-card.has-image .service-content p {
    flex: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(184,134,11,0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent, #b8860b);
    transition: background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary, #1a365d);
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card .btn {
    font-size: 0.82rem;
    padding: 8px 20px;
    margin-top: auto;
    transition: background 0.3s ease, transform 0.2s ease;
}

.service-card:hover .btn {
    transform: translateX(2px);
}

/* Service Card as Link */
a.service-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Service Image Placeholder */
.service-image-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary, #1a365d), var(--accent, #b8860b));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-placeholder i {
    font-size: 3rem;
    color: rgba(255,255,255,0.35);
}

/* Service Count Badge */
.service-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent, #b8860b);
    background: rgba(184, 134, 11, 0.06);
    border: 1px solid rgba(184, 134, 11, 0.15);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

/* Service Meta (Süre / Fiyat) */
.service-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100, #f0f0f0);
}

.service-meta-item {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent, #b8860b);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-meta-item i {
    font-size: 0.75rem;
}

/* Service Image Placeholder Large (for detail page) */
.service-image-placeholder--large {
    width: 100%;
    height: clamp(250px, 40vw, 400px);
    border-radius: var(--radius-lg, 20px);
}

.service-image-placeholder--large i {
    font-size: 5rem;
}

/* Service Info Cards (Detail Page) */
.service-info-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.service-info-card {
    flex: 1;
    min-width: 140px;
    background: var(--bg-secondary, #f8f9fa);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-info-card:hover {
    border-color: rgba(184, 134, 11, 0.2);
    transform: translateY(-2px);
}

.service-info-card i {
    font-size: 1.5rem;
    color: var(--accent, #b8860b);
    margin-bottom: 0.5rem;
    display: block;
}

.service-info-label {
    font-size: 0.8rem;
    color: var(--text-light, #6c757d);
    margin-bottom: 4px;
}

.service-info-value {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text, #1a1a2e);
}

/* Service Detail Actions */
.service-detail-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Service Description */
.service-description {
    line-height: 1.8;
    color: var(--text-light, #555);
    margin-bottom: 1rem;
}

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

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.about-image-badge i { margin-right: 8px; }

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content h2 span { color: var(--secondary); }

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.about-feature i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.about-feature span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

/* ---------- Campaign Banner ---------- */
.campaign-banner {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    position: relative;
    overflow: hidden;
}

.campaign-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,168,83,0.12), transparent 70%);
    border-radius: 50%;
}

.campaign-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.campaign-banner-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.campaign-banner-content h2 span { color: var(--accent); }

.campaign-banner-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.campaign-banner-discount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin: 20px 0;
}

.campaign-banner-content .btn {
    margin-top: 16px;
}

/* ---------- Review Section ---------- */
.review-section { background: var(--off-white); }

.review-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 280px;
}

.review-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.review-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--gray-100);
}

.review-card .stars {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.review-card .stars i { margin: 0 2px; }

.review-card blockquote {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.review-card .reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.review-card .reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gray-100);
}

.review-card .reviewer-info h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.review-card .reviewer-info span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-fast);
}

.review-dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

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

.gallery-filter-btn,
.filter-btn {
    padding: 8px 22px;
    border: 2px solid var(--gray-200);
    background: transparent;
    color: var(--gray-600);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

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

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

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(30,58,95,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
}

/* ---------- Before After ---------- */
.before-after-grid,
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.ba-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.ba-before,
.ba-after {
    position: relative;
    overflow: hidden;
}

.ba-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    bottom: 8px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ba-label.before,
.ba-before .ba-label { left: 8px; background: rgba(239,68,68,0.9); color: white; }
.ba-label.after,
.ba-after .ba-label { right: 8px; background: rgba(16,185,129,0.9); color: white; }

.ba-content,
.ba-info {
    padding: 20px;
    text-align: center;
}

.ba-content h4,
.ba-info h4 { font-size: 1rem; margin-bottom: 6px; }
.ba-content p,
.ba-info p { font-size: 0.82rem; color: var(--text-light); }

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    border-radius: 50%;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ---------- Contact Section ---------- */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

.contact-info-card .icon,
.contact-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(59,130,246,0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary);
}

.contact-info-card h3,
.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-info-card a:hover { color: var(--secondary); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

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

.contact-form h3 i { color: var(--secondary); margin-right: 8px; }

.form-desc {
    font-size: 0.88rem;
    color: var(--gray-400);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--gray-700);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

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

.form-group select { cursor: pointer; }

/* ---------- Appointment Form ---------- */
.appointment-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.appointment-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.appointment-form h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    margin-top: 28px;
}

.appointment-form h3:first-child { margin-top: 0; }

.appointment-form h3 i { color: var(--accent); margin-right: 8px; }

.appointment-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.appointment-info-card,
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.appointment-info-card h4,
.appointment-info-card h3,
.sidebar-card h4,
.sidebar-card h3 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.appointment-info-card h4 i,
.appointment-info-card h3 i,
.sidebar-card h4 i,
.sidebar-card h3 i {
    color: var(--secondary);
    margin-right: 8px;
}

.appointment-info-card ul li,
.sidebar-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--gray-100);
}

.appointment-info-card ul li:last-child,
.sidebar-card ul li:last-child { border-bottom: none; }

.appointment-info-card ul li i,
.sidebar-card ul li i {
    color: var(--success);
    width: 16px;
    text-align: center;
}

/* Sidebar Hours */
.sidebar-hours {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.88rem;
    color: var(--text-light);
}

.hour-row:last-child { border-bottom: none; }

.hour-row span:first-child {
    font-weight: 600;
    color: var(--text);
}

.hour-row.closed span {
    color: var(--danger, #ef4444);
}

/* ---------- Map ---------- */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container {
    height: 100%;
    min-height: 480px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

/* ---------- Premium Service Picker ---------- */
.premium-service-picker,
.service-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.service-pick {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 18px 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-pick::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.service-pick:hover {
    border-color: var(--secondary-light);
    background: rgba(59,130,246,0.02);
}

.service-pick.active {
    border-color: var(--secondary);
    background: rgba(59,130,246,0.04);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.08);
}

.service-pick.active::after {
    opacity: 1;
    transform: scale(1);
}

.service-pick-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(59,130,246,0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--secondary);
    transition: var(--transition);
}

.service-pick.active .service-pick-icon {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
}

.service-pick span,
.service-pick-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    display: block;
}

.service-pick-check {
    display: none;
}

/* ---------- Premium Date Picker ---------- */
.premium-date-picker,
.date-picker {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 12px;
}

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

.date-picker-month,
.date-picker-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.date-nav-btn,
.date-nav {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    color: var(--gray-600);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.date-nav-btn:hover,
.date-nav:hover {
    background: var(--secondary);
    color: white;
}

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

.date-picker-days-header span,
.date-picker-days span {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    padding: 6px 0;
}

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

.date-cell {
    text-align: center;
    padding: 10px 4px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text);
}

.date-cell:hover:not(.past):not(.sunday):not(.empty) {
    background: rgba(59,130,246,0.08);
    color: var(--secondary);
}

.date-cell.active {
    background: var(--secondary) !important;
    color: white !important;
    font-weight: 700;
}

.date-cell.today {
    border: 2px solid var(--accent);
    font-weight: 700;
    color: var(--accent-dark);
}

.date-cell.past {
    color: var(--gray-300);
    cursor: not-allowed;
}

.date-cell.sunday {
    color: var(--gray-300);
    cursor: not-allowed;
    text-decoration: line-through;
}

.date-cell.empty { cursor: default; }

/* ---------- Premium Time Picker ---------- */
.premium-time-picker,
.time-picker {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.time-period-label,
.time-period h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-period-label i,
.time-period h4 i { color: var(--accent); }

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.time-slot {
    padding: 10px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
    background: var(--white);
}

.time-slot:hover {
    border-color: var(--secondary-light);
    background: rgba(59,130,246,0.02);
}

.time-slot.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}

/* ---------- Appointment Summary ---------- */
.appointment-summary {
    background: linear-gradient(135deg, rgba(59,130,246,0.04), rgba(212,168,83,0.04));
    border: 2px solid rgba(59,130,246,0.1);
    border-radius: var(--radius);
    padding: 24px;
    margin: 20px 0;
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.summary-title i {
    color: var(--accent);
    margin-right: 8px;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-item,
.summary-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
}

.summary-item i,
.summary-label i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

.summary-item span,
.summary-label {
    font-weight: 600;
}

.summary-value {
    margin-left: auto;
    font-weight: 600;
    color: var(--primary);
}

/* ---------- Footer ---------- */
.footer {
    background: linear-gradient(135deg, var(--dark), #0f1d35);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text .brand { color: var(--white); }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,0.4); }

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-col ul li a i {
    font-size: 0.6rem;
    color: var(--secondary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.footer-contact-item span,
.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 8px;
}
.footer-legal-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-legal-links a:hover {
    color: rgba(255,255,255,0.9);
}

/* ---------- Music Player Float ---------- */
.music-float {
    position: fixed;
    bottom: 90px;
    left: 28px;
    z-index: 999;
}

.music-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.music-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.2);
}

.music-float.playing .music-toggle {
    animation: musicGlow 2s ease-in-out infinite;
}

@keyframes musicGlow {
    0%, 100% { box-shadow: 0 6px 24px rgba(var(--primary-rgb, 0,0,0), 0.25); }
    50% { box-shadow: 0 6px 32px rgba(var(--primary-rgb, 0,0,0), 0.45); }
}

.music-eq {
    display: none;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.music-eq span {
    display: block;
    width: 3px;
    background: white;
    border-radius: 2px;
    animation: eqBar 0.8s ease-in-out infinite;
}

.music-eq span:nth-child(1) { height: 8px; animation-delay: 0s; }
.music-eq span:nth-child(2) { height: 14px; animation-delay: 0.2s; }
.music-eq span:nth-child(3) { height: 10px; animation-delay: 0.4s; }

@keyframes eqBar {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 8px 30px rgba(37,211,102,0.35);
    transition: var(--transition);
    position: relative;
}

.whatsapp-float a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.45);
}

.whatsapp-float i { font-size: 1.3rem; }

.whatsapp-float .pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59,130,246,0.4);
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ---------- Page Hero (Sub Pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.1), transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,168,83,0.06), transparent 70%);
    border-radius: 50%;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,168,83,0.15);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(212,168,83,0.2);
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero h1 span { color: var(--accent); }

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-breadcrumb,
.breadcrumb {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.page-hero-breadcrumb a,
.breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero-breadcrumb a:hover,
.breadcrumb a:hover { color: var(--accent); }
.page-hero-breadcrumb span,
.breadcrumb span { color: var(--accent); }
.page-hero-breadcrumb i,
.breadcrumb i { color: rgba(255,255,255,0.3); font-size: 0.7rem; }

/* ---------- Service Detail Sections ---------- */
.service-detail-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--gray-100);
}

.service-detail-section:nth-child(even) { background: var(--off-white); }

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

.service-detail-section:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail-section:nth-child(even) .service-detail-grid > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.service-detail-content h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.service-detail-content h3 i {
    color: var(--secondary);
    margin-right: 10px;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail-features,
.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}

.service-detail-feature,
.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
}

.service-detail-feature i,
.service-feature-item i {
    color: var(--success);
    font-size: 0.82rem;
}

.service-detail-price,
.service-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(212,168,83,0.08));
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 12px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.service-detail-price i,
.service-price i { color: var(--accent); }

/* ---------- Review Page Styles ---------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card-page {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.review-card-page:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-card-page .stars {
    color: var(--accent);
    margin-bottom: 14px;
}

.review-card-page blockquote {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-card-page .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.review-card-page .reviewer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-card-page .reviewer-info h4 {
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.review-card-page .reviewer-info span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.review-date {
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--gray-400);
}

.review-date i {
    margin-right: 6px;
    color: var(--gray-300);
}

/* Review Overview */
.review-overview {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 60px;
    border: 1px solid var(--gray-100);
}

.review-overview-score {
    text-align: center;
    flex-shrink: 0;
}

.review-overview-score .score,
.review-big-score {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.review-overview-score .stars,
.review-stars {
    color: var(--accent);
    margin: 10px 0 6px;
    font-size: 1.1rem;
}

.review-overview-score .count,
.review-count {
    font-size: 0.82rem;
    color: var(--text-light);
}

.review-overview-bars {
    flex: 1;
    min-width: 300px;
}

.review-bar-item,
.review-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.review-bar-item span:first-child,
.review-bar-row span:first-child,
.review-bar-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    min-width: 16px;
}

.review-bar-track,
.review-bar-row > .review-bar {
    flex: 1;
    height: 8px;
    background: var(--gray-100);
    border-radius: 10px;
    overflow: hidden;
}

.review-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 10px;
    transition: width 1s ease;
}

.review-bar-item span:last-child,
.review-bar-row span:last-child,
.review-bar-percent {
    font-size: 0.78rem;
    color: var(--text-light);
    min-width: 30px;
    text-align: right;
}

/* ---------- Campaign Page Cards ---------- */
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.campaign-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

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

.campaign-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
}

.campaign-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(59,130,246,0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    transition: var(--transition);
}

.campaign-card:hover .campaign-card-icon {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
}

.campaign-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.campaign-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.campaign-card-price {
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.campaign-card-price .old-price {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-right: 10px;
}

.campaign-card-price .new-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.campaign-card-validity {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.campaign-card-validity i {
    color: var(--accent);
    margin-right: 4px;
}

.campaign-card .btn {
    width: 100%;
}

/* ---------- Campaign Image Card (alternate) ---------- */
.campaign-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.campaign-card-content {
    padding: 24px;
}

.campaign-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.campaign-card-content p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.campaign-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.campaign-card-old-price {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-left: 8px;
}

/* ---------- Info Box ---------- */
.info-box {
    background: linear-gradient(135deg, rgba(59,130,246,0.04), rgba(212,168,83,0.04));
    border: 1px solid rgba(59,130,246,0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 60px;
}

.info-box-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}

.info-box-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.info-box-content p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.info-box-content ul li {
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
    line-height: 1.7;
}

.info-box-content ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .topbar { display: none; }
    .header { top: 0 !important; }
    .hamburger { display: flex; }
    .nav-menu { display: none; }
    .nav-phone { display: none; }
    .hero-title { font-size: 2.5rem; }
    .hero-slider-nav { bottom: 110px; }
    .hero-stats-bar .hero-stats { gap: 40px; padding: 16px 24px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .appointment-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .before-after-grid, .ba-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .service-detail-section:nth-child(even) .service-detail-grid { direction: ltr; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .campaigns-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { min-height: 90vh; }
    .hero-title { font-size: 2rem; }
    .hero-stats { gap: 24px; }
    .hero-stat-number { font-size: 1.6rem; }
    .hero-buttons { flex-direction: column; }
    .hero-slider-nav { bottom: 100px; gap: 10px; }
    .hero-slider-arrow { width: 38px; height: 38px; font-size: 0.75rem; }
    .hero-stats-bar .hero-stats { gap: 24px; padding: 14px 20px; flex-wrap: wrap; justify-content: center; }
    .hero-stats-bar { bottom: 16px; }
    .hero-slide .hero-content { padding-top: 60px; }
    .section { padding: 70px 0; }
    .section-title { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .before-after-grid, .ba-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 120px 0 60px; }
    .page-hero h1 { font-size: 2.2rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .premium-service-picker, .service-picker { grid-template-columns: repeat(2, 1fr); }
    .whatsapp-float a span { display: none; }
    .whatsapp-float a { padding: 14px; border-radius: 50%; }
    .music-float { bottom: 80px; left: 16px; }
    .music-toggle { width: 42px; height: 42px; font-size: 1rem; }
    .campaigns-grid { grid-template-columns: 1fr; }
    .review-overview { flex-direction: column; padding: 32px 24px; gap: 32px; }
    .review-overview-bars { min-width: auto; width: 100%; }
    .info-box { flex-direction: column; }
    .service-info-cards { flex-direction: column; }
    .service-info-card { min-width: auto; }
    .service-detail-actions { flex-direction: column; }
    .service-detail-actions .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .hero-slider-arrow { display: none; }
    .hero-slider-nav { bottom: 90px; }
    .hero-stats-bar .hero-stats { gap: 16px; padding: 12px 16px; }
    .hero-stat-text { font-size: 0.68rem; }
    .section-title { font-size: 1.6rem; }
    .page-hero h1 { font-size: 1.8rem; }
    .page-hero .hero-badge { font-size: 0.8rem; }
    .contact-form, .appointment-form { padding: 24px; }
    .premium-service-picker, .service-picker { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-social a { width: 44px; height: 44px; font-size: 1rem; }
}

/* ============================================
   1. SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    z-index: 10001;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5), 0 0 5px rgba(212, 168, 83, 0.3);
    border-radius: 0 2px 2px 0;
}

/* ============================================
/* ============================================
   3. HERO TYPED TEXT
   ============================================ */
.typed-wrapper {
    display: inline-block;
    position: relative;
    min-width: 20px;
    min-height: 1.2em;
}

.typed-text {
    color: var(--accent);
    position: relative;
}

.typed-text::after {
    content: '|';
    position: relative;
    right: -2px;
    color: var(--accent);
    font-weight: 300;
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.hero-title .typed-wrapper {
    display: block;
    margin-top: 4px;
}

/* ============================================
   4. CARD 3D TILT EFFECT
   ============================================ */
.campaign-card,
.review-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.campaign-card *,
.review-card * {
    transform: translateZ(0);
}

.campaign-card:hover .campaign-icon {
    transform: translateZ(40px);
}

/* ============================================
   5. FLOATING LABELS
   ============================================ */
.float-group {
    position: relative;
    margin-bottom: 16px;
}

.float-group input,
.float-group textarea {
    width: 100%;
    padding: 22px 16px 8px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.float-group textarea {
    min-height: 100px;
    resize: vertical;
}

.float-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 4px;
    z-index: 1;
}

.float-group textarea ~ label {
    top: 22px;
    transform: none;
}

.float-group input:focus,
.float-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

.float-group input:focus ~ label,
.float-group input:not(:placeholder-shown) ~ label {
    top: 6px;
    transform: translateY(0);
    font-size: 0.72rem;
    color: var(--secondary);
    background: var(--white);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.float-group textarea:focus ~ label,
.float-group textarea:not(:placeholder-shown) ~ label {
    top: -2px;
    transform: translateY(0);
    font-size: 0.72rem;
    color: var(--secondary);
    background: var(--white);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Error state for floating labels */
.float-group input.error,
.float-group textarea.error {
    border-color: #ef4444;
}

.float-group input.error ~ label,
.float-group textarea.error ~ label {
    color: #ef4444;
}

/* Success state for floating labels */
.float-group input.valid:not(:placeholder-shown),
.float-group textarea.valid:not(:placeholder-shown) {
    border-color: #10b981;
}

.float-group .float-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 0 0 var(--radius) var(--radius);
}

.float-group input:focus ~ .float-line,
.float-group textarea:focus ~ .float-line {
    width: 100%;
}

/* ============================================
   6. TOAST NOTIFICATION
   ============================================ */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    min-width: 340px;
    border-left: 4px solid #10b981;
    backdrop-filter: blur(10px);
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.toast-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
    font-family: var(--font-heading);
}

.toast-content p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray-300);
    cursor: pointer;
    font-size: 1rem;
    margin-left: auto;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    background: var(--gray-100);
    color: var(--text);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 4px;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 0 0 16px 16px;
    animation: toast-progress 5s linear forwards;
}

@keyframes toast-progress {
    from { width: calc(100% - 8px); }
    to { width: 0; }
}

/* ============================================
   7. COOKIE BANNER (KVKK)
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark), #0f1d35);
    color: var(--white);
    padding: 24px 0;
    z-index: 9999;
    transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-banner-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), #e8c068);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookie-banner-text {
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-banner-text strong {
    color: var(--white);
    font-weight: 600;
}

.cookie-banner-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
    color: #e8c068;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-accept {
    padding: 11px 28px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.cookie-reject {
    padding: 11px 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.cookie-reject:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   RESPONSIVE - Premium Details
   ============================================ */
@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .cookie-banner-icon {
        display: none;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
    .toast {
        min-width: auto;
        margin: 0;
        right: 0;
    }
    .toast-container {
        left: 16px;
        right: 16px;
    }
    .hero-title .typed-wrapper {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .cookie-banner-actions {
        flex-direction: column;
    }
    .cookie-accept,
    .cookie-reject {
        width: 100%;
        text-align: center;
    }
}
