/* ==========================================================================
   D DAZLE UNISEX SALON & MAKEUP STUDIO - DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Color Palette */
    --color-bg-deep: hsl(30, 10%, 6%);       /* Rich Obsidian/Onyx */
    --color-bg-card: hsl(30, 8%, 10%);       /* Sleek Charcoal Card */
    --color-bg-card-light: hsl(30, 8%, 14%); /* Highlighted Card */
    
    --color-gold: hsl(43, 62%, 55%);         /* Primary Luxury Gold */
    --color-gold-light: hsl(37, 75%, 65%);   /* Soft Bright Gold */
    --color-gold-dark: hsl(43, 62%, 35%);    /* Warm Dark Gold */
    --color-gold-rgb: 212, 172, 83;
    
    --color-text-light: hsl(30, 20%, 92%);   /* High Contrast Text */
    --color-text-muted: hsl(30, 5%, 70%);    /* Subheadings and descriptions */
    --color-text-dark: hsl(30, 10%, 15%);    /* High Contrast dark text */
    
    --color-white: hsl(0, 0%, 98%);
    --color-black: hsl(0, 0%, 3%);
    
    --gold-gradient: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold-dark) 100%);
    --dark-gradient: linear-gradient(180deg, rgba(10, 8, 7, 0.8) 0%, var(--color-bg-deep) 100%);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Global Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease-in-out;
    
    /* Spacing */
    --container-max-width: 1200px;
    --nav-height: 80px;
}

/* Base Reset & Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-white);
}

p {
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 1000;
    width: 0%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0; /* Premium square edges */
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--color-black);
    border: none;
    box-shadow: 0 4px 15px rgba(var(--color-gold-rgb), 0.2);
}

.btn-gold:hover {
    box-shadow: 0 6px 20px rgba(var(--color-gold-rgb), 0.4);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}

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

.btn-outline:hover {
    background: var(--gold-gradient);
    color: var(--color-black);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--color-gold-rgb), 0.2);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Section Common Layout */
.section-padding {
    padding: 100px 0;
}

.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

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

.section-header.align-left {
    text-align: left;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title {
    font-size: 42px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
}

.title-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto 20px auto;
}

.section-header.align-left .title-divider {
    margin-left: 0;
}

.section-subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: transparent;
    z-index: 900;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.navbar.scrolled {
    background: rgba(10, 8, 7, 0.9);
    backdrop-filter: blur(12px);
    height: 70px;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

.nav-container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img {
    height: 42px;
    width: 42px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-text-light);
    position: relative;
    padding: 8px 0;
}

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

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

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 12s cubic-bezier(0.1, 1, 0.1, 1);
    z-index: 1;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 8, 7, 0.3) 0%, rgba(10, 8, 7, 0.85) 80%),
                linear-gradient(0deg, var(--color-bg-deep) 0%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--color-text-muted);
}

.scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-gold);
    animation: scrollBlink 2s infinite ease-in-out;
}

@keyframes scrollBlink {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-img-container {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img-frame {
    position: relative;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    padding: 15px;
    background: rgba(255,255,255,0.01);
    z-index: 2;
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: var(--transition-smooth);
}

.about-img-container:hover .about-img {
    filter: brightness(1);
}

.about-img-decor {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    transform: translate(30px, 30px);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.about-img-container:hover .about-img-decor {
    transform: translate(15px, 15px);
}

.about-info {
    display: flex;
    flex-direction: column;
}

.about-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--color-white);
}

.about-subtext {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
}

.stat-card {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--color-gold);
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--color-bg-card);
    padding: 6px;
    border: 1px solid rgba(255,255,255,0.05);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--color-white);
}

.tab-btn.active {
    background: var(--gold-gradient);
    color: var(--color-black);
    font-weight: 600;
}

.tabs-content-container {
    position: relative;
    min-height: 500px;
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, visibility 0s 0.5s;
}

.tab-pane.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, visibility 0s 0s;
}

