/* -------------------------------------------------------------
   ARSH MEDIA HOUSE - Premium Design System (Navy & Gold Theme)
   ------------------------------------------------------------- */

/* Custom Reset & Variables */
:root {
    --bg-primary: #050b18;
    --bg-secondary: #091022;
    --bg-card: rgba(13, 22, 46, 0.6);
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa7c11;
    --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #f3e5ab 30%, #d4af37 100%);
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --border-gold: rgba(212, 175, 55, 0.15);
    --border-gold-focus: rgba(212, 175, 55, 0.5);
    --shadow-gold: 0 8px 32px 0 rgba(212, 175, 55, 0.08);
    --shadow-gold-hover: 0 12px 40px 0 rgba(212, 175, 55, 0.18);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6, .font-display {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

.gold-text {
    color: var(--gold-primary);
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.bg-gradient {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.align-center {
    align-items: center;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
    .section { padding: 5rem 0; }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 11, 24, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-gold);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.25rem 0;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Nav Styles */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

.mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.mobile-link:hover {
    color: var(--gold-primary);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .nav { display: none; }
    .mobile-nav-toggle { display: flex; }
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #050b18;
    box-shadow: var(--shadow-gold);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.btn-md {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 1.1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-glow {
    animation: goldGlowPulse 3s infinite;
}

@keyframes goldGlowPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Premium Card Styles */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: var(--shadow-gold-hover);
}

.glass-card {
    background: rgba(13, 22, 46, 0.4);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(12px);
    border-radius: 20px;
}

/* Sections Global Headers */
.section-header {
    margin-bottom: 4.5rem;
}

.section-tag {
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 0.25rem;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.section-description {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .section-header { margin-bottom: 3rem; }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 12rem 0 8rem 0;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(5, 11, 24, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-primary);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.gold-icon {
    color: var(--gold-primary);
}

/* Hero Dashboard Visual Mockup */
.hero-visual {
    position: relative;
}

.visual-card {
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-gold-hover);
}

.card-header-luxury {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.card-header-luxury .dots {
    display: flex;
    gap: 6px;
}

.card-header-luxury .dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.status-badge {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-body-luxury {
    padding: 1.5rem;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.15rem;
    font-weight: 700;
}

.leads-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.lead-row {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.lead-row:hover {
    background: rgba(212, 175, 55, 0.03);
    border-color: rgba(212, 175, 55, 0.1);
}

.lead-avatar {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.lead-info {
    flex-grow: 1;
}

.lead-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.lead-type {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.lead-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.lead-status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 50%;
}

.lead-status-dot.active {
    background-color: #25D366;
    box-shadow: 0 0 6px #25D366;
}

.new-lead-anim {
    border-color: var(--border-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
    animation: borderHighlight 3s infinite;
}

@keyframes borderHighlight {
    0% { border-color: rgba(212, 175, 55, 0.15); }
    50% { border-color: rgba(212, 175, 55, 0.6); }
    100% { border-color: rgba(212, 175, 55, 0.15); }
}

.growth-chart-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem;
}

.growth-chart {
    width: 100%;
    height: 80px;
    margin-bottom: 0.5rem;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-section { padding-top: 10rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.25rem; }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Problem Cards */
.problem-card {
    border-left: 3px solid rgba(239, 68, 68, 0.4);
}

.problem-card:hover {
    border-left-color: rgba(239, 68, 68, 0.8);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.04);
}

.problem-icon-wrapper {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.problem-card-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Solution Section */
.solution-visual {
    padding-right: 2rem;
}

.system-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.flow-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    transition: var(--transition-smooth);
}

.flow-step.highlighted {
    border-color: var(--border-gold);
    background: rgba(212, 175, 55, 0.03);
}

.flow-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.flow-badge.gold {
    color: var(--gold-primary);
}

.flow-step p {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.flow-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
}

.solution-items {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.solution-item {
    display: flex;
    gap: 1.5rem;
}

.solution-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
    opacity: 0.5;
    line-height: 1;
}

.solution-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.solution-details p {
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .solution-visual { padding-right: 0; margin-bottom: 3rem; }
}

/* Services Cards */
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(5, 11, 24, 0) 70%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.service-card:hover .service-glow {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(5, 11, 24, 0) 70%);
}

.highlighted-service {
    border-color: var(--gold-primary);
    background: linear-gradient(180deg, rgba(20, 30, 60, 0.6) 0%, rgba(13, 22, 46, 0.6) 100%);
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .highlighted-service { transform: scale(1); }
}

.service-glow-strong {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(5, 11, 24, 0) 70%);
    pointer-events: none;
}

.service-hot-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--gold-gradient);
    color: #050b18;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.service-icon-box {
    margin-bottom: 2rem;
    display: inline-flex;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--gold-primary);
    border-radius: 50%;
}

/* Results Section & Leads Estimator */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.result-list-item {
    display: flex;
    gap: 1.25rem;
}

.check-icon {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-list-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.result-list-item p {
    font-size: 0.9rem;
}

.results-visual-container {
    padding-left: 2rem;
}

@media (max-width: 992px) {
    .results-visual-container { padding-left: 0; margin-top: 3rem; }
}

.results-visual-card {
    padding: 2.5rem;
}

.results-visual-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.lead-estimator {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.estimator-slider-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.25rem;
}

.estimator-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.estimator-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.estimator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: var(--transition-smooth);
}

.estimator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.estimator-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.est-metric {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.est-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.est-val {
    font-size: 1.5rem;
    font-weight: 800;
}

.est-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

/* Pricing Section */
.pricing-container {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card-wrapper {
    position: relative;
}

.pricing-card-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(5, 11, 24, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.pricing-card {
    border-color: var(--gold-primary);
    position: relative;
    z-index: 2;
    padding: 3.5rem 3rem;
}

.pricing-card-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}

.pricing-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: #050b18;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.08em;
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.pricing-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.check-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .pricing-card { padding: 2.5rem 1.5rem; }
    .price-val { font-size: 2rem; }
}

/* Guarantee Block */
.guarantee-block {
    max-width: 900px;
    margin: 0 auto;
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(20, 30, 60, 0.5) 0%, rgba(9, 16, 34, 0.5) 100%);
    padding: 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(5, 11, 24, 0) 70%);
    pointer-events: none;
}

.guarantee-badge {
    margin-bottom: 2rem;
}

.guarantee-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
}

.guarantee-text {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-primary);
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
    font-style: italic;
}

.guarantee-signature {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.signature-line {
    width: 80px;
    height: 1px;
    background-color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.signature-name {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .guarantee-block { padding: 2.5rem 1.5rem; }
    .guarantee-text { font-size: 1.1rem; }
    .guarantee-title { font-size: 1.75rem; }
}

/* Why Us Section */
.why-card {
    text-align: left;
    padding: 2.5rem;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact & Calendar Section */
.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-method-card:hover {
    background: rgba(212, 175, 55, 0.03);
    border-color: var(--border-gold);
    transform: translateX(5px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-val {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Booking Widget Card */
.booking-widget-wrapper {
    position: relative;
}

.booking-card {
    padding: 2.5rem;
}

.booking-header {
    margin-bottom: 2rem;
}

.booking-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.booking-header p {
    font-size: 0.85rem;
}

.booking-form {
    min-height: 380px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input, .form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Calendar Date Selector Grid */
.calendar-picker {
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 1rem;
}

.calendar-header {
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--gold-primary);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.day-name {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    padding-bottom: 0.25rem;
}

.day {
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.day.disabled {
    color: rgba(255, 255, 255, 0.15);
    cursor: not-allowed;
}

.day.active-day {
    color: var(--text-primary);
}

.day.active-day:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
}

.day.selected-day {
    background: var(--gold-gradient);
    color: #050b18;
    font-weight: 700;
}

.time-slots-container {
    margin-bottom: 2rem;
}

.time-slots-container label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

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

.time-slot {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.5rem 0.25rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
}

.time-slot:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.time-slot.selected-slot {
    background: var(--gold-gradient);
    color: #050b18;
    border-color: transparent;
}

.stage-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stage-actions .btn {
    flex-grow: 1;
}

.hidden {
    display: none !important;
}

/* Booking Success State */
#stage-success {
    text-align: center;
    padding: 3rem 1.5rem;
}

.success-icon-wrapper {
    margin-bottom: 1.5rem;
}

.success-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.success-text {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.success-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer Styles */
.footer {
    background-color: #020612;
    border-top: 1px solid var(--border-gold);
    padding: 5rem 0 3rem 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    max-width: 400px;
    line-height: 1.6;
}

.footer-links-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
