/* Obsidian & Gold Champagne - Luxury Design System */
/* Designed for Hovalot Zahav (הובלות זהב) */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Assistant', 'Heebo', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --bg-obsidian: #070709;
    --bg-charcoal: #0E0E12;
    --bg-glass-card: rgba(18, 18, 24, 0.72);
    --bg-glass-nav: rgba(7, 7, 9, 0.82);
    
    /* Champagne Gold Palette */
    --gold-primary: #D4AF37;
    --gold-light: #F5E5C9;
    --gold-dark: #9E7B3B;
    --gold-gradient: linear-gradient(135deg, #F5E5C9 0%, #D4AF37 50%, #9E7B3B 100%);
    --gold-gradient-hover: linear-gradient(135deg, #9E7B3B 0%, #D4AF37 50%, #F5E5C9 100%);
    
    --accent-whatsapp: #25D366;
    --accent-whatsapp-hover: #1FBE56;
    --tiktok-accent: #FE2C55;
    
    --text-white: #FFFFFF;
    --text-silver: #E2E4EB;
    --text-muted: #8E92A2;
    
    --border-glass: rgba(255, 255, 255, 0.07);
    --border-gold: rgba(212, 175, 55, 0.22);
    --border-gold-focus: rgba(255, 229, 201, 0.6);
    
    --shadow-deep: 0 16px 40px rgba(0, 0, 0, 0.6);
    --shadow-gold-glow: 0 8px 32px rgba(212, 175, 55, 0.08);
    
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s ease-out;
}

body {
    background-color: var(--bg-obsidian);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* Space for sticky header */
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-obsidian);
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography elements */
h1, h2, h3, h4 {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}
p {
    color: var(--text-muted);
}
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Helper styles */
.bold { font-weight: 900; }
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* Luxury Header / Glass Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: var(--bg-glass-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-svg {
    height: 44px;
    width: auto;
}
.logo-text {
    font-size: 1.55rem;
    font-weight: 900;
}
.logo-text .white-text {
    color: var(--text-white);
}

.nav-menu {
    display: flex;
    gap: 30px;
}
.nav-menu a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 6px 0;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}
.nav-menu a:hover {
    color: var(--text-white);
}
.nav-menu a:hover::after {
    width: 100%;
}

.header-action-side {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-phone-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
.btn-phone-header:hover {
    background: var(--gold-gradient);
    color: var(--bg-obsidian);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-whatsapp-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-whatsapp);
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
    transition: var(--transition-smooth);
}
.btn-whatsapp-header:hover {
    background-color: var(--accent-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.mobile-nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
}

#phone_mobile {
    display: none;
    width: 100%;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 800;
    background: var(--gold-gradient);
    color: var(--bg-obsidian);
    padding: 5px 0;
    position: absolute;
    bottom: -30px;
    left: 0;
    box-shadow: var(--shadow-deep);
}

/* Mobile Slide Out drawer menu */
.mobile-menu-drawer {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-charcoal);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: var(--shadow-deep);
    padding: 24px;
    z-index: 999;
}
.mobile-menu-drawer.open {
    display: block;
}
.mobile-navigation {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mobile-navigation a {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 10px 0;
}
.mobile-menu-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
}
.mobile-menu-cta-btn.phone {
    background-color: rgba(255,255,255,0.04);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
}
.mobile-menu-cta-btn.whatsapp {
    background-color: var(--accent-whatsapp);
    color: #FFFFFF;
}

/* Cinematic Hero Section */
.luxury-hero {
    position: relative;
    padding: 120px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.12) 0%, rgba(0,0,0,0) 70%);
}

.hero-glow-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(158, 123, 59, 0.04) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-centered-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.luxury-subtitle-badge {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    display: inline-block;
}

.hero-main-title {
    font-family: 'Heebo', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 30px;
    max-width: 800px;
}

.hero-pricing-box {
    margin-bottom: 45px;
    background: rgba(14, 14, 18, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 24px 45px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), var(--shadow-gold-glow);
    max-width: 600px;
    width: 100%;
}
.hero-pricing-box .price-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 5px;
    text-align: center;
}
.hero-pricing-box .price-value {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    text-align: center;
}
.hero-pricing-box .price-subtext {
    font-size: 0.95rem;
    color: var(--text-silver);
    margin-top: 10px;
    text-align: center;
}