.service-pane-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.pane-title {
    font-size: 32px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pane-description {
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.service-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    display: flex;
    flex-direction: column;
}

.service-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.service-item:hover .service-name {
    color: var(--color-gold);
}

.service-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    margin: 0 15px;
    position: relative;
    top: -4px;
}

.service-price {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gold);
}

.service-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 300;
}

.service-pane-image {
    position: relative;
}

.pane-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
    border: 1px solid rgba(255,255,255,0.08);
}

.pane-img-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--color-gold);
    z-index: -1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.service-pane-image:hover .pane-img-frame {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */

.why-choose-us {
    background-color: var(--color-bg-card);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(var(--color-gold-rgb), 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.why-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 2px solid var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

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

.why-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
    border-color: rgba(var(--color-gold-rgb), 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.why-icon {
    font-size: 36px;
    color: var(--color-gold);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--color-gold-light);
}

.why-title {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.why-desc {
    font-size: 13.5px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 22px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    color: var(--color-black);
    background: var(--gold-gradient);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(var(--color-gold-rgb), 0.2);
}

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

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 8, 7, 0.95) 0%, rgba(10, 8, 7, 0.4) 70%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 30px;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-info {
    display: flex;
    flex-direction: column;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-category {
    font-family: var(--font-body);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.gallery-item-title {
    font-size: 20px;
    color: var(--color-white);
}

.gallery-zoom {
    background: var(--color-white);
    color: var(--color-black);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8) translateY(15px);
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gallery-zoom:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

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

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.gallery-item.hidden {
    display: none;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 4, 3, 0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    padding: 20px;
}

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

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--color-white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    background: var(--gold-gradient);
    color: var(--color-black);
    border-color: transparent;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-caption {
    margin-top: 25px;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-gold-light);
    letter-spacing: 1px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials {
    background-color: var(--color-bg-card);
    position: relative;
}

.testimonials-slider-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 60px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 40px rgba(255,255,255,0.01);
}

.quote-icon {
    font-size: 36px;
    color: rgba(var(--color-gold-rgb), 0.15);
    margin-bottom: 20px;
}

.stars {
    color: var(--color-gold);
    font-size: 13px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info {
    text-align: center;
}

.user-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.user-role {
    font-family: var(--font-body);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-arrow {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    color: var(--color-black);
    background: var(--gold-gradient);
    border-color: transparent;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--color-gold);
    width: 20px;
    border-radius: 4px;
}

/* ==========================================================================
   SIMULATED INSTAGRAM FEED
   ========================================================================== */

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

.insta-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.03);
    display: block;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: var(--transition-smooth);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 8, 7, 0.85);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition-smooth);
    z-index: 2;
}

.insta-overlay i.fa-instagram {
    font-size: 36px;
    color: var(--color-gold-light);
}

.insta-stats {
    display: flex;
    gap: 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-white);
}

.insta-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.insta-badge-reel {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: var(--color-white);
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.insta-item:hover img {
    transform: scale(1.05);
}

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

.center-btn {
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   BOOKING SECTION
   ========================================================================== */

.booking-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: flex-start;
}

.booking-intro-text {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

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

.qc-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-gold);
    background: rgba(255,255,255,0.01);
}

.qc-info {
    display: flex;
    flex-direction: column;
}

.qc-label {
    font-family: var(--font-body);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.qc-value {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white);
}

.qc-value:hover {
    color: var(--color-gold-light);
}

.booking-form-container {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    position: relative;
}

.booking-form-container::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(var(--color-gold-rgb), 0.15);
    pointer-events: none;
}

.form-title-area {
    margin-bottom: 35px;
}

