/* ============================================================
   MT OLYMPUS BUILDERS - Divine Smart Home Engineering
   Master Stylesheet v2.0
   ============================================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Core Palette */
    --obsidian: #0A0A0C;
    --obsidian-light: #12121A;
    --marble: #F5F3EE;
    --gold: #D4AF37;
    --gold-light: #E8CF8A;
    --gold-dark: #A68B2A;
    --gold-muted: rgba(212, 175, 55, 0.15);
    --bronze: #CD7F32;
    --slate: #1A1A1E;
    --charcoal: #141416;
    --green: #4CAF50;
    --green-glow: rgba(76, 175, 80, 0.15);
    
    /* Domain Colors */
    --ares: #DC3545;
    --ares-glow: rgba(220, 53, 69, 0.2);
    --apollo: #FFD700;
    --apollo-glow: rgba(255, 215, 0, 0.2);
    --helios: #FF8C00;
    --helios-glow: rgba(255, 140, 0, 0.2);
    --hermes: #4A90D9;
    --hermes-glow: rgba(74, 144, 217, 0.2);
    --zeus: #9B7ED9;
    --zeus-glow: rgba(155, 126, 217, 0.2);
    --hades: #E85D5D;
    --hades-glow: rgba(232, 93, 93, 0.2);
    --poseidon: #2EC4B6;
    --poseidon-glow: rgba(46, 196, 182, 0.2);
    --diana: #8FBC8F;
    --diana-glow: rgba(143, 188, 143, 0.2);
    --hera: #DDA0DD;
    --hera-glow: rgba(221, 160, 221, 0.2);
    --aphrodite: #E8A0A0;
    --aphrodite-glow: rgba(232, 160, 160, 0.2);
    
    /* Typography */
    --text-light: #FAFAFA;
    --text-muted: #9A9A9A;
    --text-dim: #6A6A6A;
    
    /* Animation */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--obsidian);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.8;
    font-size: 18px;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { 
    background: linear-gradient(var(--gold), var(--gold-dark)); 
    border-radius: 4px; 
}

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(10,10,12,0.98) 0%, rgba(10,10,12,0.9) 60%, transparent 100%);
    backdrop-filter: blur(12px);
    transition: all 0.4s var(--transition-smooth);
}

nav.scrolled {
    padding: 0.6rem 4rem;
    background: rgba(10,10,12,0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

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

.logo-img {
    height: 55px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    object-fit: cover;
}

nav.scrolled .logo-img { height: 45px; }

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.4rem;
    background: var(--gold);
    color: var(--obsidian);
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ==================== HERO SECTIONS ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 4rem 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(74, 144, 217, 0.06) 0%, transparent 45%),
        linear-gradient(160deg, var(--obsidian) 0%, var(--charcoal) 50%, var(--obsidian) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
}

/* Parallax background */
.hero-parallax {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-text { max-width: 600px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--transition-smooth) 0.2s forwards;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--transition-smooth) 0.4s forwards;
}

.hero-title .gold { color: var(--gold); }

.hero-manifesto {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--transition-smooth) 0.6s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--transition-smooth) 0.8s forwards;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--transition-smooth) 0.6s forwards;
}

.hero-crest {
    max-width: 420px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.2));
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.hero-crest:hover {
    transform: scale(1.02);
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: var(--gold);
    color: var(--obsidian);
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-light);
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ==================== SECTIONS ==================== */
section {
    padding: 6rem 4rem;
    position: relative;
}

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

.section-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* ==================== GODS BANNER ==================== */
.gods-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 4rem 0;
}

.gods-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.gods-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--obsidian) 0%,
        transparent 10%,
        transparent 90%,
        var(--obsidian) 100%
    );
}

/* ==================== DOMAIN CARDS ==================== */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.domain-card {
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

/* Domain accent colors */
.domain-card[data-domain="ares"]::before { background: var(--ares); }
.domain-card[data-domain="apollo"]::before { background: var(--apollo); }
.domain-card[data-domain="helios"]::before { background: var(--helios); }
.domain-card[data-domain="hermes"]::before { background: var(--hermes); }
.domain-card[data-domain="zeus"]::before { background: var(--zeus); }
.domain-card[data-domain="hades"]::before { background: var(--hades); }
.domain-card[data-domain="poseidon"]::before { background: var(--poseidon); }
.domain-card[data-domain="hera"]::before { background: var(--hera); }
.domain-card[data-domain="diana"]::before { background: var(--diana); }


.domain-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.1);
}

