/* ============================================================
   AREN SPA - PREMIUM SPA & MASSAGE
   Mobile-First CSS with Gold Theme
   ============================================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Primary Gold Palette */
    --gold-primary: #C9A227;
    --gold-light: #D4AF37;
    --gold-dark: #B8860B;
    --gold-darker: #8B6914;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C9A227 50%, #B8860B 100%);
    --gold-gradient-hover: linear-gradient(135deg, #E5C547 0%, #D4AF37 50%, #C9A227 100%);
    --gold-shimmer: linear-gradient(90deg, #C9A227 0%, #F5E6A3 50%, #C9A227 100%);
    
    /* Neutral Colors - Enhanced for Accessibility */
    --black: #0D0D0D;
    --dark: #1A1A1A;
    --dark-light: #2D2D2D;
    --dark-medium: #3D3D3D;
    --gray-dark: #3A3A3A;
    --gray: #555555;
    --gray-light: #777777;
    --gray-lighter: #E5E5E5;
    --cream: #FAF8F5;
    --cream-dark: #F5F0E8;
    --white: #FFFFFF;
    
    /* Accent Colors */
    --whatsapp: #25D366;
    --whatsapp-hover: #20BD5A;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes - Mobile First */
    --fs-xs: 0.75rem;      /* 12px */
    --fs-sm: 0.875rem;     /* 14px */
    --fs-base: 1rem;       /* 16px */
    --fs-md: 1.125rem;     /* 18px */
    --fs-lg: 1.25rem;      /* 20px */
    --fs-xl: 1.5rem;       /* 24px */
    --fs-2xl: 1.875rem;    /* 30px */
    --fs-3xl: 2.25rem;     /* 36px */
    --fs-4xl: 3rem;        /* 48px */
    --fs-5xl: 3.75rem;     /* 60px */
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.3);
    --shadow-gold-lg: 0 8px 32px rgba(201, 162, 39, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
    
    /* Header Height */
    --topbar-height: 40px;
    --header-height: 70px;
    --bottom-menu-height: 65px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 75px;
}

/* Remove bottom padding on desktop */
@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

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

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

a:hover {
    color: var(--gold-dark);
}

a:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ==================== ACCESSIBILITY ==================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    z-index: var(--z-tooltip);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
    color: var(--white);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: var(--fs-2xl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }
h5 { font-size: var(--fs-base); }
h6 { font-size: var(--fs-sm); }

@media (min-width: 480px) {
    h1 { font-size: var(--fs-3xl); }
    h2 { font-size: var(--fs-2xl); }
    h3 { font-size: var(--fs-xl); }
}

@media (min-width: 768px) {
    h1 { font-size: var(--fs-4xl); }
    h2 { font-size: var(--fs-3xl); }
    h3 { font-size: var(--fs-2xl); }
}

@media (min-width: 1200px) {
    h1 { font-size: var(--fs-5xl); }
    h2 { font-size: var(--fs-4xl); }
    h3 { font-size: var(--fs-2xl); }
}

p {
    margin-bottom: var(--space-md);
}

p:last-child {
    margin-bottom: 0;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.625rem 1.25rem;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn i {
    font-size: 1.1em;
}

/* Gold Button - Primary */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--dark);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover,
.btn-gold:focus {
    background: var(--gold-gradient-hover);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

/* Gold Outline Button */
.btn-outline-gold,
.btn-gold-outline {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-outline-gold:hover,
.btn-outline-gold:focus,
.btn-gold-outline:hover,
.btn-gold-outline:focus {
    background: var(--gold-primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* White Button */
.btn-white {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-white:hover,
.btn-white:focus {
    background: var(--cream);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Button Sizes */
.btn-sm {
    padding: 0.375rem 0.875rem;
    font-size: var(--fs-xs);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: var(--fs-sm);
}

@media (min-width: 768px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--fs-sm);
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: var(--fs-base);
    }
}

/* ==================== TOPBAR - PREMIUM DARK THEME ==================== */
.topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-sm) 0;
    font-size: var(--fs-xs);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

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

.topbar-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.topbar-item i {
    color: var(--gold-primary);
    font-size: var(--fs-sm);
}

.topbar-item span {
    color: rgba(255, 255, 255, 0.85);
}

.topbar-item a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
}

.topbar-item a:hover {
    color: var(--gold-primary);
}

/* Topbar Social Icons */
.topbar-social {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.topbar-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gold-primary);
    border-radius: var(--radius-sm);
    color: var(--dark);
    font-size: var(--fs-sm);
    transition: all var(--transition-fast);
}

.topbar-social .social-icon:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.topbar-social .social-icon.location-icon {
    background: var(--gold-primary);
}

@media (min-width: 768px) {
    .topbar {
        font-size: var(--fs-sm);
    }
    
    .topbar-social .social-icon {
        width: 36px;
        height: 36px;
        font-size: var(--fs-base);
    }
}

/* Hide location text on mobile, show only in topbar-social */
@media (max-width: 767.98px) {
    .topbar-location {
        display: none !important;
    }
    
    .topbar-left {
        gap: var(--space-md);
    }
    
    .topbar-social .social-icon {
        width: 28px;
        height: 28px;
        font-size: var(--fs-xs);
    }
}

/* ==================== HEADER / NAVBAR - PREMIUM DARK THEME ==================== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
}

/* Dark Header Theme */
.site-header.dark-header {
    background: var(--dark-light);
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.dark-header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: var(--space-sm) 0;
}

/* Navbar Container Flex Layout */
.navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.navbar-brand {
    display: flex;
    align-items: center;
    order: 1;
}

.logo-img {
    max-width: none;
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
}

.navbar-brand:hover .logo-img {
    transform: scale(1.02);
}

/* Mobile Toggle Button - Dark Theme */
.dark-header .navbar-toggler {
    border: none;
    padding: var(--space-sm);
    background: transparent;
    order: 3;
}

.dark-header .navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--gold-primary);
}

