/* ==========================================================================
   [SALON_ADI] NAIL STUDIO - PREMIUM DESIGN SYSTEM
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', Helvetica, Arial, sans-serif;

    /* Transition */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Shadow */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Dark Theme Variables (Primary Theme) */
.dark-theme {
    --bg-primary: #121212;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #242424;
    --bg-glass: rgba(26, 26, 26, 0.8);
    --border-glass: rgba(255, 255, 255, 0.05);
    
    --text-primary: #f5ebe6;
    --text-secondary: #b5a89f;
    --text-muted: #756a62;
    
    --accent-gold: #d4af37;
    --accent-gold-hover: #f3e5ab;
    --accent-rose: #e5a9a9;
    --accent-rose-hover: #f3c1c1;
    
    --input-bg: #222222;
    --input-border: #333333;
}

/* Light Theme Variables */
.light-theme {
    --bg-primary: #FAF7F5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f0eae5;
    --bg-glass: rgba(250, 247, 245, 0.85);
    --border-glass: rgba(0, 0, 0, 0.05);
    
    --text-primary: #2d2d2d;
    --text-secondary: #5a5550;
    --text-muted: #8c857e;
    
    --accent-gold: #8a7355;
    --accent-gold-hover: #b59b7c;
    --accent-rose: #d3a297;
    --accent-rose-hover: #e5bdaf;
    
    --input-bg: #ffffff;
    --input-border: #e0d8d0;
}

/* CSS Reset & General Rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Header height */
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

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

ul {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 6px;
    position: relative;
    
    /* Loader metallic light play - Şık ve Hafif */
    background: linear-gradient(
        120deg,
        #8a7355 0%,
        #8a7355 42%,
        #d4af37 50%,
        #8a7355 58%,
        #8a7355 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulseLogo 2.5s infinite ease-in-out, shineLogo 5s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

.loader::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #e5a9a9;
    animation: expandLine 2s infinite ease-in-out;
}

@keyframes pulseLogo {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes expandLine {
    0%, 100% { width: 0; }
    50% { width: 80px; }
}

/* Common Layout Elements */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-rose);
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

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

.title-line {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 20px auto 0;
    position: relative;
}

.title-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent-rose);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #121212;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

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

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

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: #121212;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.main-header.scrolled,
.inner-page .main-header {
    background-color: var(--bg-glass);
    backdrop-filter: blur(15px);
    border-color: var(--border-glass);
    box-shadow: var(--shadow-soft);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    transition: var(--transition-smooth);
}

.logo:hover {
    filter: drop-shadow(0 0 6px rgba(138, 115, 85, 0.3));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    
    /* Şık ve Hafif Işık Yansıması - Subtle Bronz-Gold Metallic Glare */
    background: linear-gradient(
        120deg,
        var(--text-primary) 0%,
        var(--text-primary) 40%,
        var(--accent-gold) 50%,
        var(--text-primary) 60%,
        var(--text-primary) 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineLogo 7s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

@keyframes shineLogo {
    0% {
        background-position: 150% center;
    }
    100% {
        background-position: -150% center;
    }
}

.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-top: 4px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.logo:hover .logo-sub {
    color: var(--accent-rose);
    letter-spacing: 4.5px;
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle-btn {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-glass);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.theme-toggle-btn .sun-icon {
    display: none;
    width: 20px;
    height: 20px;
}

.theme-toggle-btn .moon-icon {
    display: block;
    width: 18px;
    height: 18px;
}

.light-theme .theme-toggle-btn .sun-icon {
    display: block;
}

.light-theme .theme-toggle-btn .moon-icon {
    display: none;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 55vh;
    height: 480px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: #f5ebe6;
    margin: 0 20px;
    margin-top: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.03);
    animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 2px 5px rgba(0, 0, 0, 0.9);
}

.hero-title span {
    font-style: italic;
    color: var(--accent-rose);
}

.hero-text {
    font-size: 1.05rem;
    color: #f5ebe6; /* Lighter color for high contrast */
    margin-bottom: 30px;
    font-weight: 400; /* Slightly bolder for legibility */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: calc(100% - 40px);
    margin: 30px auto 0;
    max-width: 1200px;
}

.info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.3);
}

