/* ==========================================================================
   GLAMSMITH - LUXURY HAUTE COIFFURE DESIGN SYSTEM
   ========================================================================== */

:root {
    --color-bg: #090909;
    --color-bg-alt: #111111;
    --color-card-bg: rgba(18, 18, 18, 0.65);
    --color-gold: #D4AF37;
    --color-gold-light: #F3CA52;
    --color-gold-dark: #A4811F;
    --color-gold-glow: rgba(212, 175, 55, 0.25);
    --color-white: #F8F8F8;
    --color-gray: #BEBEBE;
    --color-gray-dark: #2A2A2A;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Basic Setup */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial; /* Managed by Lenis */
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* Custom Luxury Cursor */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, transform 0.1s ease-out;
}

/* Cursor Hover states */
body.hovered .cursor-dot {
    width: 12px;
    height: 12px;
    background-color: var(--color-gold-light);
}
body.hovered .cursor-ring {
    width: 50px;
    height: 50px;
    border-color: var(--color-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s var(--transition-smooth);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
    background: rgba(9, 9, 9, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
    padding: 16px 60px;
    background: rgba(9, 9, 9, 0.92);
    border-bottom-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

/* LOGO */
.logo a {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

.logo a span {
    color: var(--color-gold);
    font-weight: 400;
    font-style: italic;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
    opacity: 0.85;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transition: width 0.4s var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
    opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* NAV SOCIALS */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.35s ease;
}

.social-icon:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--color-gold);
    transition: all 0.3s ease;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    background-color: var(--color-bg);
}

/* Canvas Particles */
.hero-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Hero Background Image */
.hero-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.35;
    filter: brightness(0.7) contrast(1.15) saturate(1.1);
    transform: scale(1.02);
    transition: transform 0.1s linear;
}

/* Dark Vignette Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 75% 45%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(9, 9, 9, 0.95) 0%, transparent 70%),
        linear-gradient(180deg, rgba(9, 9, 9, 0.85) 0%, rgba(9, 9, 9, 0.5) 40%, rgba(9, 9, 9, 0.95) 100%),
        linear-gradient(90deg, rgba(9, 9, 9, 0.95) 0%, rgba(9, 9, 9, 0.4) 50%, rgba(9, 9, 9, 0.9) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Ambient Gold Glow & Wave Lights */
.gold-ambient-glow {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.28) 0%, rgba(212, 175, 55, 0.08) 45%, transparent 70%);
    filter: blur(60px);
    z-index: 3;
    pointer-events: none;
    animation: goldPulse 8s infinite alternate ease-in-out;
}

.gold-lights-img {
    position: absolute;
    bottom: -10%;
    left: 0%;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.65;
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Hero Content Container */
.hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 100px);
}

/* HERO LEFT COLUMN */
.hero-left {
    flex: 0 0 52%;
    max-width: 680px;
    padding-right: 20px;
    padding-bottom: 60px;
}

.hero-subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.gold-line-accent {
    width: 30px;
    height: 1px;
    background: var(--color-gold);
}

.hero-subtitle {
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 500;
}

/* HERO TITLE */
.hero-title {
    font-family: var(--font-heading);
    font-size: 82px;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .title-line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
}

.white-text {
    color: var(--color-white);
}

.gold-gradient-text {
    background: linear-gradient(135deg, #FFF0B8 0%, #D4AF37 50%, #9B7817 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 700;
}

.shimmer-effect {
    position: relative;
    background-size: 200% auto;
    animation: goldShimmer 6s linear infinite;
}

@keyframes goldShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Diamond Divider */
.diamond-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    max-width: 420px;
}

.diamond-divider.justify-center {
    justify-content: center;
    margin: 25px auto 40px auto;
}

.d-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.d-sparkle {
    color: var(--color-gold);
    font-size: 14px;
}

.hero-description {
    font-size: 17px;
    color: var(--color-gray);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* HERO ACTIONS (BUTTONS) */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
}