.dark-header .navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A227'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E%3C/svg%3E");
}

/* Light Header Toggle */
.navbar-toggler {
    border: none;
    padding: var(--space-sm);
    background: transparent;
    order: 3;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--gold-primary);
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A227'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E%3C/svg%3E");
}

/* Navbar Collapse */
.navbar-collapse {
    order: 4;
    width: 100%;
}

/* Navigation Links - Dark Theme (Desktop Only) */
@media (min-width: 992px) {
    .dark-header .navbar-nav {
        padding: var(--space-md) 0;
    }
    
    .dark-header .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dark-header .nav-item:last-child {
        border-bottom: none;
    }
    
    .dark-header .nav-link {
        display: block;
        padding: var(--space-md) var(--space-sm);
        color: rgba(255, 255, 255, 0.85);
        font-weight: 500;
        font-size: var(--fs-base);
        transition: all var(--transition-fast);
        position: relative;
    }
    
    .dark-header .nav-link:hover,
    .dark-header .nav-link.active {
        color: var(--gold-primary);
    }
    
    .dark-header .nav-link.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 60%;
        background: var(--gold-primary);
        border-radius: var(--radius-sm);
    }
}

/* Light Header Nav Links */
.navbar-nav {
    padding: var(--space-md) 0;
}

.nav-item {
    border-bottom: 1px solid var(--gray-lighter);
}

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

.nav-link {
    display: block;
    padding: var(--space-md) var(--space-sm);
    color: var(--dark);
    font-weight: 500;
    font-size: var(--fs-base);
    transition: all var(--transition-fast);
    position: relative;
}

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

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--gold-primary);
    border-radius: var(--radius-sm);
}

/* ==================== HEADER CTA BUTTON ==================== */
/* Mobile First - Only Icon */
.header-cta {
    display: flex;
    order: 2;
    margin-left: auto;
}

.header-cta .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: var(--gold-gradient);
    border: none;
    border-radius: var(--radius-full);
    color: var(--dark);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
    gap: 8px;
}

.header-cta .btn:hover,
.header-cta .btn:focus {
    background: var(--gold-gradient-hover);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.5);
}

.header-cta .btn i {
    font-size: 1.1rem;
    line-height: 1;
}

.header-cta .header-cta-text {
    display: none;
}

/* Desktop - Full Button with Text */
@media (min-width: 992px) {
    .header-cta {
        order: 3;
        margin-left: var(--space-lg);
    }
    
    .header-cta .btn {
        padding: 10px 24px;
        border-radius: 50px;
        gap: 12px;
    }
    
    .header-cta .header-cta-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.2;
    }
    
    .header-cta .header-cta-text small {
        font-size: 0.65rem;
        font-weight: 500;
        opacity: 0.85;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .header-cta .header-cta-text strong {
        font-size: 0.95rem;
        font-weight: 700;
    }
    
    .header-cta .btn i {
        font-size: 1.2rem;
    }
}

/* Desktop Navigation - Dark Theme */
@media (min-width: 992px) {
    .navbar {
        padding: var(--space-md) 0;
    }
    
    .navbar > .container {
        flex-wrap: nowrap;
    }
    
    .navbar-collapse {
        order: 2;
        flex-grow: 1;
        justify-content: center;
    }
    
    .header-cta {
        order: 3;
        margin-left: 0;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .dark-header .navbar-nav {
        padding: 0;
        gap: var(--space-xs);
    }
    
    .dark-header .nav-item {
        border-bottom: none;
    }
    
    .dark-header .nav-link {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--fs-sm);
        color: rgba(255, 255, 255, 0.85);
    }
    
    .dark-header .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--gold-gradient);
        transition: width var(--transition-base);
    }
    
    .dark-header .nav-link:hover::after,
    .dark-header .nav-link.active::after {
        width: 80%;
    }
    
    .dark-header .nav-link.active::before {
        display: none;
    }
    
    .dark-header .nav-link:hover,
    .dark-header .nav-link.active {
        color: var(--gold-primary);
    }
    
    /* Light Header Desktop */
    .navbar-nav {
        padding: 0;
        gap: var(--space-xs);
    }
    
    .nav-item {
        border-bottom: none;
    }
    
    .nav-link {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--fs-sm);
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--gold-gradient);
        transition: width var(--transition-base);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 80%;
    }
    
    .nav-link.active::before {
        display: none;
    }
}

@media (min-width: 1200px) {
    .logo-img {
        height: 70px;
    }
    
    .dark-header .nav-link,
    .nav-link {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--fs-base);
    }
}

/* Mobile Menu - Full Width Light Theme */
@media (max-width: 991.98px) {
    /* Header needs relative positioning for absolute menu */
    .site-header {
        position: sticky;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        background: var(--white);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        border-top: 1px solid var(--gray-lighter);
        z-index: var(--z-dropdown);
        max-height: calc(100vh - var(--header-height) - var(--topbar-height));
        overflow-y: auto;
    }
    
    .dark-header .navbar-collapse {
        background: var(--white);
        border-top: 1px solid var(--gray-lighter);
    }
    
    /* Mobile Nav Items - Light Theme */
    .dark-header .navbar-nav,
    .navbar-nav {
        padding: 0;
    }
    
    .dark-header .nav-item,
    .nav-item {
        border-bottom: 1px solid var(--gray-lighter);
    }
    
    .dark-header .nav-item:last-child,
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .dark-header .nav-link,
    .nav-link {
        display: block;
        padding: var(--space-lg) var(--space-xl);
        color: var(--dark);
        font-weight: 500;
        font-size: var(--fs-base);
        transition: all var(--transition-fast);
        position: relative;
        background: var(--white);
    }
    
    .dark-header .nav-link:hover,
    .dark-header .nav-link.active,
    .nav-link:hover,
    .nav-link.active {
        color: var(--gold-primary);
        background: var(--cream);
    }
    
    /* Active indicator - gold bar on left */
    .dark-header .nav-link.active::before,
    .nav-link.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        height: 100%;
        background: var(--gold-primary);
        border-radius: 0;
        transform: none;
    }
    
    /* Navbar container position relative for absolute positioning */
    .navbar > .container {
        position: relative;
    }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    margin-top: 0;
}