.hero-actions-row {
    display: flex;
    gap: 18px;
    margin-bottom: 50px;
    justify-content: center;
    width: 100%;
}

.btn-luxury-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: var(--bg-obsidian);
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    transition: var(--transition-smooth);
}
.btn-luxury-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 229, 201, 0.4);
    background: var(--gold-gradient-hover);
}

.btn-luxury-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-gold);
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}
.btn-luxury-outline:hover {
    border-color: var(--gold-primary);
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

.hero-feature-badges {
    display: flex;
    gap: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}
.hero-feature-badges i {
    color: var(--gold-primary);
    margin-left: 6px;
}

/* Luxury Layered Cards Deck (Hero Section) */
.luxury-layered-cards-deck {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 380px;
    margin: 0 auto;
}
.deck-frame-border {
    position: absolute;
    inset: -15px;
    border: 2px dashed rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    pointer-events: none;
    z-index: 1;
}
.deck-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}
.deck-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.back-card {
    width: 280px;
    height: 210px;
    top: 20px;
    left: 20px;
    transform: rotate(-5deg);
    z-index: 2;
    opacity: 0.6;
}
.front-card {
    width: 320px;
    height: 240px;
    bottom: 40px;
    right: 20px;
    transform: rotate(3deg);
    z-index: 3;
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}
.luxury-layered-cards-deck:hover .back-card {
    transform: rotate(-1deg) translate(-10px, -10px);
    opacity: 0.8;
}
.luxury-layered-cards-deck:hover .front-card {
    transform: rotate(0deg) translate(10px, 10px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.2);
}

/* Horizontal luxury metrics glass plate */
.luxury-metrics-glass-plate {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 18, 22, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
    box-shadow: var(--shadow-deep), 0 0 15px rgba(212, 175, 55, 0.1);
    white-space: nowrap;
    transition: var(--transition-smooth);
}
.luxury-metrics-glass-plate:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold-glow);
    transform: translateX(-50%) translateY(-2px);
}
.plate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.plate-number {
    font-size: 1.5rem;
    font-weight: 800;
}
.plate-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 700;
}
.plate-vertical-line {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Animation float */
.frosted-glass-badge {
    animation: floatBadge 6s ease-in-out infinite;
}
.rating-badge {
    animation-delay: 3s;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* TikTok Section ("Social Lounge") */
.tiktok-media-section {
    padding: 100px 0;
    background-color: #050507;
}
.text-center-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.section-tag-gold {
    color: var(--gold-primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}
.tiktok-main-title {
    font-family: 'Heebo', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.tiktok-main-title span {
    color: var(--tiktok-color);
}
.tiktok-main-subtitle {
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.05rem;
}

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

.tiktok-phone-frame {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/16;
    background: #09090b;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}
.tiktok-phone-frame:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold-glow);
}

.phone-screen-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.phone-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-glass-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}
.tiktok-phone-frame:hover .phone-glass-overlay {
    background: rgba(212, 175, 55, 0.15);
}

.gold-play-button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.6);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    transition: opacity var(--transition-fast), transform var(--transition-smooth);
}
.tiktok-phone-frame:hover .gold-play-button {
    opacity: 1;
    transform: scale(1);
}
.play-icon-tri {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6.5px 0 6.5px 13px;
    border-color: transparent transparent transparent var(--bg-obsidian);
    margin-right: -2px;
}

.phone-title-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(7, 7, 9, 0.9) 0%, transparent 100%);
    padding: 30px 15px 15px;
    font-size: 0.85rem;
    color: var(--text-white);
    font-weight: 700;
    text-align: center;
}

/* Social Media Wide Action Banner */
.tiktok-action-banner {
    background-color: var(--bg-glass-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-deep);
}
.tiktok-action-banner:hover {
    border-color: var(--gold-primary);
    background-color: rgba(212, 175, 55, 0.04);
}

.banner-flex-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.pulsing-play-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: goldPulse 2.5s infinite;
    flex-shrink: 0;
}
.banner-play-tri {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7.5px 0 7.5px 14px;
    border-color: transparent transparent transparent var(--bg-obsidian);
    margin-right: -2.5px;
}
.banner-texts {
    text-align: right;
}
.banner-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2px;
}
.banner-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.banner-brand-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.45); }
    50% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}

