/* =============================================
   5TH AVENUE NAIL SALON - ULTRA PREMIUM STYLES
   ============================================= */

/* === CSS Custom Properties === */
:root {
    --primary: #c8a97e;
    --primary-light: #e4d5c0;
    --primary-dark: #a6865a;
    --secondary: #2c2c2c;
    --dark: #1a1a1a;
    --darker: #111111;
    --light: #faf8f5;
    --white: #ffffff;
    --text: #555555;
    --text-light: #888888;
    --gold: #d4af37;
    --rose: #e8c4c4;
    --rose-dark: #c9a0a0;
    --gradient-gold: linear-gradient(135deg, #c8a97e 0%, #e4d5c0 50%, #c8a97e 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 8px 30px rgba(200,169,126,0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: preloader-spin 1.5s linear infinite;
}

.preloader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    border-top-color: var(--primary-light);
    animation-duration: 2s;
    animation-direction: reverse;
}

.preloader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    border-top-color: var(--gold);
    animation-duration: 1s;
}

.preloader-text {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes preloader-spin {
    to { transform: rotate(360deg); }
}

/* === Floating Particles === */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 8s ease-in-out infinite;
}

@keyframes particle-float {
    0%, 100% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.1; }
    100% { transform: translateY(-100px) scale(1); }
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-icon {
    font-size: 28px;
    color: var(--primary);
    animation: logo-sparkle 3s ease-in-out infinite;
}

@keyframes logo-sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(180deg); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    animation: hero-zoom 8s ease-in-out forwards;
}

@keyframes hero-zoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(17,17,17,0.7) 0%,
        rgba(17,17,17,0.5) 40%,
        rgba(17,17,17,0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: rgba(200,169,126,0.15);
    border: 1px solid rgba(200,169,126,0.3);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-star {
    color: var(--gold);
    font-size: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-line {
    display: block;
    font-size: clamp(42px, 7vw, 86px);
    font-weight: 600;
}

.title-accent {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-glow {
    animation: btn-glow-pulse 2s ease-in-out infinite;
}

@keyframes btn-glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(200,169,126,0.3); }
    50% { box-shadow: 0 0 40px rgba(200,169,126,0.5), 0 0 60px rgba(200,169,126,0.2); }
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 15px;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 2s ease-in-out infinite;
}

@keyframes wheel-scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

.hero-scroll-indicator span {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* === Marquee Strip === */
.marquee-strip {
    background: var(--dark);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: marquee-scroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 500;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* === Section Headers === */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1.5px;
    background: var(--primary);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title em {
    color: var(--primary);
    font-style: italic;
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

/* === About Section === */
.about {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 550px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--light);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-accent:hover img {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    top: 50%;
    right: 30%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-gold);
    animation: badge-pulse 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes badge-pulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.05); }
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 11px;
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.about-divider::before,
.about-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--primary), transparent);
}

.about-divider::after {
    background: linear-gradient(to left, var(--primary), transparent);
}

.divider-diamond {
    color: var(--primary);
    font-size: 14px;
}

.about-text {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* === Services Section === */
.services {
    background: var(--white);
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(200,169,126,0.07) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.service-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26,26,26,0.4) 100%);
}

.service-info {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    margin-top: -56px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

.service-price {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
}

.services-cta {
    text-align: center;
    margin-top: 56px;
}

/* === Stats Section === */
.stats-section {
    position: relative;
    padding: 80px 0;
    background: url('images/salon-interior.jpg') center/cover fixed;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,17,17,0.88);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    display: inline;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary);
    display: inline;
    margin-left: 2px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    margin-top: 8px;
}

/* === Gallery Section === */
.gallery {
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,26,26,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 16px;
    background: rgba(200,169,126,0.8);
    border-radius: 50px;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

/* === Why Choose Us === */
.why-us {
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--light);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(200,169,126,0.08);
    line-height: 1;
}

.why-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-card:hover .why-card-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* === Reviews Section === */
.reviews {
    background: var(--light);
    overflow: hidden;
}

.reviews-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.rating-stars {
    color: var(--gold);
    font-size: 18px;
    display: flex;
    gap: 2px;
}

.rating-score {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
}

.rating-count {
    font-size: 14px;
    color: var(--text-light);
}