.domain-card[data-domain="ares"]:hover { box-shadow: 0 20px 50px var(--ares-glow); }
.domain-card[data-domain="apollo"]:hover { box-shadow: 0 20px 50px var(--apollo-glow); }
.domain-card[data-domain="helios"]:hover { box-shadow: 0 20px 50px var(--helios-glow); }
.domain-card[data-domain="hermes"]:hover { box-shadow: 0 20px 50px var(--hermes-glow); }
.domain-card[data-domain="zeus"]:hover { box-shadow: 0 20px 50px var(--zeus-glow); }
.domain-card[data-domain="hades"]:hover { box-shadow: 0 20px 50px var(--hades-glow); }
.domain-card[data-domain="poseidon"]:hover { box-shadow: 0 20px 50px var(--poseidon-glow); }
.domain-card[data-domain="hera"]:hover { box-shadow: 0 20px 50px var(--hera-glow); }
.domain-card[data-domain="diana"]:hover { box-shadow: 0 20px 50px var(--diana-glow); }

.domain-emblem {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    transition: transform 0.4s var(--transition-bounce);
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.2));
}

.domain-card:hover .domain-emblem {
    transform: scale(1.1) rotate(3deg);
}

.domain-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.domain-name {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
}

.domain-card[data-domain="ares"] .domain-name { color: var(--ares); }
.domain-card[data-domain="apollo"] .domain-name { color: var(--apollo); }
.domain-card[data-domain="helios"] .domain-name { color: var(--helios); }
.domain-card[data-domain="hermes"] .domain-name { color: var(--hermes); }
.domain-card[data-domain="zeus"] .domain-name { color: var(--zeus); }
.domain-card[data-domain="hades"] .domain-name { color: var(--hades); }
.domain-card[data-domain="poseidon"] .domain-name { color: var(--poseidon); }
.domain-card[data-domain="hera"] .domain-name { color: var(--hera); }
.domain-card[data-domain="diana"] .domain-name { color: var(--diana); }

.domain-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.domain-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.domain-explore {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.domain-card[data-domain="ares"] .domain-explore:hover { background: var(--ares-glow); border-color: var(--ares); color: var(--ares); }
.domain-card[data-domain="apollo"] .domain-explore:hover { background: var(--apollo-glow); border-color: var(--apollo); color: var(--apollo); }
.domain-card[data-domain="helios"] .domain-explore:hover { background: var(--helios-glow); border-color: var(--helios); color: var(--helios); }
.domain-card[data-domain="hermes"] .domain-explore:hover { background: var(--hermes-glow); border-color: var(--hermes); color: var(--hermes); }
.domain-card[data-domain="zeus"] .domain-explore:hover { background: var(--zeus-glow); border-color: var(--zeus); color: var(--zeus); }
.domain-card[data-domain="hades"] .domain-explore:hover { background: var(--hades-glow); border-color: var(--hades); color: var(--hades); }
.domain-card[data-domain="poseidon"] .domain-explore:hover { background: var(--poseidon-glow); border-color: var(--poseidon); color: var(--poseidon); }
.domain-card[data-domain="hera"] .domain-explore:hover { background: var(--hera-glow); border-color: var(--hera); color: var(--hera); }
.domain-card[data-domain="diana"] .domain-explore:hover { background: var(--diana-glow); border-color: var(--diana); color: var(--diana); }

/* ==================== PROCESS STEPS ==================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--slate);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.step-number {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ==================== ABOUT PAGE SPECIFIC ==================== */
.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 12, 0.7) 0%,
        rgba(10, 10, 12, 0.85) 50%,
        var(--obsidian) 100%
    );
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-story.reverse {
    direction: rtl;
}

.about-story.reverse > * {
    direction: ltr;
}

.about-story-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.about-story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-story-image:hover img {
    transform: scale(1.05);
}

/* ==================== CONTACT PAGE SPECIFIC ==================== */
.contact-section {
    background: linear-gradient(180deg, var(--obsidian) 0%, var(--charcoal) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--slate);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 3rem;
}

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

.form-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

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

.form-checkbox span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--charcoal);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2rem;
}

.contact-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.contact-detail-icon {
    font-size: 1.25rem;
}

.contact-detail-text {
    color: var(--text-light);
}

.contact-detail a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--gold-light);
}