/* Executive About Section */
.executive-about-section {
    padding: 100px 0;
    background-color: var(--bg-obsidian);
}
.executive-card {
    background-color: var(--bg-glass-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-deep);
    position: relative;
    overflow: hidden;
}
.executive-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

/* Redesigned About Section Grid (Dashboard Style) */
.executive-flex-layout {
    display: grid;
    grid-template-columns: 240px 1fr 300px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Column 1: Photo & Brand */
.executive-photo-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}
.verified-avatar-wrapper {
    width: 170px;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.executive-profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.verified-avatar-wrapper:hover .executive-profile-avatar {
    transform: scale(1.05);
}
.verified-ribbon-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(37, 211, 102, 0.9);
    backdrop-filter: blur(4px);
    color: #FFF;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    z-index: 10;
}
.executive-brand-name {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

/* Column 2: Bio & pills */
.executive-bio-column {
    display: flex;
    flex-direction: column;
}
.executive-bio-paragraph {
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 20px;
}
.executive-pills-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.luxury-status-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    gap: 6px;
}
.luxury-status-pill .pill-title {
    color: var(--text-muted);
}
.luxury-status-pill .pill-desc.text-green {
    color: var(--accent-whatsapp);
}
.luxury-status-pill .pill-desc.text-gold {
    color: var(--gold-primary);
}

.executive-cta-row {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}
.btn-exec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
.btn-exec.phone {
    background-color: var(--gold-primary);
    color: var(--bg-obsidian);
}
.btn-exec.phone:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}
.btn-exec.whatsapp {
    background-color: var(--accent-whatsapp);
    color: #FFFFFF;
}
.btn-exec.whatsapp:hover {
    background-color: var(--accent-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

/* Column 3: Ratings Dashboard */
.executive-ratings-dashboard {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}
.rating-bar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rating-bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
}
.rating-bar-title {
    color: var(--text-silver);
}
.rating-bar-score {
    font-weight: 800;
}
.rating-bar-track {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border-radius: 3px;
}

/* Google stars review box */
.google-rating-verification-section {
    padding: 30px 0;
    background-color: #050507;
}
.google-badge-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 20px 40px;
    transition: var(--transition-fast);
}
.google-badge-box:hover {
    border-color: var(--border-gold);
    background: rgba(212, 175, 55, 0.04);
}
.google-badge-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.badge-title-header {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-silver);
}
.stars-gold-row {
    color: var(--gold-primary);
    font-size: 1.15rem;
    display: flex;
    gap: 5px;
}
.badge-text-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Serviced Cities tag grid */
.serviced-areas-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
}
.section-heading-custom {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}
.heading-badge-gold {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}
.heading-title-luxury {
    font-size: 2.3rem;
    font-weight: 900;
}
.heading-desc-luxury {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 10px;
}
.heading-line-gold {
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Redesigned Cities Tag Cloud (Flex Pills) */
.luxury-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.luxury-tag-card {
    background: rgba(22, 22, 28, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    cursor: default;
}
.luxury-tag-card::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--gold-primary);
    transition: var(--transition-smooth);
}
.luxury-tag-card:hover {
    background: var(--gold-primary);
    color: var(--bg-obsidian) !important;
    border-color: var(--gold-primary);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}
.luxury-tag-card:hover::before {
    background-color: var(--bg-obsidian);
    box-shadow: none;
}

/* Services Grid Section */
.luxury-services-section {
    padding: 100px 0;
    background-color: var(--bg-obsidian);
}
.luxury-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.glass-service-card {
    background-color: var(--bg-glass-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    transition: var(--transition-smooth);
}
.glass-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold-glow);
}
.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.02) 0%, rgba(0,0,0,0) 50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}
.glass-service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card-icon {
    font-size: 2.4rem;
    color: var(--gold-primary);
    margin-bottom: 22px;
    transition: var(--transition-smooth);
}
.glass-service-card:hover .service-card-icon {
    transform: translateY(-4px);
}
.glass-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.glass-service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 30px;
    min-height: 80px;
}
.service-card-footer {
    display: flex;
}
.service-price-label {
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Actual moves gallery section */
.luxury-gallery-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
}
.luxury-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.luxury-gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    aspect-ratio: 4/3;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}
.luxury-gallery-card:hover {
    transform: scale(1.03);
    border-color: var(--gold-primary);
}
.gallery-img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-card-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(7, 7, 9, 0.9) 0%, transparent 100%);
    padding: 20px 10px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
}