.btn-gold {
    background: linear-gradient(135deg, #E5C158 0%, #D4AF37 50%, #B89222 100%);
    color: #000000;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: #000;
}

.btn-outline {
    background: rgba(9, 9, 9, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--color-white);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* HERO STATS */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-number-wrap {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-plus {
    font-size: 28px;
    margin-left: 2px;
}

.stat-label {
    font-size: 13px;
    color: var(--color-gray);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.mouse-wheel {
    width: 3px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 2px;
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gray);
}

/* HERO RIGHT COLUMN (3D MODEL) */
.hero-right {
    flex: 0 0 48%;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.model-frame {
    position: relative;
    width: 100%;
    max-width: 580px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-model {
    width: 100%;
    height: auto;
    max-height: 82vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.15));
    transform-origin: bottom center;
    transition: transform 0.1s ease-out;
    pointer-events: auto;
}

.model-gold-halo {
    position: absolute;
    bottom: 10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, rgba(212, 175, 55, 0.05) 60%, transparent 80%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

/* ==========================================================================
   GLASSMORPHISM FLOATING CARD
   ========================================================================== */
.glass-card-floating {
    position: absolute;
    bottom: 45px;
    right: 8%;
    z-index: 10;
    width: 100%;
    max-width: 540px;
    background: rgba(18, 18, 18, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(212, 175, 55, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.5s var(--transition-smooth), border-color 0.3s ease;
}

.glass-card-floating:hover {
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(212, 175, 55, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.glass-card-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.glass-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.glass-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.3), rgba(18, 18, 18, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background 0.3s ease;
}

.glass-feature-item:hover .glass-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: var(--color-gold);
    color: #000;
}

.glass-feature-content h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.glass-feature-content p {
    font-size: 11px;
    color: var(--color-gray);
    line-height: 1.4;
}

.glass-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.glass-pagination .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.glass-pagination .dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* ==========================================================================
   BRAND PARTNERS MARQUEE
   ========================================================================== */
.brand-marquee-section {
    background-color: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 24px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 45px;
    padding-right: 45px;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: 500;
}

.marquee-content .sep {
    color: var(--color-gold);
    font-size: 10px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
section {
    padding: 120px 0;
    position: relative;
}

.section-tag {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.section-about {
    background: radial-gradient(circle at 10% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    height: 520px;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.6s var(--transition-smooth);
}

.about-image-wrap:hover .about-img-box img {
    transform: scale(1.05);
}

.about-img-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(9, 9, 9, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 16px 24px;
    border-radius: 12px;
}

.badge-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-gold);
    letter-spacing: 2px;
}

.badge-sub {
    font-size: 12px;
    color: var(--color-gray);
}

.about-gold-border {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    z-index: -1;
    pointer-events: none;
}

.section-desc {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 35px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.h-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 18px;
    flex-shrink: 0;
}

.h-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 4px;
}

.h-text p {
    font-size: 14px;
    color: var(--color-gray);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.section-services {
    background-color: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--transition-smooth);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
}

.featured-service {
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(18, 18, 18, 0.8) 100%);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 22px;
    margin-bottom: 25px;
}

.service-category {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 8px;
    display: block;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 14px;
}

.service-card p {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-price {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-gold);
    font-weight: 600;
}

.service-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 50px auto 0 auto;
}

.pricing-card {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.pricing-gold {
    border-color: var(--color-gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, rgba(18, 18, 18, 0.9) 100%);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #E5C158, #D4AF37);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 35px;
}

.pricing-tier {
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 10px;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 700;
    color: var(--color-white);
}

.pricing-amount span {
    font-size: 18px;
    color: var(--color-gray);
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features li {
    font-size: 15px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: var(--color-gold);
}

.pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-features li.disabled i {
    color: rgba(255, 255, 255, 0.2);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.review-card {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.stars {
    color: var(--color-gold);
    margin-bottom: 20px;
    display: flex;
    gap: 6px;
}

.review-quote {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.7;
    margin-bottom: 30px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.author-info h4 {
    font-size: 16px;
    color: var(--color-white);
}

.author-info span {
    font-size: 12px;
    color: var(--color-gray);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.section-contact {
    padding-bottom: 140px;
}

.contact-box {
    position: relative;
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(30, 24, 10, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 60px rgba(212, 175, 55, 0.15);
}

.contact-content p {
    font-size: 18px;
    color: var(--color-gray);
    margin: 20px auto 40px auto;
    max-width: 600px;
}

.contact-actions {
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   SERVICES ALL GRID & TABS
   ========================================================================== */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 50px 0;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.35s var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.services-grid-all {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-item-box {
    background: rgba(18, 18, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.35s ease;
}

.service-item-box:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.12);
}

.s-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 18px;
}

.service-item-box h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-white);
}

.service-item-box p {
    font-size: 13px;
    color: var(--color-gray);
    line-height: 1.5;
}

/* ==========================================================================
   PRICING COMBOS GRID
   ========================================================================== */
.category-heading {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-combo-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.combo-badge {
    background: linear-gradient(90deg, #E5C158, #D4AF37);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 12px;
}

.combo-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-white);
    margin-bottom: 8px;
}

.combo-desc {
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.combo-meta {
    display: flex;
    align-items: center;
    gap: 25px;
}

.meta-item {
    font-size: 14px;
    color: var(--color-gray);
}

.meta-price {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-gold);
    font-weight: 700;
}

.pricing-combos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.combo-box {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.35s ease;
}

.combo-box:hover {
    border-color: var(--color-gold);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 25px rgba(212, 175, 55, 0.15);
}

.combo-box h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-white);
}

.sub-tag {
    font-size: 12px;
    color: var(--color-gold);
    opacity: 0.85;
}

.combo-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--color-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
}

.combo-details .price {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-gold);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 20px;
}

.custom-sparkle-icon {
    font-size: 20px;
    color: var(--color-gold);
}

/* ==========================================================================
   GOOGLE RATING BANNER & REVIEWS FILTER
   ========================================================================== */
.google-rating-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    padding: 24px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 40px;
    backdrop-filter: blur(15px);
}

.google-badge-box {
    display: flex;
    align-items: center;
    gap: 18px;
}

.google-icon {
    font-size: 38px;
    color: #4285F4;
    background: rgba(255, 255, 255, 0.95);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.google-score {
    display: flex;
    flex-direction: column;
}

.score-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.stars-row {
    color: var(--color-gold);
    font-size: 14px;
    margin-top: 4px;
}

.google-info h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-white);
}

.google-info p {
    font-size: 13px;
    color: var(--color-gray);
}

.review-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.review-filter-btn {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-filter-btn:hover,
.review-filter-btn.active {
    background: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.verified-badge {
    font-size: 11px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(76, 175, 80, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

/* ==========================================================================
   DIRECTIONS & LOCATION SECTION
   ========================================================================== */
.section-location {
    background: radial-gradient(circle at 90% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.location-card {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(15px);
}

.loc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.loc-icon {
    font-size: 28px;
    color: var(--color-gold);
}

.loc-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-white);
}

.loc-address {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.loc-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.loc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-white);
}

.loc-item i {
    color: var(--color-gold);
    font-size: 16px;
}

.location-map-wrap {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    min-height: 380px;
}

.featured-gold-box {
    border-color: var(--color-gold) !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(18, 18, 18, 0.85) 100%) !important;
}

@media screen and (max-width: 992px) {
    .google-rating-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .google-badge-box {
        flex-direction: column;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-map-wrap {
        height: 350px;
    }
}