/* Product showcase gallery */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-item {
    background: var(--slate);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.product-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================== CHAT MODAL ==================== */
.chat-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chat-modal.active {
    opacity: 1;
    visibility: visible;
}

.chat-container {
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--charcoal);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    background-image: url('images/chatbackground.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.chat-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 22, 0.92);
}

.chat-container > * {
    position: relative;
    z-index: 1;
}

.chat-modal.active .chat-container {
    transform: translateY(0);
}

.chat-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.chat-header-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.chat-header-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.chat-header-text p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    line-height: 1;
}

.chat-close:hover {
    color: var(--gold);
}

.chat-mode-toggle {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    gap: 0.5rem;
}

.mode-btn {
    padding: 0.5rem 1rem;
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mode-btn.active {
    background: var(--gold-muted);
    border-color: var(--gold);
    color: var(--gold);
}

.chat-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.chat-sidebar {
    width: 220px;
    background: rgba(10, 10, 12, 0.6);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1rem;
    overflow-y: auto;
}

.sidebar-section {
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.chalkboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: var(--green);
}

.chalkboard-item .chalkboard-note {
    color: var(--gold);
}

.chalkboard-item:has(.chalkboard-note) {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.chalkboard-note-input input {
    font-family: 'Cormorant Garamond', serif;
}

.chalkboard-note-input input::placeholder {
    color: var(--text-dim);
    font-style: italic;
}

.chalkboard-note-input input:focus {
    outline: none;
    border-color: var(--gold);
}

.chalkboard-note-input button:hover {
    background: var(--gold);
    color: var(--obsidian);
}

.chalkboard-remove {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.chalkboard-remove:hover {
    color: var(--ares);
}

.chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#chatMessages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 1.25rem;
    max-width: 85%;
}

.chat-message.user {
    margin-left: auto;
}

.chat-bubble {
    padding: 1rem 1.25rem;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.chat-message.user .chat-bubble {
    background: var(--gold-muted);
    color: var(--text-light);
    border-bottom-right-radius: 4px;
}

.chat-message.assistant .chat-bubble {
    background: var(--slate);
    border-bottom-left-radius: 4px;
}

.suggested-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.suggested-question {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggested-question:hover {
    background: var(--gold-muted);
    border-color: var(--gold);
}

.chat-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: var(--green);
    padding: 0.4rem 0.8rem;
    margin: 0.25rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-product-btn:hover {
    background: var(--green);
    color: var(--text-light);
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 1rem;
}

.chat-typing span {
    width: 8px;
    height: 8px;
    background: var(--text-dim);
    border-radius: 50%;
    animation: typing 1.2s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-6px); opacity: 1; }
}

/* ==================== FLOATING CHAT BUTTON ==================== */
.floating-chat-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.floating-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.floating-chat-btn img {
    width: 32px;
    height: 32px;
    filter: brightness(0);
}

/* Tooltip on hover */
.floating-chat-btn::before {
    content: 'Consult the Oracle';
    position: absolute;
    right: 70px;
    background: var(--charcoal);
    color: var(--gold);
    padding: 0.5rem 1rem;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
    border: 1px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-chat-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* ==================== FOOTER ==================== */
footer {
    padding: 4rem 4rem 2rem;
    background: var(--charcoal);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.footer-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-column h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-legal {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-dim);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.5); }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE DESIGN ==================== */
/* ==================== CONTACT PAGE SPECIFIC STYLES ==================== */
.contact-hero {
    min-height: 50vh;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.contact-info {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.contact-card {
    background: linear-gradient(145deg, var(--slate), var(--charcoal));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.contact-card-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-card-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-details {
    padding: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.contact-value {
    font-size: 1rem;
    color: var(--text-light);
}

.contact-promises {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.promise-icon {
    color: var(--gold);
    font-weight: bold;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: linear-gradient(145deg, var(--slate), var(--charcoal));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
}

.contact-form .form-title {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--obsidian);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-dim);
}

/* Domain Checkboxes with Emblems */
.domain-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.domain-checkbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
    background: var(--obsidian);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.domain-checkbox input {
    display: none;
}

.domain-checkbox:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.domain-checkbox input:checked + .checkbox-icon {
    transform: scale(1.1);
}

.domain-checkbox.ares input:checked ~ .checkbox-label,
.domain-checkbox.ares:hover { border-color: var(--ares); }
.domain-checkbox.apollo input:checked ~ .checkbox-label,
.domain-checkbox.apollo:hover { border-color: var(--apollo); }
.domain-checkbox.helios input:checked ~ .checkbox-label,
.domain-checkbox.helios:hover { border-color: var(--helios); }
.domain-checkbox.hermes input:checked ~ .checkbox-label,
.domain-checkbox.hermes:hover { border-color: var(--hermes); }
.domain-checkbox.zeus input:checked ~ .checkbox-label,
.domain-checkbox.zeus:hover { border-color: var(--zeus); }
.domain-checkbox.hades input:checked ~ .checkbox-label,
.domain-checkbox.hades:hover { border-color: var(--hades); }
.domain-checkbox.poseidon input:checked ~ .checkbox-label,
.domain-checkbox.poseidon:hover { border-color: var(--poseidon); }
.domain-checkbox.hera input:checked ~ .checkbox-label,
.domain-checkbox.hera:hover { border-color: var(--hera); }
.domain-checkbox.diana input:checked ~ .checkbox-label,
.domain-checkbox.diana:hover { border-color: var(--diana); }

.domain-checkbox input:checked ~ .checkbox-label {
    color: var(--gold);
}

.checkbox-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.checkbox-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkbox-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.checkbox-label small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.7;
}

.checkbox-single {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-single input {
    width: 18px !important;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--gold);
}

.checkbox-single span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn .btn-icon {
    font-size: 1.2rem;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
}

/* Chalkboard in Form */
.chalkboard-section {
    background: rgba(0,0,0,0.3);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 1rem;
}

.chalkboard-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.chalkboard-note {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-style: italic;
    margin-top: 0.75rem;
}

/* Product Showcase */
.product-showcase {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--obsidian) 100%);
    padding: 6rem 2rem;
}

.showcase-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.showcase-image {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
}

.product-hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 10;
}

.hotspot-pulse {
    position: absolute;
    inset: -4px;
    background: var(--gold);
    border-radius: 50%;
    animation: hotspotPulse 2s ease-in-out infinite;
}

@keyframes hotspotPulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.hotspot-label {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--obsidian);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    white-space: nowrap;
    font-size: 0.8rem;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-hotspot:hover .hotspot-label {
    opacity: 1;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: var(--slate);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.feature-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--obsidian);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--slate);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.faq-question {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--slate), var(--charcoal));
    padding: 6rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Success Modal */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: linear-gradient(145deg, var(--slate), var(--charcoal));
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.success-modal.active .success-content {
    transform: scale(1);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.success-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--gold);
    color: var(--obsidian);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 4000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ==================== RESPONSIVE: CONTACT PAGE ==================== */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        position: static;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .domain-checkboxes {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-promises {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .domain-checkboxes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ==================== ORIGINAL RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
    nav { padding: 1rem 2rem; }
    nav.scrolled { padding: 0.6rem 2rem; }
    section { padding: 4rem 2rem; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text { max-width: 100%; }
    .hero-manifesto { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 2rem; }
    .hero-crest { max-width: 300px; }
    
    .about-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-story.reverse { direction: ltr; }
    
    .contact-grid { grid-template-columns: 1fr; }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--obsidian);
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }
    
    .nav-links.active a {
        padding: 0.75rem 0;
    }
    
    .hero { padding: 6rem 1.5rem 4rem; }
    .hero-title { font-size: 2rem; }
    
    .domains-grid { grid-template-columns: 1fr; }
    
    .chat-sidebar { display: none; }
    
    .form-checkbox-group { grid-template-columns: 1fr; }
    
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
    nav { padding: 0.75rem 1rem; }
    section { padding: 3rem 1rem; }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-ctas { flex-direction: column; }
    
    .contact-form { padding: 1.5rem; }
}
.env-showcase{
  background: var(--obsidian);
  border-top: 1px solid rgba(212, 175, 55, 0.10);
  border-bottom: 1px solid rgba(212, 175, 55, 0.10);
  padding: 4rem 0;
}