/* Why us / Core benefits section */
.luxury-benefits-section {
    padding: 100px 0;
    background-color: var(--bg-obsidian);
}
.luxury-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.glass-benefit-card {
    background-color: var(--bg-glass-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-deep);
    transition: var(--transition-smooth);
}
.glass-benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold-glow);
}
.benefit-icon-wrapper {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 18px;
}
.glass-benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.glass-benefit-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Testimonials section */
.luxury-testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
}
.luxury-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.glass-testimonial-card {
    background-color: var(--bg-glass-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-deep);
    transition: var(--transition-smooth);
}
.glass-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold-glow);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.avatar-initials {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.05rem;
}
.testimonial-meta h4 {
    font-size: 0.95rem;
    font-weight: 700;
}
.testimonial-meta .review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.review-stars-gold {
    color: var(--gold-primary);
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
}
.review-text-paragraph {
    font-size: 0.9rem;
    color: var(--text-silver);
    line-height: 1.65;
}

/* Storage promotional card showcase */
.storage-glass-showcase {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(135deg, #050507 0%, #0e0e13 55%, #160a0f 100%);
    overflow: hidden;
}
.storage-radial-shadow-1 {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.04);
    filter: blur(100px);
    border-radius: 50%;
}
.storage-radial-shadow-2 {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.04);
    filter: blur(100px);
    border-radius: 50%;
}
.relative-content {
    position: relative;
    z-index: 5;
}
.storage-hero-title {
    font-family: 'Heebo', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.25;
}
.storage-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 20px auto 0;
}

.storage-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}
.storage-highlight-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-smooth);
}
.storage-highlight-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    background-color: rgba(255, 255, 255, 0.03);
}
.storage-highlight-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-gradient);
    color: var(--bg-obsidian);
    font-size: 1.35rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
    animation: floatBadge 5s ease-in-out infinite;
}
.storage-highlight-card h3 {
    font-size: 1.12rem;
    margin-bottom: 12px;
}
.storage-highlight-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.storage-conversion-box {
    margin-top: 40px;
}
.btn-storage-conversion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: var(--bg-obsidian);
    font-weight: 800;
    font-size: 1.15rem;
    padding: 16px 40px;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}
.btn-storage-conversion:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 229, 201, 0.5);
    background: var(--gold-gradient-hover);
}
.storage-disclaimer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
}

/* FAQ Section Accordion styling */
.luxury-faq-section {
    padding: 100px 0;
    background-color: var(--bg-obsidian);
}
.faq-glass-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-glass-card {
    border-bottom: 1px solid var(--border-glass);
    background: transparent;
    transition: var(--transition-fast);
}
.faq-glass-button {
    width: 100%;
    padding: 24px 10px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: right;
    transition: var(--transition-fast);
}
.faq-glass-button i {
    color: var(--gold-primary);
    transition: transform var(--transition-fast);
    font-size: 0.95rem;
}
.faq-glass-button:hover {
    color: var(--gold-primary);
}

.faq-glass-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    padding: 0 10px;
}
.faq-glass-content p {
    font-size: 0.95rem;
    color: var(--text-silver);
    padding-bottom: 24px;
    line-height: 1.7;
}

/* Accordion slide animation */
.faq-glass-card.open .faq-glass-content {
    max-height: 250px;
}
.faq-glass-card.open .faq-glass-button i {
    transform: rotate(180deg);
}

/* SEO Keywords section */
.seo-tags-section {
    padding: 60px 0;
    background-color: var(--bg-charcoal);
}
.seo-tags-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}
.seo-tags-cloud-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}
.seo-tag-item {
    background-color: var(--bg-glass-card);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
}
.seo-tag-item:hover {
    background-color: var(--gold-primary);
    color: var(--bg-obsidian);
    border-color: transparent;
    transform: translateY(-2px);
}