.info-details h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 3px;
}

.info-details p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   INNER PAGE HEADER BANNER
   ========================================================================== */
.page-header-banner {
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f5ebe6;
    margin: 80px 20px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-banner-content {
    z-index: 1;
    padding: 20px;
}

.page-banner-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.page-banner-content p {
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background-color: var(--bg-primary);
}

.services-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-glass);
    cursor: pointer;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent-gold);
    color: #121212;
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

@media (max-width: 991px) {
    .services-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        gap: 15px; /* Mobilde daha dar ara boşluk */
    }
}

.service-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-img-wrapper {
    position: relative;
    height: 420px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .service-img-wrapper {
        height: 220px; /* Mobilde yan yana iki dikey tırnak kartı yüksekliği */
    }
    
    .service-info {
        padding: 12px;
    }
    
    .service-info h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .service-info p {
        font-size: 0.75rem;
        margin-bottom: 12px;
        min-height: auto;
    }
    
    .service-price {
        padding: 4px 8px;
        font-size: 0.65rem;
        bottom: 8px;
        right: 8px;
    }
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.06);
}

.service-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(18, 18, 18, 0.85);
    color: var(--accent-gold);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-info {
    padding: 20px;
}

.service-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.service-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    min-height: 48px;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    background-color: var(--bg-secondary);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
    width: 100%;
    height: 440px;
}

.img-large {
    width: 80%;
    height: 90%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
}

.img-small {
    position: absolute;
    width: 50%;
    height: 55%;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    border: 8px solid var(--bg-secondary);
    box-shadow: var(--shadow-medium);
}

.experience-badge {
    position: absolute;
    left: -15px;
    bottom: 30px;
    background-color: var(--accent-gold);
    color: #121212;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-glow);
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 12px;
}

.about-content .title-line {
    margin: 0 0 25px 0;
}

.about-desc-primary {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.about-desc-secondary {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 3px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   SPECIALISTS SECTION
   ========================================================================== */
.specialists-section {
    background-color: var(--bg-primary);
}

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

.specialist-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.specialist-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.2);
}

.specialist-img-wrapper {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.specialist-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.specialist-card:hover .specialist-overlay {
    opacity: 1;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--accent-gold);
    color: #121212;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.specialist-card:hover .social-icons a {
    transform: translateY(0);
}

.specialist-card:hover .social-icons a:nth-child(2) {
    transition-delay: 0.05s;
}

.social-icons a:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.specialist-info {
    padding: 20px;
    text-align: center;
}

.specialist-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.specialist-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-rose);
    font-weight: 500;
}

/* ==========================================================================
   ONLINE BOOKING SECTION
   ========================================================================== */
.booking-section {
    background-color: #121212;
    position: relative;
}

.booking-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 4.2fr 5.8fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
}

.booking-info-block {
    color: #f5ebe6;
}

.booking-subtitle {
    font-size: 0.95rem;
    color: #b5a89f;
    margin-bottom: 30px;
    font-weight: 300;
}

.booking-steps-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-info-item {
    display: flex;
    gap: 15px;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.step-info-item.active {
    opacity: 1;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 0.85rem;
    background-color: rgba(212, 175, 55, 0.05);
}

.step-info-item.active .step-num {
    background-color: var(--accent-gold);
    color: #121212;
}

.step-info-item h5 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 3px;
}

.step-info-item p {
    font-size: 0.8rem;
    color: #b5a89f;
}

/* Booking Form Box */
.booking-form-container {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-medium);
    min-height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.booking-step {
    display: none;
    flex-direction: column;
    flex-grow: 1;
}

.booking-step.active {
    display: flex;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: #f5ebe6;
}

/* Option Cards (Radios) */
.booking-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.option-card {
    position: relative;
    cursor: pointer;
}

