/* 
   Noria Advisors - Premium Landing Page Stylesheet
   Luxury Aesthetic: Navy Blue, Gold, and White
   Typography: Cinzel (Serif, Luxury) & Montserrat (Sans-serif, Clean)
*/

:root {
    --bg-deep: #030712;
    --bg-navy-dark: #070D1E;
    --bg-navy-medium: #0B132B;
    --bg-navy-light: #1C2541;
    --border-gold-soft: rgba(212, 175, 55, 0.2);
    --border-gold-strong: rgba(212, 175, 55, 0.6);
    --gold: #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 40%, #D4AF37 100%);
    
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --success: #10B981;
    --success-light: rgba(16, 185, 129, 0.1);
    
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-premium: 0 10px 40px 0 rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.25);
    --shadow-gold-hover: 0 0 30px rgba(212, 175, 55, 0.45);
}

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

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

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

.max-w-3xl {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hidden {
    display: none !important;
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(11, 19, 43, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold-soft);
    box-shadow: var(--shadow-premium);
    border-radius: 12px;
}

/* Buttons */
.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-deep) !important;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-gold);
    text-decoration: none;
    font-size: 0.85rem;
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--gold);
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.85rem 1.9rem;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-medium);
    text-decoration: none;
    font-size: 0.85rem;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-text-link {
    background: none;
    border: none;
    color: var(--gold);
    text-decoration: underline;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.btn-text-link:hover {
    color: var(--gold-light);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    background: transparent;
    border: none;
    padding: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    transition: var(--transition-medium);
}

.company-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-shadow: 0 0 18px rgba(212,175,55,0.35);
}

.logo-wrapper:hover {
    transform: translateY(-2px);
}

.logo-wrapper:hover .agency-logo {
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.6));
}

.agency-logo {
    height: 64px;
    width: 64px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    transition: filter var(--transition-medium);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.nav-cta {
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* Mobile Nav Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-navy-dark);
    z-index: 200;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.mobile-link {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-family: var(--font-serif);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-link:hover {
    color: var(--gold);
    padding-left: 5px;
}

.mobile-cta {
    margin-top: 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 10rem 0 7rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(28, 37, 65, 0.25) 0%, rgba(3, 7, 18, 0) 60%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.4) 0%, var(--bg-deep) 100%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-premium {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold-soft);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.badge-premium i {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

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

.hero-actions .btn-large {
    padding: 1.1rem 2.2rem;
    font-size: 0.9rem;
}

.hero-trust {
    display: flex;
    gap: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--gold);
    width: 18px;
    height: 18px;
}

/* Hero Visual Simulator Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.mockup-frame {
    width: 100%;
    max-width: 440px;
    background: rgba(11, 19, 43, 0.4);
    border: 1px solid var(--border-gold-soft);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.mockup-header {
    background: rgba(3, 7, 18, 0.6);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-header .dot.red { background: #FF5F56; }
.mockup-header .dot.yellow { background: #FFBD2E; }
.mockup-header .dot.green { background: #27C93F; }

.mockup-url {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-sans);
    margin-left: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 1.5rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.mockup-body {
    padding: 1.5rem;
}

.sim-crm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.75rem;
}

.sim-crm-title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--gold-light);
}

.badge-live {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    animation: alert-pulse 1.5s infinite;
}

@keyframes alert-pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.sim-crm-lead-card {
    background: rgba(3, 7, 18, 0.5);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.card-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.card-row:last-child {
    border-bottom: none;
}

.card-row .label {
    color: var(--text-secondary);
}

.card-row .val {
    color: var(--text-primary);
    text-align: right;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.status-badge {
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.status-badge.success {
    background: var(--success-light);
    color: var(--success);
}

.status-badge.success i {
    width: 12px;
    height: 12px;
}

.sim-crm-alert {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 0.85rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.alert-icon {
    color: var(--gold);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.alert-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Sections Global Styles */
.services-section, .roi-section, .exclusivity-section, .booking-section {
    padding: 6rem 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
    margin-bottom: 4rem;
}

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

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 44rem;
}

/* Services Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: rgba(11, 19, 43, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 2.5rem;
    transition: var(--transition-medium);
}

.service-card:hover {
    border-color: var(--border-gold-soft);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-icon-wrapper {
    background: rgba(212, 175, 55, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 1.5rem;
}

.service-icon {
    color: var(--gold);
    width: 24px;
    height: 24px;
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.service-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ROI Section styling */
.roi-section {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-navy-dark) 50%, var(--bg-deep) 100%);
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.roi-stats-highlight {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-highlight-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

/* Calculator Card */
.roi-calculator-card {
    padding: 3rem;
}

.calc-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.calc-input-group {
    margin-bottom: 2rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.slider-val {
    font-weight: 700;
    font-size: 1.2rem;
}

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

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

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--gold);
}