.hero-slide {
    position: relative;
    height: 65vh;
    min-height: 500px;
    max-height: 800px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13, 13, 13, 0.85) 0%,
        rgba(13, 13, 13, 0.6) 50%,
        rgba(13, 13, 13, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 45px 0 45px;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--fs-md);
    font-weight: 500;
    color: var(--gold-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 50px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: var(--gold-primary);
}

.hero-title {
    font-size: var(--fs-2xl);
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-text {
    font-size: var(--fs-base);
    color: var(--gray-lighter);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero-buttons .btn {
    flex: 1 1 auto;
    min-width: 140px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    z-index: 100;
    width: 50px;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(201, 162, 39, 0.9);
    border-radius: var(--radius-full);
    background-size: 50%;
}

.carousel-indicators {
    margin-bottom: var(--space-lg);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--gold-primary);
    margin: 0 var(--space-xs);
    transition: all var(--transition-base);
}

.carousel-indicators button.active {
    background-color: var(--gold-primary);
    transform: scale(1.2);
}

@media (min-width: 480px) {
    .hero-title {
        font-size: var(--fs-3xl);
    }
    
    .hero-buttons .btn {
        flex: 0 1 auto;
    }
}

@media (min-width: 768px) {
    .hero-slide {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-subtitle {
        font-size: var(--fs-lg);
    }
    
    .hero-title {
        font-size: var(--fs-4xl);
    }
    
    .hero-text {
        font-size: var(--fs-md);
    }
}

@media (min-width: 1200px) {
    .hero-slide {
        height: 90vh;
        max-height: 900px;
    }
    
    .hero-title {
        font-size: var(--fs-5xl);
    }
    
    .hero-text {
        font-size: var(--fs-lg);
    }
}

/* ==================== SECTIONS COMMON ==================== */
.section {
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--fs-md);
    font-weight: 500;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: var(--fs-2xl);
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
}

.section-divider-left {
    justify-content: flex-start;
}

.section-divider-left::before {
    display: none;
}

.divider-icon {
    color: var(--gold-primary);
    font-size: var(--fs-lg);
}

.section-description {
    font-size: var(--fs-base);
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-4xl) 0;
    }
    
    .section-title {
        font-size: var(--fs-3xl);
    }
    
    .section-description {
        font-size: var(--fs-md);
    }
    
    .section-divider::before,
    .section-divider::after {
        width: 100px;
    }
}

@media (min-width: 1200px) {
    .section-title {
        font-size: var(--fs-4xl);
    }
}

/* ==================== SERVICES PREVIEW ==================== */
.services-preview {
    background: var(--cream);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--dark-light);
}

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

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.service-card-body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: var(--fs-lg);
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.service-card-text {
    font-size: var(--fs-sm);
    color: var(--gray);
    flex: 1;
}

@media (min-width: 768px) {
    .service-card-img {
        height: 220px;
    }
}

/* ==================== AMENITIES SECTION ==================== */
.amenities-section {
    background: var(--dark);
    position: relative;
}

.amenities-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
}

.amenities-section .section-subtitle,
.amenities-section .section-title {
    color: var(--white);
}

.amenities-section .section-title {
    color: var(--gold-primary);
}

.amenity-item {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.amenity-item:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
}

.amenity-icon i {
    font-size: var(--fs-xl);
    color: var(--dark);
}

.amenity-title {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .amenity-icon {
        width: 70px;
        height: 70px;
    }
    
    .amenity-icon i {
        font-size: var(--fs-2xl);
    }
    
    .amenity-title {
        font-size: var(--fs-base);
    }
}

/* ==================== WHY US SECTION ==================== */
.why-us-section {
    background: var(--white);
}

.why-us-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-us-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background: var(--dark-light);
}

.experience-badge {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    background: var(--gold-gradient);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold-lg);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.badge-text {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.why-us-list {
    margin-top: var(--space-xl);
}

.why-us-item {
    display: flex;
    gap: var(--space-xs);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.why-us-item:last-child {
    border-bottom: none;
}

.why-us-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-full);
    color: var(--gold-primary);
    font-size: var(--fs-xl);
    transition: all var(--transition-base);
}

.why-us-item:hover .why-us-icon {
    background: var(--gold-gradient);
    color: var(--dark);
}

.why-us-content h3 {
    font-size: var(--fs-md);
    color: var(--dark);
    margin-bottom: var(--space-xs);
}

.why-us-content p {
    font-size: var(--fs-sm);
    color: var(--gray);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .why-us-image img {
        height: 450px;
    }
    
    .badge-number {
        font-size: var(--fs-3xl);
    }
    
    .badge-text {
        font-size: var(--fs-sm);
    }
}

@media (min-width: 1200px) {
    .why-us-image img {
        height: 550px;
    }
}

/* ==================== PRIVILEGES SECTION ==================== */
.privileges-section {
    background: var(--cream);
}

.privilege-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.privilege-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.privilege-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-full);
    color: var(--gold-primary);
    font-size: var(--fs-2xl);
    transition: all var(--transition-base);
}

.privilege-card:hover .privilege-icon {
    background: var(--gold-gradient);
    color: var(--dark);
}

.privilege-title {
    font-size: var(--fs-md);
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.privilege-text {
    font-size: var(--fs-sm);
    color: var(--gray);
    margin-bottom: 0;
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
    background: var(--dark);
    position: relative;
}

.process-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
        linear-gradient(225deg, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
}

.process-section .section-subtitle,
.process-section .section-description {
    color: var(--gray-light);
}

.process-section .section-title {
    color: var(--gold-primary);
}

.process-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    height: 100%;
    transition: all var(--transition-base);
}

