/* ============================================
   Emine Kerelti Beauty - Bay & Bayan
   Premium Güzellik Salonu Teması
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #b08968;
    --primary-dark: #8d6e4e;
    --primary-light: #f5ebe0;
    --secondary: #d4a373;
    --secondary-dark: #bc8a5f;
    --secondary-light: #fef9f3;
    --accent: #c9a96e;
    --accent-dark: #b08d4a;
    --rose: #c9928e;
    --rose-light: #f9eceb;
    --rose-dark: #a87470;
    --gold: #c9a96e;
    --gold-light: #f7f0e0;
    --champagne: #f5e6d3;
    --cream: #faf6f1;
    --dark: #1a1412;
    --dark-2: #2c2420;
    --dark-3: #3d332e;
    --gray-900: #1a1412;
    --gray-800: #2c2420;
    --gray-700: #4a3f3a;
    --gray-600: #6b5e57;
    --gray-500: #8e837d;
    --gray-400: #b3aaa5;
    --gray-300: #d4cec9;
    --gray-200: #e8e3df;
    --gray-100: #f5f2ef;
    --gray-50: #faf8f6;
    --white: #ffffff;
    --success: #6b9e76;
    --warning: #d4a373;
    --danger: #c9635b;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --shadow-sm: 0 1px 3px rgba(26,20,18,0.04);
    --shadow: 0 4px 12px rgba(26,20,18,0.06);
    --shadow-md: 0 8px 24px rgba(26,20,18,0.08);
    --shadow-lg: 0 16px 40px rgba(26,20,18,0.10);
    --shadow-xl: 0 24px 60px rgba(26,20,18,0.14);
    --shadow-gold: 0 8px 30px rgba(201,169,110,0.20);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--gray-100);
    overflow-x: hidden;
}

html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track { background: var(--gray-100); }
html::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

body {
    font-family: var(--font-body);
    color: var(--gray-600);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; background: transparent; }
input, textarea, select { font-family: inherit; outline: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    text-align: center;
    margin-bottom: 40px;
}

.preloader-logo .logo-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: preloaderPulse 2s infinite;
}

.preloader-logo .logo-icon i {
    font-size: 32px;
    color: var(--gold);
}

.preloader-logo .brand-name {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--white);
    letter-spacing: 3px;
    font-weight: 700;
}

.preloader-logo .brand-name span {
    color: var(--gold);
}

.preloader-logo .brand-sub {
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--gray-500);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 8px;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    animation: preloaderBar 1.8s ease-in-out forwards;
}

@keyframes preloaderBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ---------- Top Bar ---------- */
.topbar {
    background: var(--dark);
    padding: 10px 0;
    font-size: 13px;
    color: var(--gray-400);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1001;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    min-width: 0;
}

.topbar-left a,
.topbar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 13px;
}

.topbar-left a:hover { color: var(--gold); }
.topbar-left i { color: var(--gold); font-size: 12px; }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-social {
    display: flex;
    gap: 12px;
}

.topbar-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 13px;
    transition: var(--transition);
}

.topbar-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.topbar-badge {
    background: linear-gradient(135deg, var(--gold), var(--primary));
    color: var(--white);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
}

.header:not(.scrolled) {
    top: 43px;
}

.header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.header.scrolled .navbar { padding: 10px 0; }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    transition: var(--transition);
    gap: 12px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 0;
    flex-shrink: 1;
}

.logo-mark {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-mark::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
}

.logo-mark i {
    font-size: 22px;
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.logo-text .brand {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header:not(.scrolled) .logo-text .brand {
    color: var(--white);
}

.logo-text .brand em {
    font-style: normal;
    color: var(--gold);
}

.logo-text .tagline {
    font-family: var(--font-accent);
    font-size: 11px;
    color: var(--gray-500);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.header:not(.scrolled) .logo-text .tagline {
    color: rgba(255,255,255,0.6);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    padding: 10px 18px;
    border-radius: var(--radius);
    position: relative;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.header:not(.scrolled) .nav-menu a {
    color: rgba(255,255,255,0.85);
}

.header:not(.scrolled) .nav-menu a:hover,
.header:not(.scrolled) .nav-menu a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu .dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    transition: var(--transition);
}

.nav-menu .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    z-index: 100;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius);
    color: var(--gray-600) !important;
    font-size: 14px;
    font-weight: 500;
}

.nav-menu .dropdown-menu a:hover {
    background: var(--primary-light) !important;
    color: var(--primary) !important;
}

.nav-menu .dropdown-menu a i {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    transition: var(--transition);
}

.nav-menu .dropdown-menu a:hover i {
    background: var(--gold);
    color: var(--white);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.header:not(.scrolled) .nav-phone {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.2);
}

.nav-phone:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.nav-phone i {
    color: var(--gold);
    font-size: 13px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    min-width: 28px;
    cursor: pointer;
    padding: 8px 4px;
    flex-shrink: 0;
}

.hamburger span {
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.header:not(.scrolled) .hamburger span {
    background: var(--white);
}

.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 70%; }
.hamburger span:nth-child(3) { width: 50%; }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); width: 100%; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); width: 100%; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before { left: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(176,137,104,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(176,137,104,0.4);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--accent-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201,169,110,0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,169,110,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 16px;
}

.btn i { font-size: 16px; }

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,20,18,0.85) 0%, rgba(26,20,18,0.5) 50%, rgba(26,20,18,0.75) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s infinite;
}