/* Contact Grid & Form styling */
.luxury-contact-section {
    padding: 100px 0;
    background-color: var(--bg-obsidian);
}
.contact-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.contact-info-panel {
    display: flex;
    flex-direction: column;
}
.section-heading-custom-left {
    margin-bottom: 35px;
}
.section-heading-custom-left .badge-gold {
    color: var(--gold-primary);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.contact-title-luxury {
    font-family: 'Heebo', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
}
.contact-desc-luxury {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 1.05rem;
}

.contact-info-cards-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-card-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.item-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.25rem;
}
.item-texts {
    display: flex;
    flex-direction: column;
}
.item-texts span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.item-texts a,
.item-texts p {
    font-size: 1.15rem;
    font-weight: 700;
}
.item-texts a:hover {
    color: var(--gold-primary);
}

/* Social media block */
.social-networking-box {
    margin-top: 40px;
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
}
.social-networking-box h3 {
    font-size: 0.95rem;
    color: var(--text-silver);
    margin-bottom: 18px;
}
.social-icons-row {
    display: flex;
    gap: 15px;
}
.social-icons-row a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: var(--transition-fast);
}
.social-icons-row a.fb { color: #3b5998; }
.social-icons-row a.ig { color: #e1306c; }
.social-icons-row a.tk { color: #ffffff; }
.social-icons-row a.gg { color: #ea4335; }

.social-icons-row a:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    background-color: rgba(212, 175, 55, 0.06);
}

/* Contact glass form card */
.contact-form-glass-card {
    background-color: var(--bg-glass-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 45px;
    box-shadow: var(--shadow-deep);
}
.contact-form-glass-card h3 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-align: center;
}
.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.input-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.input-field-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-silver);
}
.input-field-group input,
.input-field-group textarea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--text-white);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}
.input-field-group textarea {
    resize: none;
}
.input-field-group input:focus,
.input-field-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
}

.btn-luxury-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: var(--bg-obsidian);
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.btn-luxury-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 229, 201, 0.4);
    background: var(--gold-gradient-hover);
}

/* Success Alert */
.success-alert-glow {
    background-color: rgba(37, 211, 102, 0.08);
    border: 1px solid var(--accent-whatsapp);
    color: #FFFFFF;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.15);
}
.success-alert-glow i {
    color: var(--accent-whatsapp);
    font-size: 1.2rem;
}

/* Sticky mobile call bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    z-index: 998;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
}
.sticky-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #FFFFFF !important;
}
.sticky-item.phone { background-color: #121217; border-top: 1px solid var(--border-gold); }
.sticky-item.whatsapp { background-color: var(--accent-whatsapp); }

/* Luxury Footer */
.luxury-footer {
    background-color: #030304;
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 40px;
}
.footer-columns-row {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-logo-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.footer-brand-name {
    font-size: 1.45rem;
    font-weight: 900;
}
.footer-brand-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.footer-columns-row h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text-white);
    border-right: 3px solid var(--gold-primary);
    padding-right: 12px;
}
.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-nav-list a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-nav-list a:hover {
    color: var(--gold-primary);
    padding-right: 5px;
}

.footer-copyright {
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
    text-align: center;
}
.footer-copyright p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* RESPONSIVE MEDIA QUERIES (RTL Support) */

@media (max-width: 991px) {
    .hero-pricing-box {
        padding: 20px 24px;
        margin: 0 auto 30px;
    }
    .hero-actions-row {
        justify-content: center;
    }
    .hero-feature-badges {
        justify-content: center;
    }
    
    .executive-flex-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .executive-photo-column {
        width: 100%;
        align-items: center;
    }
    .executive-ratings-dashboard {
        width: 100%;
    }
    .luxury-layered-cards-deck {
        height: 280px;
        max-width: 320px;
    }
    .back-card {
        width: 200px;
        height: 150px;
    }
    .front-card {
        width: 240px;
        height: 180px;
        bottom: 30px;
        right: 10px;
    }
    .luxury-metrics-glass-plate {
        padding: 10px 20px;
        gap: 12px;
        bottom: -25px;
    }
    .plate-number {
        font-size: 1.2rem;
    }
    
    .tiktok-frames-grid {
        grid-template-columns: 1fr 1fr;
    }
    .luxury-services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .luxury-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .luxury-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    .luxury-testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .storage-showcase-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-columns-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
        padding-bottom: 65px; /* Sticky bar buffer */
    }
    .main-header {
        height: 70px;
    }
    
    #phone_mobile {
        display: block;
    }
    
    .nav-menu,
    .header-action-side {
        display: none; /* Hide desktop elements */
    }
    
    .mobile-nav-toggle {
        display: flex; /* Show mobile hamburger */
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    .hero-pricing-box .price-value {
        font-size: 2.6rem;
    }
    .hero-actions-row {
        flex-direction: column;
        gap: 12px;
    }
    .btn-luxury-solid,
    .btn-luxury-outline {
        width: 100%;
        padding: 14px 28px;
    }
    .hero-feature-badges {
        flex-wrap: wrap;
        gap: 12px 20px;
    }
    
    .rating-badge {
        right: -10px;
    }
    .moves-badge {
        left: -10px;
    }
    
    .executive-card {
        padding: 30px 20px;
    }
    .executive-metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 10px;
    }
    
    .google-badge-box {
        padding: 15px 20px;
    }
    
    .mobile-sticky-bar {
        display: grid;
    }
}