.process-card:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.process-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: rgba(201, 162, 39, 0.2);
    line-height: 1;
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
}

.process-icon i {
    font-size: var(--fs-xl);
    color: var(--dark);
}

.process-title {
    font-size: var(--fs-md);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.process-text {
    font-size: var(--fs-sm);
    color: var(--gray-light);
    margin-bottom: 0;
    line-height: 1.7;
}

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

.testimonials-slider {
    max-height: 800px;
    overflow-y: auto;
    padding: var(--space-sm);
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) var(--cream);
}

.testimonials-slider::-webkit-scrollbar {
    width: 6px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: var(--cream);
    border-radius: var(--radius-full);
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: var(--radius-full);
}

.testimonial-card {
    background: var(--cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    height: 100%;
    position: relative;
    border: none;
    margin: 0;
    transition: all var(--transition-base);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-md);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.testimonial-rating {
    margin-bottom: var(--space-md);
}

.testimonial-rating i {
    color: var(--gold-primary);
    font-size: var(--fs-sm);
}

.testimonial-text {
    font-size: var(--fs-base);
    color: var(--gray-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.author-name {
    font-family: var(--font-display);
    font-size: var(--fs-md);
    font-weight: 600;
    font-style: normal;
    color: var(--dark);
}

.author-service {
    font-size: var(--fs-sm);
    color: var(--gold-primary);
    font-weight: 500;
}

@media (min-width: 1200px) {
    .testimonials-slider {
        max-height: none;
        overflow: visible;
    }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: var(--dark);
    position: relative;
    padding: var(--space-4xl) 0;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at center, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
}

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

.cta-title {
    font-size: var(--fs-2xl);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: var(--fs-md);
    color: var(--gray-light);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.cta-hours {
    font-size: var(--fs-sm);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: var(--fs-3xl);
    }
    
    .cta-text {
        font-size: var(--fs-lg);
    }
}


/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--black);
    color: var(--gray-light);
    margin-top: 0;
}

.footer-main {
    padding: var(--space-3xl) 0;
    padding-top: var(--space-2xl);
}

.footer-brand {
    margin-bottom: var(--space-lg);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-about {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-light);
    border-radius: var(--radius-full);
    color: var(--gray-light);
    font-size: var(--fs-lg);
    transition: all var(--transition-base);
}

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

.footer-title {
    font-size: var(--fs-md);
    color: var(--gold-primary);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: width var(--transition-base);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: var(--space-sm);
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-contact {
    font-style: normal;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.85);
}

.contact-item i {
    color: var(--gold-primary);
    font-size: var(--fs-md);
    margin-top: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
}

.contact-item a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--dark-light);
}

.footer-bottom-content {
    text-align: center;
}


.copyright {
    font-size: var(--fs-sm);
    color: var(--gray);
    margin: 0;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: var(--space-md);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: var(--dark);
    border: none;
    cursor: pointer;
    border-radius: var(--radius-full);
    font-size: var(--fs-lg);
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
}

.back-to-top:hover {
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

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

@media (min-width: 992px) {
    .back-to-top {
        bottom: var(--space-xl);
    }
}

@media (min-width: 1200px) {
    .back-to-top {
        bottom: var(--space-xl);
        right: var(--space-xl);
        width: 50px;
        height: 50px;
    }
}

/* ==================== MOBILE CALL BAR ==================== */
.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: var(--dark);
    z-index: var(--z-fixed);
    border-top: 1px solid var(--gold-primary);
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--gold-gradient);
    color: #000000;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.mobile-call-btn:hover,
.mobile-call-btn:focus {
    background: var(--gold-gradient-hover);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
}

.mobile-call-btn i {
    font-size: 1.2rem;
}

/* ==================== PLACEHOLDER IMAGES ==================== */
/* Temporary gradient backgrounds for missing images */
.hero-slide {
    background-color: var(--dark);
    background-image: 
        linear-gradient(135deg, var(--dark) 0%, var(--dark-medium) 100%);
}

.service-card-img img,
.why-us-image img {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-medium) 100%);
}

/* ==================== PAGE TEMPLATES ==================== */
/* Styles for inner pages - will be used in other HTML files */
.page-header {
    background: var(--dark);
    padding: var(--space-2xl) 0 var(--space-2xl);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
}

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

.page-title {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.page-subtitle {
    color: var(--gold-primary);
    font-family: var(--font-accent);
    font-size: var(--fs-lg);
}

/* Breadcrumb */
.breadcrumb-wrapper {
    background: var(--cream);
    padding: var(--space-md) 0;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-item {
    font-size: var(--fs-sm);
}

.breadcrumb-item a {
    color: var(--gray);
}

.breadcrumb-item a:hover {
    color: var(--gold-primary);
}

.breadcrumb-item.active {
    color: var(--gold-primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--gray-light);
}

/* ==================== UTILITY CLASSES ==================== */
.text-gold {
    color: var(--gold-primary) !important;
}

.bg-gold {
    background: var(--gold-gradient) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-cream {
    background-color: var(--cream) !important;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Staggered animations */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ==================== ABOUT PAGE STYLES ==================== */
.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: var(--dark-light);
}

.about-image-badge {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    background: var(--gold-gradient);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.about-image-badge .badge-icon {
    font-size: var(--fs-2xl);
    color: var(--dark);
}

.about-image-badge .badge-text {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: var(--space-md);
    color: var(--gray-dark);
    line-height: 1.8;
}

/* VMV (Vision, Mission, Values) Section */
.vmv-section {
    background: var(--cream);
}

.vmv-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.vmv-card.featured {
    background: var(--dark);
    border-color: var(--gold-primary);
}

.vmv-card.featured .vmv-title,
.vmv-card.featured .vmv-text,
.vmv-card.featured .vmv-list li {
    color: var(--gray-light);
}

.vmv-card.featured .vmv-title {
    color: var(--gold-primary);
}

.vmv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    font-size: var(--fs-2xl);
    color: var(--dark);
}

.vmv-title {
    font-size: var(--fs-lg);
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.vmv-text {
    font-size: var(--fs-sm);
    color: var(--gray);
    line-height: 1.7;
}

.vmv-list {
    text-align: left;
}

.vmv-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: var(--fs-sm);
    color: var(--gray-dark);
}

.vmv-list li i {
    color: var(--gold-primary);
    font-size: var(--fs-md);
}

/* Stats Section */
.stats-section {
    background: var(--dark);
    position: relative;
    padding: var(--space-3xl) 0;
}

.stats-section .stats-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
}

.stat-item {
    position: relative;
    z-index: 2;
    padding: var(--space-lg);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: var(--fs-sm);
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: var(--fs-4xl);
    }
}

/* Promise Section */
.promise-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-lighter);
}