.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.hero-particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 1.5s; animation-duration: 9s; }
.hero-particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 3s; animation-duration: 6s; }
.hero-particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 0.5s; animation-duration: 8s; }
.hero-particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 2s; animation-duration: 10s; }
.hero-particle:nth-child(6) { left: 20%; top: 80%; animation-delay: 4s; animation-duration: 7.5s; }
.hero-particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 1s; animation-duration: 8.5s; }
.hero-particle:nth-child(8) { left: 90%; top: 55%; animation-delay: 3.5s; animation-duration: 6.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
    50% { transform: translateY(-15px) translateX(-15px); opacity: 0.4; }
    75% { transform: translateY(-25px) translateX(5px); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 700px;
    padding: 120px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.3);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge i { font-size: 14px; }

.hero-title {
    font-size: 62px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--gold), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 560px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Hero Decorative Elements */
.hero-deco {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: none;
}

/* ---------- Section Styles ---------- */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-cream {
    background: var(--cream);
}

.section-gold {
    background: linear-gradient(135deg, var(--primary-light), var(--gold-light));
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-light);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-dark .section-badge {
    background: rgba(201,169,110,0.15);
}

.section-badge i {
    font-size: 14px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-dark .section-title { color: var(--white); }

.section-title span {
    color: var(--gold);
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.8;
}

.section-dark .section-desc {
    color: rgba(255,255,255,0.5);
}

/* Decorative line */
.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    border-radius: 2px;
    margin: 20px auto 0;
}

/* ---------- Services Section ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--primary));
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--gold);
    gap: 12px;
}

/* ---------- About Section ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    overflow: hidden;
}

.about-img-main {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-experience-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.about-experience-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.about-content .section-badge { margin-bottom: 16px; }
.about-content .section-title { text-align: left; font-size: 38px; }

.about-text {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
    margin: 20px 0 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--gold-light);
    transform: translateX(4px);
}

.about-feature i {
    color: var(--gold);
    font-size: 16px;
}

/* ---------- Gallery Section ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,20,18,0.8) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    color: var(--white);
}

.gallery-overlay-content h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-overlay-content span {
    font-size: 13px;
    color: var(--gold);
}

.gallery-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ---------- Testimonials ---------- */
.testimonials-section {
    background: var(--cream);
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.testimonial-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 18px;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 22px;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-light);
}

.testimonial-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--gray-500);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 16px;
    transition: var(--transition);
}

.testimonial-nav button:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 560px;
}

.cta-content h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content h2 span { color: var(--gold); }

.cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Pricing Section ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 40px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    color: var(--white);
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pricing-icon i {
    font-size: 24px;
    color: var(--gold);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.pricing-card .price small {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child { border: none; }

.pricing-features li i {
    color: var(--success);
    font-size: 14px;
}

/* ---------- Contact Info ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-info-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-info-card i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold);
    font-size: 18px;
}

.contact-info-card h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 13px;
    color: var(--gray-500);
}

.contact-info-card a {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.contact-info-card a:hover { color: var(--gold); }

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--gray-500);
    margin-bottom: 32px;
    font-size: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 14px;
    color: var(--gray-700);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201,169,110,0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ---------- Map Section ---------- */
.map-section {
    position: relative;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 48px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo .logo-text .brand { color: var(--white); }

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.5);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-col ul li a i {
    font-size: 12px;
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201,169,110,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.5);
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37,211,102,0.45);
}

.whatsapp-float a i { font-size: 20px; }

.whatsapp-float .pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: #ff4444;
    border-radius: 50%;
    border: 3px solid var(--white);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 998;
    border: 1px solid rgba(201,169,110,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-4px);
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
    background: var(--dark);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,169,110,0.06) 0%, transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    max-width: 560px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb span {
    color: var(--gold);
    font-weight: 600;
}

.breadcrumb i {
    color: rgba(255,255,255,0.3);
    font-size: 11px;
}