.calc-results {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    margin-top: 2rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.result-row.total {
    font-size: 1.25rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.result-label {
    color: var(--text-secondary);
}

.result-value {
    font-weight: 600;
}

.calc-note {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.calc-note i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 0.1rem;
}

/* Exclusivity Section */
.exclusivity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.exclusivity-card {
    background: rgba(11, 19, 43, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 2.5rem;
    transition: var(--transition-medium);
}

.exclusivity-card:hover {
    border-color: var(--border-gold-soft);
    transform: translateY(-5px);
}

.exclusivity-icon-wrapper {
    background: rgba(212, 175, 55, 0.05);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 1.5rem;
}

.exclusivity-icon {
    color: var(--gold);
    width: 22px;
    height: 22px;
}

.exclusivity-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.exclusivity-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Booking Section */
.booking-container {
    display: grid;
    grid-template-columns: 360px 1fr;
    overflow: hidden;
    margin-top: 2rem;
    min-height: 550px;
}

.booking-info-sidebar {
    background: rgba(3, 7, 18, 0.5);
    border-right: 1px solid var(--border-gold-soft);
    padding: 3rem;
}

.agency-badge-sidebar {
    background: transparent;
    border: none;
    padding: 0;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.sidebar-logo {
    height: 70px;
    width: 70px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.booking-sidebar-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.meeting-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.meta-item i {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.booking-sidebar-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.exclusive-disclaimer {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 0.85rem;
    border-radius: 6px;
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gold-light);
    line-height: 1.4;
}

.exclusive-disclaimer i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gold);
}

/* Calendar Core Area */
.booking-calendar-area {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.step-indicator {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-month-year {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-cal-nav {
    background: none;
    border: 1px solid var(--border-gold-soft);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

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

.calendar-grid-wrapper {
    margin-bottom: 2rem;
}

.calendar-days-headers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

.calendar-day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.calendar-day-cell:hover:not(.disabled) {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.calendar-day-cell.selected {
    background: var(--gold-gradient);
    color: var(--bg-deep) !important;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.calendar-day-cell.disabled {
    color: var(--text-muted);
    opacity: 0.25;
    pointer-events: none;
}

.calendar-day-cell.today {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Time Slots Area */
.time-slots-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-top: 1rem;
    animation: fade-in 0.3s ease-out;
}

.time-slots-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.time-slot-btn {
    background: rgba(3, 7, 18, 0.4);
    border: 1px solid var(--border-gold-soft);
    color: var(--text-primary);
    border-radius: 4px;
    padding: 0.65rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

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

.time-slot-btn.selected {
    background: var(--gold-gradient);
    color: var(--bg-deep);
    border-color: transparent;
    font-weight: 700;
}

.calendar-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

/* Booking Form Step 2 */
.booking-form-area {
    padding: 3rem;
    animation: fade-in 0.3s ease-out;
}

.selected-slot-banner {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-gold-soft);
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.selected-slot-banner i {
    color: var(--gold);
    width: 18px;
    height: 18px;
}

.lead-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input, .form-group select {
    background: rgba(3, 7, 18, 0.5);
    border: 1px solid var(--border-gold-soft);
    border-radius: 4px;
    padding: 0.85rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
}

.checkbox-group label {
    font-weight: 500;
    font-size: 0.75rem;
    cursor: pointer;
}

.btn-full-width {
    width: 100%;
}

/* Success Area */
.booking-success-area {
    grid-column: span 2;
    padding: 4rem;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    animation: fade-in 0.4s ease-out;
}

.success-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon {
    color: var(--success);
    width: 36px;
    height: 36px;
}

.success-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.success-p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.success-simulation-box {
    background: rgba(3, 7, 18, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.sim-box-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.badge-sim {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    color: var(--text-secondary);
}

/* Simulated Email Card */
.sim-email-card {
    background: #0B132B;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.email-header {
    background: rgba(3, 7, 18, 0.5);
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.email-body {
    padding: 1.25rem;
    font-size: 0.8rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.email-body p {
    margin-bottom: 0.85rem;
}

.email-body p:last-child {
    margin-bottom: 0;
}

/* Simulated WhatsApp Card */
.sim-whatsapp-card {
    background: #050B14;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 1rem;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #25D366;
    font-weight: 600;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-bottom: 0.5rem;
}

.wa-icon {
    width: 14px;
    height: 14px;
}

.wa-body {
    display: flex;
    justify-content: flex-start;
}

.wa-bubble {
    background: #0B1E14;
    border-radius: 0 8px 8px 8px;
    padding: 0.85rem;
    max-width: 85%;
    font-size: 0.75rem;
    line-height: 1.4;
    position: relative;
}

.wa-bubble p {
    margin-bottom: 0.5rem;
}

.wa-bubble p:last-child {
    margin-bottom: 0;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.success-actions {
    display: flex;
    justify-content: center;
}

/* Agency Notification Banners */
.agency-notification-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.agency-notification-banner {
    background: #0F172A;
    border-left: 4px solid var(--gold);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0 6px 6px 0;
    padding: 1rem 1.25rem;
    width: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    animation: slide-in-left 0.4s cubic-bezier(0.16, 1, 0.3, 1), fade-out 0.4s ease-in 6.5s forwards;
    pointer-events: auto;
}

.agency-notification-banner.critical {
    border-left-color: #EF4444;
}

.notif-icon-wrapper {
    background: rgba(212, 175, 55, 0.08);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.agency-notification-banner.critical .notif-icon-wrapper {
    background: rgba(239, 68, 68, 0.08);
}

.notif-icon {
    color: var(--gold);
    width: 16px;
    height: 16px;
}

.agency-notification-banner.critical .notif-icon {
    color: #EF4444;
}

.notif-content {
    flex-grow: 1;
}

.notif-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.25rem;
}

.agency-notification-banner.critical .notif-title {
    color: #F87171;
}

.notif-msg {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Smart Floating Chatbot */
.smart-chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chatbot-trigger {
    background: var(--gold-gradient);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-deep);
    transition: var(--transition-medium);
    position: relative;
}

.chatbot-trigger:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.5);
}

.chatbot-trigger i {
    width: 26px;
    height: 26px;
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #EF4444;
    border: 2px solid var(--bg-deep);
    border-radius: 50%;
}

.notification-badge.pulse {
    animation: badge-pulsing 1.8s infinite;
}

@keyframes badge-pulsing {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Chatbot window */
.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 520px;
    background: rgba(7, 13, 30, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-gold-soft);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slide-up-chat 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-header {
    background: rgba(3, 7, 18, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-header-logo {
    width: 36px;
    height: 36px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-deep);
    font-weight: 800;
    font-size: 0.8rem;
    font-family: var(--font-serif);
}

.chatbot-header-info {
    flex-grow: 1;
}

.chatbot-header-info h4 {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-dot.online {
    background: var(--success);
}

.chatbot-close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.chatbot-close-btn:hover {
    color: var(--text-primary);
}

.chatbot-body {
    flex-grow: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(3, 7, 18, 0.2);
}

.chat-message {
    max-width: 85%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.chat-message.agent {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
}

.chat-message .message-bubble {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    line-height: 1.4;
}

.chat-message.agent .message-bubble {
    background: #0B132B;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 0 10px 10px 10px;
    color: var(--text-primary);
}

.chat-message.user .message-bubble {
    background: var(--gold-gradient);
    color: var(--bg-deep);
    border-radius: 10px 10px 0 10px;
    font-weight: 500;
}

.chat-message.whatsapp-redirect .message-bubble {
    border: 1px solid rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.05);
}

.chat-message .message-time {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.chat-message.user .message-time {
    align-self: flex-end;
}

/* Chat options area */
.chatbot-options {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.02);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chat-option-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    border-radius: 20px;
    padding: 0.4rem 0.85rem;
    font-size: 0.7rem;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* Chat input area */
.chatbot-input-area {
    padding: 0.85rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 0.75rem;
    background: rgba(3, 7, 18, 0.6);
}

.chatbot-input-area input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.6rem 0.85rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    outline: none;
    transition: var(--transition-fast);
}

.chatbot-input-area input:focus {
    border-color: var(--gold-dark);
}

.chatbot-send-btn {
    background: var(--gold-gradient);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 4px;
    color: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chatbot-send-btn:hover {
    background: var(--gold-gradient-hover);
    transform: scale(1.03);
}

.chatbot-send-btn i {
    width: 14px;
    height: 14px;
}

.chat-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white !important;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
    transition: var(--transition-fast);
}

.chat-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-1px);
}

.chat-whatsapp-btn i {
    width: 14px;
    height: 14px;
}

/* Agency Footer */
.agency-footer {
    background: var(--bg-navy-dark);
    padding: 5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.footer-logo {
    background: transparent;
    border: none;
    padding: 0;
    height: 70px;
    width: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 24rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-links-col h4 {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-links-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--gold);
    padding-left: 3px;
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 1rem;
}

.footer-contact-info i {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.footer-bottom {
    background: rgba(3, 7, 18, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.5rem 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

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

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

/* Animations */
@keyframes slide-in-left {
    from { transform: translateX(-120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fade-out {
    from { opacity: 1; }
    to { opacity: 0; transform: translateY(-10px); }
}

@keyframes slide-up-chat {
    from { transform: translateY(30px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Media Queries (Responsive Design) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .booking-info-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-gold-soft);
        padding: 2.5rem;
    }
    
    .booking-calendar-area, .booking-form-area {
        padding: 2.5rem;
    }
    
    .exclusivity-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .roi-stats-highlight {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lead-form .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        right: -10px;
    }
}