.promise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.promise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-full);
    color: var(--gold-primary);
    font-size: var(--fs-xl);
    transition: all var(--transition-base);
}

.promise-card:hover .promise-icon {
    background: var(--gold-gradient);
    color: var(--dark);
}

.promise-title {
    font-size: var(--fs-md);
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.promise-text {
    font-size: var(--fs-sm);
    color: var(--gray);
    margin-bottom: 0;
}

/* ==================== SERVICES PAGE STYLES ==================== */
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-lighter);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.service-detail-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--dark-light);
}

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

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

.service-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--gold-gradient);
    color: var(--dark);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-badge.premium {
    background: var(--dark);
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
}

.service-detail-body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-detail-title {
    font-size: var(--fs-lg);
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.service-detail-text {
    font-size: var(--fs-sm);
    color: var(--gray);
    flex: 1;
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

/* Additional Services Cards */
.additional-services {
    background: var(--cream);
}

.additional-card {
    display: block;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid transparent;
    text-decoration: none;
}

.additional-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.additional-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-full);
    color: var(--gold-primary);
    font-size: var(--fs-2xl);
    transition: all var(--transition-base);
}

.additional-card:hover .additional-icon {
    background: var(--gold-gradient);
    color: var(--dark);
}

.additional-title {
    font-size: var(--fs-lg);
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.additional-text {
    font-size: var(--fs-sm);
    color: var(--gray);
    margin-bottom: var(--space-md);
}

.additional-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.additional-link i {
    transition: transform var(--transition-base);
}

.additional-card:hover .additional-link i {
    transform: translateX(5px);
}

/* ==================== FACILITY PAGES (SAUNA, STEAM, HAMAM) ==================== */
.facility-intro {
    background: var(--white);
}

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

.facility-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: var(--dark-light);
}

.facility-text p {
    margin-bottom: var(--space-md);
    color: var(--gray-dark);
    line-height: 1.8;
}

/* Benefits Section */
.facility-benefits {
    background: var(--cream);
    position: relative;
}

.facility-benefits .benefits-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
}

.benefit-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    color: var(--dark);
    font-size: var(--fs-xl);
}

.benefit-title {
    font-size: var(--fs-md);
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.benefit-text {
    font-size: var(--fs-sm);
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Tips Section */
.facility-tips {
    background: var(--white);
}

.tip-card {
    background: var(--cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    position: relative;
    height: 100%;
    border-left: 4px solid var(--gold-primary);
}

.tip-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: rgba(201, 162, 39, 0.2);
    line-height: 1;
}

.tip-title {
    font-size: var(--fs-md);
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.tip-text {
    font-size: var(--fs-sm);
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    background: var(--cream);
}

.comparison-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-lighter);
}

.comparison-card.sauna {
    border-color: #E74C3C;
}

.comparison-card.steam {
    border-color: #3498DB;
}

.comparison-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-lg);
    color: var(--dark);
    margin-bottom: var(--space-lg);
}

.comparison-card.sauna .comparison-title i {
    color: #E74C3C;
}

.comparison-card.steam .comparison-title i {
    color: #3498DB;
}

.comparison-list li {
    padding: var(--space-sm) 0;
    font-size: var(--fs-sm);
    color: var(--gray-dark);
    border-bottom: 1px solid var(--gray-lighter);
}

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

.comparison-tip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--cream-dark);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    font-size: var(--fs-sm);
    color: var(--gray-dark);
}

.comparison-tip i {
    color: var(--gold-primary);
    font-size: var(--fs-lg);
}

/* Hamam Ritual Section */
.hamam-ritual {
    background: var(--cream);
}

.ritual-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--transition-base);
}

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

.ritual-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: rgba(201, 162, 39, 0.2);
    line-height: 1;
}

.ritual-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    color: var(--dark);
    font-size: var(--fs-xl);
}