@media (max-width: 600px) {
    .tiktok-frames-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .luxury-tag-card {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .luxury-services-grid {
        grid-template-columns: 1fr;
    }
    .luxury-gallery-grid {
        grid-template-columns: 1fr;
    }
    .luxury-benefits-grid {
        grid-template-columns: 1fr;
    }
    .luxury-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .storage-showcase-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-glass-card {
        padding: 30px 20px;
    }
}

/* Calculator Styles */
.luxury-calculator-section {
    padding: 100px 0;
    background-color: var(--bg-obsidian);
    position: relative;
}

.calculator-glass-card {
    background-color: var(--bg-glass-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-deep);
}

.calculator-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-group.full-width {
    grid-column: span 2;
}

.calc-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-silver);
}

/* Select inputs */
.calc-select {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--text-white);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 18px center;
    background-size: 16px;
    padding-left: 45px;
    padding-right: 18px;
}

.calc-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
}

/* Radio Tiles */
.calc-radio-tiles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.calc-tile {
    position: relative;
    cursor: pointer;
}

.calc-tile input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tile-card {
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition-smooth);
}

.tile-card .tile-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
}

.tile-card .tile-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.calc-tile input:checked + .tile-card {
    border-color: var(--gold-primary);
    background-color: rgba(212, 175, 55, 0.08);
    box-shadow: var(--shadow-gold-glow);
}

.calc-tile input:checked + .tile-card .tile-title {
    color: var(--gold-primary);
}

/* Checkboxes style */
.flex-checkboxes {
    justify-content: center;
}

.calc-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    user-select: none;
    margin-bottom: 12px;
}

.calc-checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.calc-checkbox-indicator {
    width: 22px;
    height: 22px;
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    display: inline-block;
    position: relative;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.calc-checkbox-label input:checked ~ .calc-checkbox-indicator {
    border-color: var(--gold-primary);
    background-color: rgba(212, 175, 55, 0.15);
}

.calc-checkbox-indicator::after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid var(--gold-primary);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.calc-checkbox-label input:checked ~ .calc-checkbox-indicator::after {
    display: block;
}

/* Calculator Result Panel */
.calc-result-panel {
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.9) 0%, rgba(10, 10, 12, 0.95) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-deep);
}

.result-title {
    font-size: 1rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.result-price-display {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-primary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    margin-bottom: 10px;
    line-height: 1;
}

.result-disclaimer {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.btn-calc-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--accent-whatsapp);
    color: #FFFFFF !important;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 14px 28px;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    transition: var(--transition-smooth);
    width: 100%;
    max-width: 500px;
}

.btn-calc-whatsapp:hover {
    background-color: var(--accent-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

/* Custom Stepper for Boxes */
.calc-number-wrapper {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.calc-btn-minus, .calc-btn-plus {
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 1.25rem;
    font-weight: bold;
    width: 50px;
    height: 48px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calc-btn-minus:hover, .calc-btn-plus:hover {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--text-white);
}

.calc-number-input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.05rem;
    font-weight: bold;
    text-align: center;
    width: 100%;
    outline: none;
    padding: 0;
    -moz-appearance: textfield;
}

.calc-number-input::-webkit-outer-spin-button,
.calc-number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Media Query Overrides */
@media (max-width: 991px) {
    .calculator-fields-grid {
        grid-template-columns: 1fr;
    }
    .calc-group.full-width {
        grid-column: span 1;
    }
    .calc-radio-tiles {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .calculator-glass-card {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .calc-radio-tiles {
        grid-template-columns: 1fr 1fr;
    }
}
