/* ============================================
   FALCON VISION - Modern AI Security Website
   Dark Theme • Gold Accents • Heavy Animation
   ============================================ */

:root {
    --bg-dark: #05070a;
    --bg-card: #0c1017;
    --bg-elevated: #12181f;
    --gold: #d4af37;
    --gold-light: #f0d78c;
    --gold-dark: #a67c00;
    --cyan: #00d4ff;
    --cyan-dim: #00a8cc;
    --text: #e8edf2;
    --text-muted: #8b9bb4;
    --border: rgba(212, 175, 55, 0.15);
    --glow-gold: 0 0 40px rgba(212, 175, 55, 0.25);
    --glow-cyan: 0 0 40px rgba(0, 212, 255, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'Inter', system-ui, sans-serif;
    --font-display: 'Orbitron', 'Inter', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Network Canvas Background */
#network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--glow-gold);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: logo-float 4s ease-in-out infinite;
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    position: relative;
    transition: all var(--transition);
}

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

.nav-link.cta-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a !important;
    font-weight: 600;
    padding: 10px 20px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.nav-link.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    z-index: 1;
    /* subtle continuous zoom for extra life even inside video */
    animation: hero-zoom 30s ease-in-out infinite alternate;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    animation: hero-zoom 25s ease-in-out infinite alternate;
}

.hero-image.hero-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.4;
}

/* Hide static image when video is playing */
.hero-bg.video-ready .hero-fallback {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-bg.video-ready .hero-video {
    opacity: 0.7;
}

@keyframes hero-zoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5,7,10,0.7) 0%,
        rgba(5,7,10,0.4) 40%,
        rgba(5,7,10,0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--gold-light);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    display: inline;
}

.stat-plus {
    font-size: 1.4rem;
    color: var(--gold-light);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: bounce 2.5s infinite;
    z-index: 3;
}

.mouse {
    width: 22px;
    height: 34px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* Animations on load */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

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

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
    color: var(--text);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* ========== SERVICES ========== */
.services {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #080c12 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-8px);
    box-shadow: var(--glow-gold), 0 20px 50px rgba(0,0,0,0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: 24px;
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(0,212,255,0.1));
    border: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.icon-circle svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.service-card:hover .icon-circle {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 0 25px rgba(212,175,55,0.4);
}

.service-card:hover .icon-circle svg {
    color: #0a0a0a;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.65;
}

.service-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
}

.service-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
    color: var(--gold-light);
}

.services-visual {
    text-align: center;
    margin-top: 40px;
}

.services-img {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

.services-img:hover {
    transform: scale(1.02);
}

/* ========== ABOUT ========== */
.about {
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-highlights {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.highlight:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateX(6px);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight strong {
    display: block;
    color: var(--gold-light);
    margin-bottom: 2px;
}

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

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.about-img {
    width: 100%;
    transition: transform 0.8s ease;
}

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

.floating-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(12,16,23,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212,175,55,0.4);
    padding: 16px 22px;
    border-radius: 12px;
    box-shadow: var(--glow-gold);
    animation: float-card 4s ease-in-out infinite;
}

.fc-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fc-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
}

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

/* ========== SOLUTIONS ========== */
.solutions {
    background: linear-gradient(180deg, #080c12 0%, var(--bg-dark) 100%);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.solution-card:hover::after {
    transform: scaleX(1);
}

.solution-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold);
    opacity: 0.5;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-number {
    opacity: 1;
    color: var(--gold);
    -webkit-text-stroke: 0;
}

.solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

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

/* ========== PROCESS ========== */
.process {
    background: var(--bg-dark);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-marker {
    flex-shrink: 0;
    width: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-marker span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(212,175,55,0.4);
    z-index: 1;
}

.step-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--gold), transparent);
    margin-top: 8px;
    min-height: 60px;
}

.step-content {
    padding-top: 8px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--gold-light);
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, rgba(0,212,255,0.08) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    animation: cta-glow 8s ease-in-out infinite alternate;
}

@keyframes cta-glow {
    from { transform: translateX(0); }
    to { transform: translateX(40%); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

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

/* ========== CONTACT ========== */
.contact {
    background: #080c12;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-item a {
    color: var(--gold);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.contact-note {
    background: rgba(212,175,55,0.08);
    border-left: 3px solid var(--gold);
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

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

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
}

/* ========== FOOTER ========== */
.footer {
    background: #030508;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow: var(--glow-gold);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 16px;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-domain {
    font-family: var(--font-display);
    color: var(--gold) !important;
    letter-spacing: 0.05em;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        order: -1;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5,7,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 8px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats {
        gap: 28px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 70px 0;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        gap: 20px;
    }
}

/* Utility for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ========== IMAGE SERVICE ICONS ========== */
.icon-circle.icon-img-wrap {
    width: 88px;
    height: 88px;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.service-card:hover .icon-circle.icon-img-wrap {
    background: #000;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.7);
    transform: scale(1.06);
}

.service-card:hover .service-icon-img {
    transform: scale(1.08);
    filter: brightness(1.15) saturate(1.1);
}

.service-card:hover .icon-circle.icon-img-wrap svg {
    color: inherit;
}

/* Animated site-wide subtle wallpaper layer under content (optional canvas still used) */
body::before {
    content: none;
}


/* ========== 3D ANIMATED LOGO ========== */
.logo-3d-wrap,
.footer-logo-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.nav-logo,
.nav-logo-video,
.nav-logo-fallback {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: var(--glow-gold);
    display: block;
}

.nav-logo-video {
    position: absolute;
    inset: 0;
    z-index: 2;
    animation: logo-float 4s ease-in-out infinite;
}

.nav-logo-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    animation: logo-float 4s ease-in-out infinite;
}

.logo-link:hover .nav-logo-video,
.logo-link:hover .nav-logo-fallback {
    transform: scale(1.1) rotate(4deg);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.55);
}

.footer-logo-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
}

.footer-logo,
.footer-logo-video,
.footer-logo-fallback {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: var(--glow-gold);
}

.footer-logo-video {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.footer-logo-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Large hero 3D logo */
.hero-logo-3d {
    width: min(180px, 42vw);
    height: min(180px, 42vw);
    margin: 0 auto 28px;
    border-radius: 28%;
    overflow: hidden;
    box-shadow:
        0 0 0 2px rgba(212, 175, 55, 0.35),
        0 0 40px rgba(212, 175, 55, 0.35),
        0 20px 50px rgba(0, 0, 0, 0.5);
    animation: logo-float 5s ease-in-out infinite, logo-glow 3s ease-in-out infinite alternate;
}

.hero-logo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28%;
}

@keyframes logo-glow {
    from { box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3), 0 0 30px rgba(212, 175, 55, 0.25), 0 20px 50px rgba(0,0,0,0.5); }
    to   { box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.35), 0 0 50px rgba(212, 175, 55, 0.45), 0 20px 50px rgba(0,0,0,0.5); }
}

@media (max-width: 600px) {
    .hero-logo-3d {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
}