.ritual-title {
    font-size: var(--fs-md);
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.ritual-text {
    font-size: var(--fs-sm);
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Info Box */
.info-section {
    background: var(--white);
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    background: var(--cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold-primary);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    color: var(--dark);
    font-size: var(--fs-xl);
}

.info-title {
    font-size: var(--fs-md);
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.info-text {
    font-size: var(--fs-sm);
    color: var(--gray-dark);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-main {
    background: var(--cream);
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid var(--gray-lighter);
    text-decoration: none;
}

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

.contact-card.whatsapp-card {
    border-color: var(--whatsapp);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, var(--white) 100%);
}

.contact-card.whatsapp-card:hover {
    background: var(--whatsapp);
}

.contact-card.whatsapp-card:hover .contact-card-icon,
.contact-card.whatsapp-card:hover .contact-card-title,
.contact-card.whatsapp-card:hover .contact-card-text,
.contact-card.whatsapp-card:hover .contact-card-value,
.contact-card.whatsapp-card:hover .contact-card-action {
    color: var(--white);
}

.contact-card.phone-card:hover {
    border-color: var(--gold-primary);
}

.contact-card.location-card:hover {
    border-color: var(--gold-primary);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-full);
    font-size: var(--fs-2xl);
    color: var(--gold-primary);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.contact-card.whatsapp-card .contact-card-icon {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp);
}

.contact-card:hover .contact-card-icon {
    background: var(--gold-gradient);
    color: var(--dark);
}

.contact-card.whatsapp-card:hover .contact-card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.contact-card-title {
    font-size: var(--fs-lg);
    color: var(--dark);
    margin-bottom: var(--space-xs);
}

.contact-card-text {
    font-size: var(--fs-sm);
    color: var(--gray);
    margin-bottom: var(--space-sm);
}

.contact-card-value {
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.contact-card-action {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hours Section */
.hours-section {
    background: var(--white);
    position: relative;
}

.hours-section .hours-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
}

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

.hours-content > p {
    color: var(--gray-dark);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hours-table {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px dashed var(--gray-lighter);
}

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

.hours-day {
    font-weight: 600;
    color: var(--dark);
}

.hours-time {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--gold-primary);
}

.hours-note {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--gray);
}

.hours-note i {
    color: var(--gold-primary);
}

.hours-cta-box {
    background: var(--dark);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hours-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
}

.hours-cta-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    font-size: var(--fs-2xl);
    color: var(--dark);
    position: relative;
    z-index: 2;
}

.hours-cta-title {
    font-size: var(--fs-xl);
    color: var(--white);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
}

.hours-cta-text {
    font-size: var(--fs-sm);
    color: var(--gray-light);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

.hours-cta-box .btn {
    position: relative;
    z-index: 2;
}

/* Hours Map Box - Google Maps Embed */
.hours-map-box {
    background: var(--dark);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
}

.hours-map-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hours-map-box iframe {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: var(--radius-lg);
}

@media (max-width: 991.98px) {
    .hours-map-box {
        margin-top: var(--space-lg);
        min-height: 300px;
    }
    
    .hours-map-box iframe {
        min-height: 280px;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--cream);
}

.faq-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg) !important;
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--white);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--dark);
    padding: var(--space-lg);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--cream);
    color: var(--gold-primary);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A227'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: transform var(--transition-base);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A227'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.faq-accordion .accordion-body {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: var(--fs-sm);
    color: var(--gray-dark);
    line-height: 1.7;
}

.faq-more p {
    font-size: var(--fs-sm);
    color: var(--gray);
    margin-bottom: var(--space-md);
}

/* Map Section */
.map-section {
    background: var(--dark);
}

.map-wrapper {
    height: 400px;
    background: var(--dark-light);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.map-placeholder-content {
    text-align: center;
    padding: var(--space-xl);
}

.map-placeholder-content i {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: var(--space-md);
}

.map-placeholder-content h3 {
    font-size: var(--fs-xl);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.map-placeholder-content p {
    font-size: var(--fs-sm);
    color: var(--gray-light);
    margin-bottom: var(--space-lg);
}

/* Related Services */
.related-services {
    background: var(--cream);
}

/* Rounded Image Utility */
.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

/* ==================== MOBILE SPECIFIC FIXES ==================== */
/* Services and other sections 2 columns on tablet and below */
@media (max-width: 767.98px) {
    /* Service cards: 2 column layout */
    .services-preview .row > [class*="col-"],
    .all-services .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    /* Smaller service card images */
    .service-card-img,
    .service-detail-img {
        height: 160px;
    }
    
    /* Smaller padding for service card body */
    .service-card-body,
    .service-detail-body {
        padding: var(--space-md);
    }
    
    /* Smaller title font */
    .service-card-title,
    .service-detail-title {
        font-size: var(--fs-sm);
        margin-bottom: var(--space-xs);
    }
    
    /* Smaller text font */
    .service-card-text,
    .service-detail-text {
        font-size: var(--fs-xs);
        line-height: 1.5;
        margin-bottom: var(--space-sm);
    }
    
    /* Smaller button */
    .service-detail-body .btn {
        padding: 0.375rem 0.75rem;
        font-size: var(--fs-xs);
    }
    
    /* Service badge smaller */
    .service-badge {
        padding: 2px 8px;
        font-size: 10px;
    }
    
    /* Why Us List - 2 columns */
    .why-us-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        margin-top: var(--space-lg);
        padding: 0;
    }
    
    .why-us-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--space-sm);
        border-bottom: none;
        background: var(--cream);
        border-radius: var(--radius-md);
    }
    
    .why-us-icon {
        width: 45px;
        height: 45px;
        font-size: var(--fs-lg);
        margin-bottom: var(--space-sm);
    }
    
    .why-us-content h3 {
        font-size: var(--fs-sm);
        margin-bottom: 2px;
    }
    
    .why-us-content p {
        font-size: var(--fs-xs);
        line-height: 1.4;
    }
    
    /* Privileges - 2 columns */
    .privileges-section .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .privilege-card {
        padding: var(--space-md);
    }
    
    .privilege-icon {
        width: 50px;
        height: 50px;
        font-size: var(--fs-xl);
        margin-bottom: var(--space-sm);
    }
    
    .privilege-title {
        font-size: var(--fs-sm);
        margin-bottom: var(--space-xs);
    }
    
    .privilege-text {
        font-size: var(--fs-xs);
        line-height: 1.4;
    }
    
    /* Process Section - 2 columns */
    .process-section .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .process-card {
        padding: var(--space-md);
    }
    
    .process-number {
        font-size: var(--fs-lg);
        top: var(--space-sm);
        right: var(--space-sm);
    }
    
    .process-icon {
        width: 45px;
        height: 45px;
        font-size: var(--fs-lg);
        margin-bottom: var(--space-sm);
    }
    
    .process-title {
        font-size: var(--fs-sm);
        margin-bottom: var(--space-xs);
    }
    
    .process-text {
        font-size: var(--fs-xs);
        line-height: 1.4;
    }
    
    /* Testimonials - 2 sütun tek satır slider with navigation */
    .testimonials-slider .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xs);
    }
    
    .testimonials-slider .row > [class*="col-"] {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    
    /* Show only first 2 testimonials initially (1 row x 2 columns) */
    .testimonials-slider .row > [class*="col-"]:nth-child(n+3) {
        display: none;
    }
    
    /* Show testimonials when pages change */
    .testimonials-slider.page-2 .row > [class*="col-"]:nth-child(-n+2) {
        display: none;
    }
    .testimonials-slider.page-2 .row > [class*="col-"]:nth-child(n+3):nth-child(-n+4) {
        display: block;
    }
    
    .testimonials-slider.page-3 .row > [class*="col-"]:nth-child(-n+4) {
        display: none;
    }
    .testimonials-slider.page-3 .row > [class*="col-"]:nth-child(n+5):nth-child(-n+6) {
        display: block;
    }
    
    .testimonials-slider.page-4 .row > [class*="col-"]:nth-child(-n+6) {
        display: none;
    }
    .testimonials-slider.page-4 .row > [class*="col-"]:nth-child(n+7):nth-child(-n+8) {
        display: block;
    }
    
    .testimonials-slider.page-5 .row > [class*="col-"]:nth-child(-n+8) {
        display: none;
    }
    .testimonials-slider.page-5 .row > [class*="col-"]:nth-child(n+9):nth-child(-n+10) {
        display: block;
    }
    
    .testimonial-card {
        padding: var(--space-xs);
    }
    
    .testimonial-card::before {
        font-size: 2rem;
        top: var(--space-sm);
        right: var(--space-sm);
    }
    
    .testimonial-rating i {
        font-size: var(--fs-sm);
    }
    
    .testimonial-text {
        font-size: var(--fs-xs);
        line-height: 1.5;
        margin-bottom: var(--space-sm);
    }
    
    .author-name {
        font-size: var(--fs-sm);
    }
    
    .author-service {
        font-size: var(--fs-xs);
    }
}