/* ---------- Appointment Form ---------- */
.appointment-section {
    background: var(--cream);
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.appointment-form {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.appointment-form h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.appointment-form > p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.appointment-info {
    padding: 40px 0;
}

.appointment-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.appointment-info > p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 36px;
}

.appointment-info-list {
    margin-bottom: 36px;
}

.appointment-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.appointment-info-item i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.appointment-info-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.appointment-info-item p,
.appointment-info-item a {
    font-size: 14px;
    color: var(--gray-500);
}

.appointment-info-item a:hover { color: var(--gold); }

/* ---------- Team Section ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.team-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26,20,18,0.6) 100%);
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-img-overlay { opacity: 1; }

.team-social {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--gold);
}

.team-info {
    padding: 28px;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-info span {
    font-size: 14px;
    color: var(--gold);
    font-weight: 500;
}

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.6s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.7s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.8s; }
.stagger-children .reveal:nth-child(9) { transition-delay: 0.9s; }

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.mobile-menu.open { right: 0; }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,20,18,0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--gray-100);
    gap: 12px;
    overflow: hidden;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    background: var(--gray-100);
    color: var(--dark);
}

.mobile-nav {
    padding: 24px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--gold);
}

.mobile-menu-cta {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-cta .btn { width: 100%; justify-content: center; }

/* ---------- Service Detail ---------- */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-img {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail-features {
    margin-bottom: 32px;
}

.service-detail-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.service-detail-features li i {
    color: var(--gold);
    font-size: 16px;
}

/* ---------- Before/After Gallery ---------- */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ba-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.ba-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 240px;
}

.ba-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: relative;
}

.ba-label span {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(26,20,18,0.7);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ba-info {
    padding: 20px 24px;
}

.ba-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.ba-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ---------- Instagram Feed ---------- */
.instagram-section {
    padding: 80px 0;
    background: var(--cream);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,20,18,0.5);
    color: var(--white);
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
}

.instagram-item:hover::after { opacity: 1; }

.instagram-handle {
    text-align: center;
    margin-top: 32px;
}

.instagram-handle a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.instagram-handle a:hover { color: var(--gold); }
.instagram-handle a i { font-size: 22px; color: var(--rose); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-title { font-size: 48px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 48px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .ba-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .header:not(.scrolled) { top: 0; }
    
    .nav-menu { display: none; }
    .nav-phone { display: none !important; }
    .nav-actions .btn { display: none !important; }
    .hamburger { display: flex; z-index: 50; }
    
    .logo-mark { width: 40px; height: 40px; min-width: 40px; }
    .logo-mark i { font-size: 18px; }
    .logo-text .brand { font-size: 17px; }
    .logo-text .tagline { font-size: 10px; letter-spacing: 2px; }
    .logo { gap: 10px; }
    
    .navbar { padding: 12px 0; gap: 8px; }
    .header.scrolled .navbar { padding: 8px 0; }
    
    .nav-actions { gap: 0; }
    
    .hero { min-height: 100vh; }
    .hero-content { padding: 140px 0 80px; }
    .hero-title { font-size: 36px; }
    .hero-desc { font-size: 16px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat-num { font-size: 32px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    
    .section { padding: 70px 0; }
    .section-title { font-size: 30px; }
    .section-header { margin-bottom: 48px; }
    
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-float { display: none; }
    .about-experience { top: 16px; left: 16px; padding: 16px; }
    .about-experience-num { font-size: 36px; }
    .about-features { grid-template-columns: 1fr; }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; aspect-ratio: 1; }
    
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 32px 24px; }
    
    .appointment-grid { grid-template-columns: 1fr; }
    .appointment-form { padding: 32px 24px; }
    
    .service-detail-grid { grid-template-columns: 1fr; }
    
    .team-grid { grid-template-columns: 1fr; }
    
    .ba-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-buttons { justify-content: center; }
    .cta-content h2 { font-size: 30px; }
    
    .page-hero { padding: 130px 0 70px; }
    .page-hero h1 { font-size: 34px; }
    
    .map-container { height: 300px; }
    
    .whatsapp-float a span { display: none; }
    .whatsapp-float a { padding: 14px; border-radius: 50%; }
    
    .testimonial-card { padding: 32px 24px; }
    .testimonial-text { font-size: 18px; }
    
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 30px; }
    .hero-stats { gap: 16px; }
    .section-title { font-size: 26px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-cards { grid-template-columns: 1fr; }
    
    .logo-mark { width: 36px; height: 36px; min-width: 36px; }
    .logo-mark i { font-size: 16px; }
    .logo-text .brand { font-size: 15px; }
    .logo-text .tagline { font-size: 9px; letter-spacing: 1.5px; }
    .logo { gap: 8px; }
    
    .mobile-menu { max-width: 100%; width: 100%; }
    .mobile-menu-header { padding: 16px; gap: 8px; }
    .mobile-nav { padding: 16px; }
    .mobile-nav a { padding: 14px 0; font-size: 16px; }
    .mobile-menu-cta { padding: 0 16px 16px; }
    .mobile-menu-cta .btn { padding: 12px 20px; font-size: 13px; }
    
    .page-hero { padding: 110px 0 50px; }
    .page-hero h1 { font-size: 28px; }
    
    .service-detail-content h2 { font-size: 24px; }
    .service-detail-img img { height: 280px; }
    
    .hero-badge { font-size: 11px; padding: 8px 16px; letter-spacing: 1px; }
    .hero-desc { font-size: 15px; }
    .hero-content { padding: 120px 0 60px; }
}