.form-title-area h3 {
    font-size: 28px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-title-area p {
    font-size: 13px;
    color: var(--color-text-muted);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group label .required {
    color: var(--color-gold);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    pointer-events: none;
    transition: var(--transition-fast);
}

.textarea-icon {
    top: 18px;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 15px 14px 45px;
    font-family: var(--font-body);
    color: var(--color-white);
    font-size: 13.5px;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.input-wrapper select {
    appearance: none;
    cursor: pointer;
}

.input-wrapper select option {
    background-color: var(--color-bg-card);
    color: var(--color-white);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.04);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper select:focus + .input-icon,
.input-wrapper textarea:focus + .input-icon {
    color: var(--color-gold);
}

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

.slot-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    padding: 12px 5px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slot-btn:hover {
    border-color: rgba(var(--color-gold-rgb), 0.5);
    color: var(--color-white);
}

.slot-btn.selected {
    background: var(--gold-gradient);
    color: var(--color-black);
    border-color: transparent;
    font-weight: 600;
}

/* ==========================================================================
   SUCCESS MODAL
   ========================================================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 4, 3, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

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

.modal-content {
    background: var(--color-bg-card);
    border: 1px solid var(--color-gold);
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.5);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 28px;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--color-white);
}

.modal-icon {
    font-size: 56px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.modal-title {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.modal-text {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.booking-summary-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    text-align: left;
    margin-bottom: 30px;
}

.summary-item {
    font-size: 13.5px;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item strong {
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 5px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 18px;
}

.contact-card-text h4 {
    font-size: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-card-text p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.social-links-container h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    color: var(--color-white);
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.social-icon:hover {
    color: var(--color-black);
    background: var(--gold-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--color-gold-rgb), 0.3);
}

.contact-map-panel {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    background: rgba(255,255,255,0.01);
}

.map-widget {
    height: 380px;
    width: 100%;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%); /* Dark map styling! */
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background-color: #050403;
    border-top: 1px solid rgba(var(--color-gold-rgb), 0.1);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    margin-bottom: 20px;
}

.footer-logo-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    color: var(--color-gold-light);
}

.footer-links h4,
.footer-services h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: var(--color-white);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links ul a,
.footer-services ul a {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.footer-links ul a:hover,
.footer-services ul a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

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

.footer-bottom p {
    font-size: 12px;
    color: var(--color-text-muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--color-text-muted);
}

.footer-legal a:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (CSS CLASS TRIGGERS)
   ========================================================================== */

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Page transitions initial load */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-title.fade-in {
    animation-delay: 0.2s;
}

.hero-subtitle.fade-in {
    animation-delay: 0.4s;
}

.hero-actions.fade-in {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST PRINCIPLE OVERRIDES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .about-grid,
    .service-pane-grid,
    .booking-grid,
    .contact-grid {
        gap: 40px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    /* Navigation responsive menu */
    .menu-toggle {
        display: flex;
        z-index: 999;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #0d0c0a;
        border-left: 1px solid rgba(var(--color-gold-rgb), 0.2);
        padding: 100px 40px 40px 40px;
        transition: var(--transition-smooth);
        z-index: 990;
        display: flex;
        flex-direction: column;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 14px;
        letter-spacing: 3px;
        display: block;
    }
    
    .btn-nav {
        display: none; /* Hide top button, put it in menu/hero instead */
    }
    
    /* Layout collapses */
    .about-grid,
    .service-pane-grid,
    .booking-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-container {
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .about-img {
        height: 380px;
    }
    
    .about-img-decor {
        transform: translate(15px, 15px);
    }
    
    .about-img-container:hover .about-img-decor {
        transform: translate(10px, 10px);
    }
    
    .about-stats {
        padding-top: 30px;
    }
    
    .pane-img {
        height: 300px;
    }
    
    .service-pane-image {
        grid-row: 1; /* Move image to the top on mobile */
        margin-bottom: 30px;
    }
    
    .pane-img-frame {
        top: -15px;
        left: -15px;
        right: 15px;
        bottom: 15px;
    }
    
    .booking-form-container {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 38px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .testimonial-card {
        padding: 40px 20px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .why-grid,
    .gallery-grid,
    .insta-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}