.env-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.env-head{ margin-bottom: 1.5rem; }
.env-title{ color: var(--text); font-size: 2rem; margin: 0; }
.env-subtitle{ color: var(--text-muted); margin-top: .5rem; max-width: 60ch; }

.env-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px){
  .env-grid{ grid-template-columns: 1fr 1fr; }
}

.env-card{
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

.env-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Services system */
.svc-group { margin: 2rem 0; }
.svc-group-title { color: var(--text); margin: 0 0 1rem 0; }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px){
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
.svc-stack { grid-template-columns: 1fr; }

.svc-card {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255,255,255,0.02);
}

.svc-top {
  display: flex;
  gap: .75rem;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}

.svc-god {
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
}

.svc-domain {
  color: var(--text-muted);
  font-size: .95rem;
}

.svc-title { color: var(--text); margin: .25rem 0 .5rem 0; }

.svc-list { margin: 0; padding-left: 1.2rem; color: var(--text-muted); }
.svc-list li { margin: .35rem 0; }

/* ============================================================
   SERVICE CATALOG - Dynamic Service Rendering
   ============================================================ */

/* Service Item (within service lists) */
.service-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-item .service-title {
    color: var(--text-light);
    font-weight: 500;
}

.service-item .service-description {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-style: italic;
}

/* Service Status Badges */
.service-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.service-status-badge.status-current {
    background: var(--green-glow);
    color: var(--green);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.service-status-badge.status-rnd {
    background: rgba(155, 126, 217, 0.1);
    color: var(--zeus);
    border: 1px solid rgba(155, 126, 217, 0.3);
}

/* R&D Service Styling */
.service-rnd,
.service-item-rnd {
    opacity: 0.7;
    position: relative;
}

.service-item-rnd .service-title {
    color: var(--text-muted);
}

.service-item-rnd .service-title::before {
    content: '🔬 ';
    font-size: 0.9em;
}

/* R&D Section */
.service-rnd-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(155, 126, 217, 0.3);
}