/* Çok küçük ekranlar için ek ayarlar (400px ve altı) */
@media (max-width: 400px) {
    .service-card-img,
    .service-detail-img {
        height: 120px;
    }
    
    .why-us-icon {
        width: 36px;
        height: 36px;
        font-size: var(--fs-md);
    }
    
    .why-us-content h3 {
        font-size: var(--fs-xs);
    }
    
    .why-us-content p {
        font-size: 10px;
    }
    
    .privilege-icon {
        width: 40px;
        height: 40px;
        font-size: var(--fs-lg);
    }
    
    .privilege-title {
        font-size: var(--fs-xs);
    }
    
    .privilege-text {
        font-size: 10px;
    }
    
    .process-icon {
        width: 36px;
        height: 36px;
        font-size: var(--fs-md);
    }
    
    .process-title {
        font-size: var(--fs-xs);
    }
    
    .process-text {
        font-size: 10px;
    }
    
    .testimonial-rating i {
        font-size: var(--fs-xs);
    }
    
    .testimonial-text {
        font-size: 10px;
    }
    
    .author-service {
        font-size: 10px;
    }
}

/* Testimonials Navigation Arrows */
.testimonials-nav {
    display: none;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

@media (max-width: 767.98px) {
    .testimonials-nav {
        display: flex;
    }
}

.testimonials-nav-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: var(--black);
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--fs-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-gold);
}

.testimonials-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold-lg);
}

.testimonials-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.testimonials-page-indicator {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gold-primary);
}

/* ==================== ADDITIONAL MOBILE & SMALL SCREEN STYLES ==================== */

/* Hakkımızda - Promise Section 2 sütun (tablet ve altı) */
@media (max-width: 767.98px) {
    .promise-section .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .promise-card {
        padding: var(--space-md);
    }
    
    .promise-icon {
        width: 50px;
        height: 50px;
        font-size: var(--fs-lg);
        margin-bottom: var(--space-sm);
    }
    
    .promise-title {
        font-size: var(--fs-sm);
        margin-bottom: var(--space-xs);
    }
    
    .promise-text {
        font-size: var(--fs-xs);
        line-height: 1.5;
    }
}

/* Çok küçük ekranlar için ek ayarlar */
@media (max-width: 400px) {
    .promise-icon {
        width: 40px;
        height: 40px;
        font-size: var(--fs-md);
    }
    
    .promise-title {
        font-size: var(--fs-xs);
    }
    
    .promise-text {
        font-size: 10px;
        line-height: 1.4;
    }
}

/* Sauna - facility-benefits ve facility-tips 2 sütun (tablet ve altı) */
@media (max-width: 767.98px) {
    .facility-benefits .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .benefit-card {
        padding: var(--space-md);
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: var(--fs-lg);
        margin-bottom: var(--space-sm);
    }
    
    .benefit-title {
        font-size: var(--fs-sm);
        margin-bottom: var(--space-xs);
    }
    
    .benefit-text {
        font-size: var(--fs-xs);
        line-height: 1.5;
    }
    
    .facility-tips .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .tip-card {
        padding: var(--space-md);
    }
    
    .tip-number {
        font-size: var(--fs-lg);
    }
    
    .tip-title {
        font-size: var(--fs-sm);
        margin-bottom: var(--space-xs);
    }
    
    .tip-text {
        font-size: var(--fs-xs);
        line-height: 1.5;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 400px) {
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: var(--fs-md);
    }
    
    .benefit-title {
        font-size: var(--fs-xs);
    }
    
    .benefit-text {
        font-size: 10px;
        line-height: 1.4;
    }
    
    .tip-number {
        font-size: var(--fs-md);
    }
    
    .tip-title {
        font-size: var(--fs-xs);
    }
    
    .tip-text {
        font-size: 10px;
        line-height: 1.4;
    }
}