.option-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-card .card-content {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-smooth);
}

.option-card:hover .card-content {
    border-color: rgba(212, 175, 55, 0.3);
    background-color: rgba(255, 255, 255, 0.04);
}

.option-card input:checked + .card-content {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.option-card h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: #f5ebe6;
}

.option-card span {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Avatar Placeholder for Specialists */
.avatar-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-rose);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.option-card input:checked + .card-content .avatar-placeholder {
    background-color: var(--accent-rose);
    color: #121212;
    border-color: var(--accent-rose);
}

/* Date and Time Selector Styles */
.datetime-selectors {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

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

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b5a89f;
}

.form-group input[type="date"],
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: #f5ebe6;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 5px;
}

.slot-card {
    position: relative;
    cursor: pointer;
}

.slot-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.slot-card span {
    display: block;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 8px 4px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: #b5a89f;
    transition: var(--transition-smooth);
}

.slot-card:hover span {
    border-color: rgba(212, 175, 55, 0.3);
}

.slot-card input:checked + span {
    background-color: var(--accent-gold);
    color: #121212;
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.slot-card input:disabled + span {
    background-color: rgba(255, 255, 255, 0.02) !important;
    color: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.02) !important;
    cursor: not-allowed;
    text-decoration: line-through;
    box-shadow: none !important;
}

.light-theme .slot-card input:disabled + span {
    background-color: rgba(0, 0, 0, 0.03) !important;
    color: rgba(0, 0, 0, 0.25) !important;
    border-color: rgba(0, 0, 0, 0.03) !important;
    cursor: not-allowed;
    text-decoration: line-through;
    box-shadow: none !important;
}

/* Step Buttons */
.step-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
}

.step-buttons .btn {
    min-width: 120px;
}

/* Summary Box */
.booking-summary-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
}

.booking-summary-box h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--accent-gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.booking-summary-box ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-summary-box li {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #b5a89f;
}

.booking-summary-box li strong {
    color: #f5ebe6;
}

.price-highlight {
    color: var(--accent-rose) !important;
    font-weight: 700;
    font-size: 0.95rem;
}

.booking-confirm-layout {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-top: 5px;
}

.checkbox-group input {
    margin-top: 3px;
    width: 15px;
    height: 15px;
}

.checkbox-group label {
    font-size: 0.7rem;
    text-transform: none;
    letter-spacing: 0;
    color: #b5a89f;
    line-height: 1.4;
}

/* Success Screen */
.booking-success-screen {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    animation: scaleIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.success-icon {
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-glow);
}

.booking-success-screen h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: #f5ebe6;
}

.booking-success-screen p {
    font-size: 0.9rem;
    color: #b5a89f;
    max-width: 380px;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* ==========================================================================
   GALLERY SECTION (LIGHTBOX)
   ========================================================================== */
.gallery-section {
    background-color: var(--bg-secondary);
}

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

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-glass);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

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

.zoom-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.gallery-item:hover .zoom-icon {
    transform: scale(1);
}

.gallery-hover h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #f5ebe6;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.lightbox-caption {
    color: #f5ebe6;
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 1px;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    color: #b5a89f;
    cursor: pointer;
    line-height: 1;
}

.lightbox-close:hover {
    color: #f5ebe6;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: #b5a89f;
    font-size: 2.5rem;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
    transition: var(--transition-fast);
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: #f5ebe6;
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-primary);
}

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

.testimonial-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.15);
}

.testimonial-card .rating {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-rose);
    color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.client-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.client-info span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--bg-secondary);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 60px;
}

.contact-form-block .section-title {
    text-align: left;
    margin-bottom: 12px;
}