.reviews-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.review-card {
    min-width: calc(33.333% - 20px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex-shrink: 0;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-family: var(--font-accent);
    font-size: 17px;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.review-author strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
}

.review-author span {
    font-size: 12px;
    color: var(--text-light);
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.reviews-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.reviews-dots {
    display: flex;
    gap: 8px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(200,169,126,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.reviews-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

.reviews-cta {
    text-align: center;
    margin-top: 48px;
}

.reviews-cta .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.reviews-cta .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* === CTA Banner === */
.cta-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(44,44,44,0.88) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content h2 em {
    color: var(--primary);
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    font-family: var(--font-accent);
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* === Contact Section === */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.contact-map {
    height: 100%;
    min-height: 460px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
}

/* === Footer === */
.footer {
    background: var(--darker);
    color: rgba(255,255,255,0.6);
}

.footer-top {
    padding: 80px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 280px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li,
.footer-services li,
.footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    width: 16px;
}

.footer-contact a {
    color: var(--primary);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 13px;
}

/* === Gallery Lightbox Modal === */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-counter {
    position: absolute;
    top: 32px;
    left: 32px;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    z-index: 10;
}

.lightbox-counter span:first-child {
    color: var(--primary);
    font-weight: 700;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 85vw;
    max-height: 78vh;
}

.lightbox-img-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 68vh;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-img {
    max-width: 100%;
    max-height: 68vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.active .lightbox-img.loaded {
    opacity: 1;
    transform: scale(1);
}

.lightbox-img.slide-left {
    animation: lightbox-slide-left 0.45s ease forwards;
}

.lightbox-img.slide-right {
    animation: lightbox-slide-right 0.45s ease forwards;
}

@keyframes lightbox-slide-left {
    0% { opacity: 0; transform: translateX(60px) scale(0.95); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes lightbox-slide-right {
    0% { opacity: 0; transform: translateX(-60px) scale(0.95); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

.lightbox-caption {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.lightbox.active .lightbox-caption {
    opacity: 1;
    transform: translateY(0);
}

.lightbox-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
}

.lightbox-alt {
    color: rgba(255,255,255,0.6);
    font-family: var(--font-accent);
    font-size: 16px;
    font-style: italic;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 10px 16px;
    background: rgba(0,0,0,0.4);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

.lightbox.active .lightbox-thumbnails {
    opacity: 1;
}

.lightbox-thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.5;
    flex-shrink: 0;
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

.lightbox-thumb.active {
    border-color: var(--primary);
    opacity: 1;
    box-shadow: 0 0 16px rgba(200,169,126,0.5);
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox responsive */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .lightbox-counter {
        top: 22px;
        left: 16px;
        font-size: 12px;
    }

    .lightbox-content {
        max-width: 92vw;
    }

    .lightbox-img-wrapper {
        max-height: 55vh;
    }

    .lightbox-img {
        max-height: 55vh;
        border-radius: var(--radius-md);
    }

    .lightbox-thumbnails {
        bottom: 16px;
        gap: 6px;
        padding: 8px 12px;
    }

    .lightbox-thumb {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    .lightbox-caption {
        flex-direction: column;
        gap: 8px;
    }
}

/* Gallery item clickable cursor */
.gallery-item {
    cursor: pointer;
}

.gallery-overlay {
    cursor: pointer;
}

.gallery-overlay .gallery-tag::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3Cpath d='M12 10h-2v2H9v-2H7V9h2V7h1v2h2v1z'/%3E%3C/svg%3E");
    background-size: contain;
    vertical-align: middle;
    opacity: 0.9;
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* === Scroll Animations === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[data-animation="fade-down"] {
    transform: translateY(-40px);
}

.animate-on-scroll[data-animation="fade-down"].visible {
    transform: translateY(0);
}

.animate-on-scroll[data-animation="fade-right"] {
    transform: translateX(-60px);
}

.animate-on-scroll[data-animation="fade-right"].visible {
    transform: translateX(0);
}

.animate-on-scroll[data-animation="fade-left"] {
    transform: translateX(60px);
}

.animate-on-scroll[data-animation="fade-left"].visible {
    transform: translateX(0);
}

.animate-on-scroll[data-animation="zoom-in"] {
    transform: scale(0.8);
}

.animate-on-scroll[data-animation="zoom-in"].visible {
    transform: scale(1);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gallery-grid {
        grid-auto-rows: 240px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-card {
        min-width: calc(50% - 15px);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 0;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 15px;
    }

    .nav-cta {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .review-card {
        min-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map {
        min-height: 350px;
    }

    .map-wrapper {
        min-height: 350px;
    }

    .map-wrapper iframe {
        min-height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-images {
        height: 320px;
    }

    .about-img-main {
        height: 320px;
    }

    .about-img-accent {
        height: 200px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .title-line {
        font-size: 36px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .about-images {
        height: 280px;
    }

    .about-experience-badge {
        width: 90px;
        height: 90px;
    }

    .exp-number {
        font-size: 24px;
    }
}

/* === Special Animations === */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.shimmer-text {
    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--primary-light) 25%,
        var(--gold) 50%,
        var(--primary-light) 75%,
        var(--primary) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Smooth selection */
::selection {
    background: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}