/* Buhar Odası - comparison-section 2 sütun (tablet ve altı) */
@media (max-width: 767.98px) {
    .comparison-section .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .comparison-card {
        padding: var(--space-md);
    }
    
    .comparison-title {
        font-size: var(--fs-base);
        margin-bottom: var(--space-sm);
    }
    
    .comparison-title i {
        font-size: var(--fs-lg);
    }
    
    .comparison-list li {
        font-size: var(--fs-xs);
        line-height: 1.6;
        padding: 4px 0;
    }
    
    .comparison-tip {
        font-size: var(--fs-xs);
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 400px) {
    .comparison-title {
        font-size: var(--fs-sm);
    }
    
    .comparison-title i {
        font-size: var(--fs-md);
    }
    
    .comparison-list li {
        font-size: 10px;
        padding: 3px 0;
    }
    
    .comparison-tip {
        font-size: 10px;
    }
}

/* Hamam - hamam-ritual 2 sütun (tablet ve altı) */
@media (max-width: 767.98px) {
    .hamam-ritual .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .ritual-card {
        padding: var(--space-md);
    }
    
    .ritual-number {
        font-size: var(--fs-base);
        top: var(--space-sm);
        right: var(--space-sm);
    }
    
    .ritual-icon {
        width: 45px;
        height: 45px;
        font-size: var(--fs-lg);
        margin-bottom: var(--space-sm);
    }
    
    .ritual-title {
        font-size: var(--fs-sm);
        margin-bottom: var(--space-xs);
    }
    
    .ritual-text {
        font-size: var(--fs-xs);
        line-height: 1.5;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 400px) {
    .ritual-number {
        font-size: var(--fs-sm);
        top: var(--space-xs);
    }
    
    .ritual-icon {
        width: 36px;
        height: 36px;
        font-size: var(--fs-md);
    }
    
    .ritual-title {
        font-size: var(--fs-xs);
    }
    
    .ritual-text {
        font-size: 10px;
        line-height: 1.4;
    }
}

/* İletişim - contact-main WhatsApp ve Telefon 2 sütun, Konum tek sütun (tablet ve altı) */
@media (max-width: 767.98px) {
    .contact-main .row {
        display: flex;
        flex-wrap: wrap;
    }
    
    /* WhatsApp ve Telefon kartları yan yana */
    .contact-main .row > .col-md-6.col-lg-4:nth-child(1),
    .contact-main .row > .col-md-6.col-lg-4:nth-child(2) {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    /* Konum kartı tam genişlik */
    .contact-main .row > .col-md-6.col-lg-4:nth-child(3) {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .contact-card {
        padding: var(--space-lg);
    }
    
    .contact-card-icon {
        width: 55px;
        height: 55px;
        font-size: var(--fs-xl);
        margin-bottom: var(--space-sm);
    }
    
    .contact-card-title {
        font-size: var(--fs-base);
        margin-bottom: 4px;
    }
    
    .contact-card-text {
        font-size: var(--fs-xs);
        margin-bottom: var(--space-sm);
    }
    
    .contact-card-value {
        font-size: var(--fs-sm);
        margin-bottom: var(--space-sm);
    }
    
    .contact-card-action {
        font-size: var(--fs-xs);
    }
    
    /* Breadcrumb padding-bottom 0 */
    .breadcrumb-wrapper {
        padding-bottom: 0;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 400px) {
    .contact-card {
        padding: var(--space-md);
    }
    
    .contact-card-icon {
        width: 45px;
        height: 45px;
        font-size: var(--fs-lg);
    }
    
    .contact-card-title {
        font-size: var(--fs-sm);
        margin-bottom: 2px;
    }
    
    .contact-card-text {
        font-size: 10px;
        margin-bottom: var(--space-xs);
    }
    
    .contact-card-value {
        font-size: var(--fs-xs);
    }
    
    .contact-card-action {
        font-size: 10px;
    }
}

/* Footer contact section center on mobile */
@media (max-width: 991.98px) {
    /* Center footer brand section */
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
    }
    
    /* Footer column centering on tablet/mobile */
    .site-footer .col-lg-3:last-child {
        text-align: center;
    }
    
    .site-footer .col-lg-3:last-child .footer-title {
        text-align: center;
    }
    
    /* Footer Hızlı Erişim ve Hizmetlerimiz başlıkları ortalı */
    .site-footer .col-6 .footer-title,
    .site-footer .col-lg-2 .footer-title,
    .site-footer .col-lg-3 .footer-title {
        text-align: center;
    }
    
    /* Footer link listelerini ortala */
    .site-footer .col-6 .footer-links,
    .site-footer .col-lg-2 .footer-links,
    .site-footer .col-lg-3 .footer-links {
        text-align: center;
    }
    
    /* Footer linklerini ortalamak için */
    .site-footer .footer-links a {
        justify-content: center;
    }
}

/* Footer gap fix and content padding for bottom menu */
@media (max-width: 991.98px) {
    /* Remove any extra margin before footer */
    .site-footer {
        margin-top: 0;
    }
    
    /* Ensure last section before footer has no extra margin */
    main > section:last-child {
        margin-bottom: 0;
    }
    
    /* CTA section margin bottom fix */
    .cta-section {
        margin-bottom: 0;
    }
}

/* Fix gap between main and footer on all screen sizes */
main {
    margin-bottom: 0;
}

main > section:last-child {
    margin-bottom: 0;
}

/* Content padding to prevent overlap with bottom menu on mobile */
@media (max-width: 991.98px) {
    /* Footer padding for bottom menu */
    .footer-bottom {
        padding-bottom: calc(var(--space-lg) + var(--bottom-menu-height));
    }
    
    /* Back to top button position adjustment */
    .back-to-top {
        bottom: calc(var(--bottom-menu-height) + var(--space-lg));
    }
}

/* Section description spacing fix */
.section-header .section-description {
    margin-bottom: 0;
}

/* Footer Privacy Link Style */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-privacy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-privacy-link:hover {
    color: var(--gold, #C9A959);
}

@media (max-width: 576px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .topbar,
    .site-header,
    .back-to-top,
    .mobile-call-bar,
    .hero-section,
    .cta-section {
        display: none !important;
    }
    
    body {
        padding: 0;
        color: #000;
        background: #fff;
    }
    
    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}