.contact-form-block .title-line {
    margin: 0 0 30px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.contact-details-block {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

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

.contact-icon {
    color: var(--accent-gold);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-item h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Map Mockup */
.map-mockup {
    height: 200px;
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    position: relative;
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0), radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #f5ebe6;
}

.map-overlay svg {
    color: var(--accent-rose);
    animation: bounce 1.5s infinite alternate ease-in-out;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
}

.map-overlay span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #f3ebf7; /* Soft Premium Leylak background */
    color: #4a3e56; /* Koyu morumsu gri yazı rengi */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
}

.brand-col .logo {
    margin-bottom: 15px;
}

.brand-col p {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.brand-col .social-links {
    display: flex;
    gap: 12px;
}

.brand-col .social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(74, 62, 86, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4a3e56;
    transition: var(--transition-fast);
}

.brand-col .social-links a:hover {
    background-color: var(--accent-gold);
    color: #121212;
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    color: #2d203a; /* Derin mürdüm başlıklar */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--accent-gold);
}

.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links-col a {
    font-size: 0.8rem;
    color: #4a3e56;
    transition: var(--transition-fast);
}

.links-col a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.contact-col p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.phone-link {
    font-size: 1rem !important;
    font-weight: 600;
    color: var(--accent-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    font-size: 0.75rem;
    color: #7c6f8a;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES) - 100% MOBIL UYUMLULUK
   ========================================================================== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images {
        width: 100%;
        height: 380px;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .specialists-grid {
        gap: 20px;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-secondary);
        z-index: 1000;
        padding: 90px 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .btn-nav {
        display: none;
    }
    
    .burger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Yatay dikdörtgen hero alanı mobil uyumluluğu */
    .hero-section {
        min-height: auto;
        height: auto;
        padding: 120px 20px 60px;
        margin: 10px;
        border-radius: var(--radius-md);
    }
    
    .hero-container {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-info-cards {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 15px 10px;
        width: calc(100% - 20px);
    }
    
    .page-header-banner {
        margin: 70px 10px 0;
        height: 180px;
        border-radius: var(--radius-md);
    }
    
    .page-banner-content h1 {
        font-size: 2rem;
    }
    
    .specialists-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-options-grid {
        grid-template-columns: 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   STICKY ACTIONS FOOTER (WHATSAPP & PHONE CALL)
   ========================================================================== */
.sticky-action-footer {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .sticky-action-footer {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        height: 60px;
        background: rgba(26, 26, 26, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-full);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        overflow: hidden;
        padding: 6px;
        gap: 6px;
        animation: slideUpFooter 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .sticky-action-footer .action-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: var(--radius-full);
        transition: var(--transition-fast);
        color: #ffffff;
    }

    .sticky-action-footer .call-action {
        background-color: var(--accent-gold);
        color: #121212;
    }

    .sticky-action-footer .call-action:hover {
        background-color: var(--accent-gold-hover);
    }

    .sticky-action-footer .whatsapp-action {
        background-color: #25D366; /* WhatsApp Green */
        color: #ffffff;
    }

    .sticky-action-footer .whatsapp-action:hover {
        background-color: #20ba5a;
    }
    
    /* Make room for sticky footer at the bottom of mobile screens */
    body {
        padding-bottom: 90px;
    }
}

@keyframes slideUpFooter {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   THEME-DEPENDENT HERO & BANNER OVERLAYS & CONTRAST ADJUSTMENTS
   ========================================================================== */
.hero-section {
    color: var(--text-primary) !important;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dark-theme .hero-bg::after {
    background: linear-gradient(rgba(18, 18, 18, 0.72), rgba(18, 18, 18, 0.78));
}

.light-theme .hero-bg::after {
    background: linear-gradient(rgba(250, 247, 245, 0.72), rgba(250, 247, 245, 0.8));
}

.dark-theme .hero-title {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 2px 5px rgba(0, 0, 0, 0.9) !important;
}

.dark-theme .hero-text {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 0.9) !important;
}

.light-theme .hero-title {
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    color: #121212 !important;
}

.light-theme .hero-text {
    text-shadow: none !important;
    color: #2d2d2d !important;
}

/* Inner Page Banners Overlay */
.page-header-banner {
    color: var(--text-primary) !important;
}

.page-header-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dark-theme .page-header-banner::after {
    background: rgba(18, 18, 18, 0.65);
}

.light-theme .page-header-banner::after {
    background: rgba(250, 247, 245, 0.8);
}

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

/* Sticky Action Footer Theme Support */
@media (max-width: 768px) {
    .sticky-action-footer {
        background: var(--bg-glass) !important;
        border-color: var(--border-glass) !important;
    }
}

/* ==========================================================================
   BLOG DETAILS STYLING (TYPOGRAPHY & TABLE LAYOUTS)
   ========================================================================== */
.blog-body-text {
    margin-bottom: 40px;
}

.blog-body-text h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 400;
}

.blog-body-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 400;
}

.blog-body-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.blog-body-text ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.blog-body-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.blog-body-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.blog-body-text th, .blog-body-text td {
    padding: 12px 15px;
    border: 1px solid var(--border-glass);
    text-align: left;
}

.blog-body-text th {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    font-weight: 600;
}

.blog-body-text tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.03);
}

.light-theme .blog-body-text tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

/* ==========================================================================
   LIGHT THEME APPOINTMENT (BOOKING PAGE) OVERRIDES
   ========================================================================== */
.light-theme .booking-info-block {
    color: var(--text-primary);
}

.light-theme .booking-subtitle {
    color: var(--text-secondary);
}

.light-theme .step-info-item p {
    color: var(--text-secondary);
}

.light-theme .booking-form-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-soft);
}

.light-theme .step-title {
    color: var(--text-primary);
}

.light-theme .option-card .card-content {
    background-color: rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.light-theme .option-card:hover .card-content {
    background-color: rgba(0, 0, 0, 0.03);
    border-color: rgba(212, 175, 55, 0.4);
}

.light-theme .option-card input:checked + .card-content {
    background-color: rgba(212, 175, 55, 0.08);
    border-color: var(--accent-gold);
}

.light-theme .option-card h4 {
    color: var(--text-primary);
}

.light-theme .avatar-placeholder {
    background-color: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

.light-theme .form-group label {
    color: var(--text-secondary);
}

.light-theme .form-group input[type="date"],
.light-theme .form-group input[type="text"],
.light-theme .form-group input[type="tel"],
.light-theme .form-group input[type="email"],
.light-theme .form-group textarea {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
}

.light-theme .form-group input:focus, 
.light-theme .form-group textarea:focus {
    background-color: var(--bg-primary);
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.light-theme .slot-card span {
    background-color: rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
}

.light-theme .slot-card:hover span {
    border-color: rgba(212, 175, 55, 0.4);
}

.light-theme .slot-card input:checked + span {
    background-color: var(--accent-gold);
    color: #121212;
    border-color: var(--accent-gold);
}

.light-theme .booking-summary-box {
    background-color: rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.light-theme .booking-summary-box h4 {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.light-theme .booking-summary-box li {
    color: var(--text-secondary);
}

.light-theme .booking-summary-box li strong {
    color: var(--text-primary);
}

.light-theme .booking-section {
    background-color: var(--bg-primary);
}

.light-theme .step-info-item h5 {
    color: var(--text-primary);
}



/* Brand Logo Styling */
.brand-logo {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 900 !important;
  color: #0f172a !important;
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 4px !important;
  text-decoration: none !important;
}

.logo-i-wrap {
  position: relative;
  display: inline-block;
  color: #a855f7 !important;
}

.logo-i-dot {
  position: absolute;
  top: -0.08em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.45em;
  height: 0.45em;
  display: block;
  line-height: 0;
  animation: logoDotPulse 1.8s infinite ease-in-out;
}

.logo-i-dot svg {
  width: 100%;
  height: 100%;
  fill: #a855f7 !important;
  filter: drop-shadow(0 0 3px rgba(168, 85, 247, 0.6)) !important;
}

@keyframes logoDotPulse {
  0% {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.85;
  }
  50% {
    transform: translateX(-50%) scale(1.3);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.85;
  }
}