.rnd-section-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--zeus);
    margin-bottom: 0.5rem;
}

.rnd-disclaimer {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 1rem;
}

.service-list-rnd {
    opacity: 0.75;
}

.service-list-rnd li::before {
    content: '◇' !important;
    color: var(--zeus);
}

/* R&D Header in bullet lists */
.rnd-header {
    margin-top: 1.5rem !important;
    padding-top: 1rem;
    border-top: 1px dashed rgba(155, 126, 217, 0.3);
    color: var(--zeus) !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rnd-header::before {
    content: '' !important;
}

/* Oracle Panel for Services */
.oracle-service-panel {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1rem 0;
}

.oracle-service-panel.rnd {
    background: linear-gradient(135deg, rgba(155, 126, 217, 0.05), transparent);
    border-color: rgba(155, 126, 217, 0.15);
}

.oracle-service-panel h5 {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.oracle-service-panel.rnd h5 {
    color: var(--zeus);
}

.oracle-service-panel p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Follow-up Questions in Oracle */
.oracle-followup-questions {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.oracle-followup-questions h6 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.oracle-followup-questions ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.oracle-followup-questions li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.oracle-followup-questions li:last-child {
    border-bottom: none;
}

.oracle-followup-questions li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* Domain-specific service glow effects */
.service-list[data-domain="ares"] .service-item:hover {
    background: var(--ares-glow);
}

.service-list[data-domain="apollo"] .service-item:hover {
    background: var(--apollo-glow);
}

.service-list[data-domain="helios"] .service-item:hover {
    background: var(--helios-glow);
}

.service-list[data-domain="hermes"] .service-item:hover {
    background: var(--hermes-glow);
}

.service-list[data-domain="zeus"] .service-item:hover {
    background: var(--zeus-glow);
}

.service-list[data-domain="hades"] .service-item:hover {
    background: var(--hades-glow);
}

.service-list[data-domain="poseidon"] .service-item:hover {
    background: var(--poseidon-glow);
}

.service-list[data-domain="diana"] .service-item:hover {
    background: var(--diana-glow);
}

.service-list[data-domain="hera"] .service-item:hover {
    background: var(--hera-glow);
}

.service-list[data-domain="aphrodite"] .service-item:hover {
    background: var(--aphrodite-glow);
}

/* Service Card (for grid layouts) */
.service-card {
    background: var(--slate);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s var(--transition-smooth);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.service-card.rnd {
    border-style: dashed;
    opacity: 0.8;
}

.service-card.rnd:hover {
    border-color: rgba(155, 126, 217, 0.4);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin: 0;
}

.service-card.rnd .service-card-title {
    color: var(--zeus);
}

.service-card-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-card-bullets li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.service-card-bullets li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    font-size: 0.7rem;
}

.service-card.rnd .service-card-bullets li::before {
    content: '◇';
    color: var(--zeus);
}

/* ==================== HOME ENTERTAINMENT IMAGES ==================== */

.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.entertainment-image {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: var(--obsidian);
}

.entertainment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive fallback */
@media (max-width: 900px) {
  .entertainment-grid {
    grid-template-columns: 1fr;
  }
}

.entertainment-image:hover img {
  transform: scale(1.02);
  transition: transform 0.4s ease;
}



