/* ==========================================================================
   IMIT MARKETING - PREMIUM BRAND & DESIGN SYSTEM
   ========================================================================== */

/* Modern CSS Reset & Variable Setup */
:root {
    --bg-primary: #fafafa;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.6);
    --card-border: rgba(139, 92, 246, 0.08);
    --card-border-hover: rgba(0, 229, 255, 0.2);
    
    --text-primary: #0a0a14;
    --text-secondary: #4a4a6a;
    --text-tertiary: #7a7a8a;
    
    /* Brand Accent Colors */
    --color-electric-blue: #00e5ff;
    --color-deep-blue: #000b24;
    --color-purple: #8b5cf6;
    --color-magenta: #ec4899;
    --color-orange: #f97316;
    
    /* Harmonious Gradients */
    --gradient-hero: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-purple) 50%, var(--color-magenta) 100%);
    --gradient-orange-magenta: linear-gradient(135deg, var(--color-orange) 0%, var(--color-magenta) 100%);
    --gradient-electric-purple: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-purple) 100%);
    --gradient-magenta-purple: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    
    /* Layout & Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --max-width: 1300px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.4);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor to enable custom premium cursor */
}

@media (max-width: 1024px) {
    * {
        cursor: auto; /* Revert on mobile/tablet for accessibility */
    }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: #ffffff;
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Typography Selection */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0a0a14;
}

p {
    font-size: 1.05rem;
    color: #4a4a6a;
    font-weight: 400;
}

/* Selection Highlight */
::selection {
    background: rgba(0, 229, 255, 0.3);
    color: #ffffff;
}

/* ==========================================================================
   LAYOUTS & CONTAINER UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

section {
    padding: 7.5rem 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

/* Glassmorphism Background utilities */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

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

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

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

/* ==========================================================================
   CUSTOM DUAL-RING CURSOR
   ========================================================================== */
.custom-cursor {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0, 229, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, background-color 0.3s;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-electric-blue);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 100000;
    transition: transform 0.1s;
}

/* Cursor States */
.custom-cursor.hovered {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.15);
    border-color: var(--color-electric-blue);
}

.custom-cursor.active {
    transform: translate(-50%, -50%) scale(0.85);
    background: rgba(236, 72, 153, 0.3);
    border-color: var(--color-magenta);
}

@media (max-width: 1024px) {
    .custom-cursor, .custom-cursor-dot {
        display: none !important;
    }
}

/* ==========================================================================
   BACKGROUNDS & MOTION CANVAS HERO
   ========================================================================== */
.hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Hero-specific ambient glow orbs — very soft on white */
.bg-blur-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

/* These are hidden globally, hero has its own orbs */
.glow-purple, .glow-magenta, .glow-blue {
    display: none;
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 85px;
    display: flex;
    align-items: center;
    z-index: 999;
    transition: top 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                width 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                border-radius 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    border-bottom: 1px solid transparent;
    opacity: 0;
    transform: translateY(-8px);
    animation: nav-fade-in 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

.header-nav.scrolled {
    top: 15px;
    width: 92%;
    max-width: 1200px;
    height: 68px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(15, 15, 30, 0.05);
    box-shadow: 0 12px 34px rgba(15, 15, 30, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* Nav links styling */
.nav-link {
    text-decoration: none;
    color: rgba(15, 15, 30, 0.6);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
    padding: 8px 0;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: #000000;
    transform: translateY(-2px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: auto;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-width: 120px;
    height: auto;
    width: 100%;
    display: block;
}

/* Header Brand Logo */
.header-logo-img {
    height: 52px; /* standard height 50-60px on desktop */
    width: auto;
    max-height: 52px;
    display: block;
    object-fit: contain;
    object-position: left center;
    transition: height 0.3s ease, transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    filter: drop-shadow(0 2px 4px rgba(15, 15, 30, 0.02));
    opacity: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.header-logo-img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 8px rgba(15, 15, 30, 0.04));
}

.header-nav.scrolled .header-logo-img {
    height: 44px; /* shrinks slightly when header is scrolled */
    max-height: 44px;
}

/* Footer Brand Logo */
.footer-logo-wrapper {
    display: inline-block;
    margin-bottom: 1.6rem;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), filter 0.3s ease;
}

.footer-logo-wrapper:hover {
    transform: scale(1.03);
}

.footer-logo-img {
    height: 72px; /* slightly larger than header logo */
    width: auto;
    max-height: 72px;
    display: block;
    object-fit: contain;
    object-position: left center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    filter: drop-shadow(0 2px 4px rgba(15, 15, 30, 0.02));
    opacity: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), filter 0.3s ease;
}

.footer-logo-wrapper:hover .footer-logo-img {
    filter: drop-shadow(0 4px 8px rgba(15, 15, 30, 0.04));
}

@media (max-width: 768px) {
    .header-logo-img {
        height: 42px; /* 40-45px height on mobile */
        max-height: 42px;
    }
    .header-nav.scrolled .header-logo-img {
        height: 38px;
        max-height: 38px;
    }
    .footer-logo-img {
        height: 60px; /* slightly smaller on mobile */
        max-height: 60px;
    }
    .header-logo-img:hover,
    .footer-logo-wrapper:hover .footer-logo-img {
        transform: scale(1.02); /* Reduce scale on mobile for precision */
    }
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.85rem; /* slightly larger */
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f0f1e;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    padding-left: 8px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Desktop staggered loading animation */
@media (min-width: 901px) {
    .nav-links li {
        opacity: 0;
        animation: link-fade-in 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .nav-links li:nth-child(1) { animation-delay: 150ms; }
    .nav-links li:nth-child(2) { animation-delay: 270ms; }
    .nav-links li:nth-child(3) { animation-delay: 390ms; }
    .nav-links li:nth-child(4) { animation-delay: 510ms; }
    .nav-links li:nth-child(5) { animation-delay: 630ms; }
}

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

/* Nav CTA section (Right Side) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-right: 8px;
}

.btn-grow {
    background: #0f0f1e;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.65rem 1.4rem;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-grow i {
    font-size: 0.8rem;
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-grow:hover {
    transform: scale(1.03);
    background: #000000;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.18); /* subtle glow using brand purple */
}

.btn-grow:hover i {
    transform: translateX(3px);
}

.badge-ai {
    background: #f3f4f6;
    color: #4b5563;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    animation: float-badge 3s ease-in-out infinite alternate;
}

@keyframes float-badge {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-4px);
    }
}

.dot-green {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.dot-green::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

/* Unified Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 999px; /* Pill shape */
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    gap: 8px;
    z-index: 2;
}

.btn-primary {
    background: #0f0f1e;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(15, 15, 30, 0.08);
}

.btn-primary:hover {
    background: #000000;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.15); /* Premium cyan shadow glow */
    border-color: var(--color-electric-blue);
}

.btn-secondary {
    background: #ffffff;
    color: #008899; /* Readable premium cyan-blue accent */
    border: 1.5px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 4px 15px rgba(15, 15, 30, 0.02);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.04);
    border-color: var(--color-electric-blue);
    color: #00a3b5;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.08);
}

.nav-cta {
    padding: 0.65rem 1.4rem;
    font-size: 0.85rem;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 1000;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #0f0f1e;
    border-radius: 2px;
    transition: var(--transition-fast);
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }
    .nav-right {
        display: none;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 4rem 3rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .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(6px, -7px);
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-links .nav-cta {
        display: inline-flex;
        margin-top: 1rem;
    }
}

/* ==========================================================================
   SECTION 1 - HERO SECTION  (White / Light Background Redesign)
   ========================================================================== */

/* ---- Core hero shell ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* ---- Canvas layer ---- */
.hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* ---- Hero content (centered) ---- */
.hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 85px;
}

.hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 85px);
    padding: 4rem 0 6rem;
}

/* ---- Hero tagline pill ---- */
/* ---- Floating Decorative Badges ---- */
.float-badge {
    position: absolute;
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 999px;
    padding: 0.75rem 1.6rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(15, 15, 30, 0.04);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    pointer-events: none;
    user-select: none;
}

/* Badge coordinates */
.b-clicks {
    top: 24%;
    left: 10%;
    animation: fade-in-badge 1s ease-out 1.2s both, float-clicks 9s ease-in-out infinite alternate;
}

.b-rev {
    top: 38%;
    right: 10%;
    animation: fade-in-badge 1s ease-out 1.6s both, float-rev 8s ease-in-out infinite alternate;
}

/* Float keyframes */
@keyframes float-clicks {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(0, -12px, 0) rotate(1.2deg);
    }
}

@keyframes float-rev {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(0, 12px, 0) rotate(-1.2deg);
    }
}

@keyframes fade-in-badge {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .float-badge {
        display: none !important;
    }
}

/* Pulsing live dot */
.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--color-purple);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}
.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--color-purple);
    opacity: 0.35;
    animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 0.35; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* ---- Hero heading ---- */
.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #0a0a14;
    max-width: 900px;
    animation: hero-title-appear 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@keyframes hero-title-appear {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-title .gradient-text-clip {
    background: linear-gradient(135deg, #1a6dff 0%, #8b5cf6 45%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-title .concept-outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--text-primary);
    margin-top: 0.1em;
}

/* ---- Hero description ---- */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.75;
    margin-bottom: 3.2rem;
    max-width: 600px;
    color: #4a4a6a;
    font-weight: 400;
    animation: hero-desc-appear 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes hero-desc-appear {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Hero CTA buttons ---- */
.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(15px);
    animation: hero-cta-appear 800ms cubic-bezier(0.22, 1, 0.36, 1) 3300ms forwards;
}

@keyframes hero-cta-appear {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Scroll indicator ---- */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
    cursor: pointer;
    text-decoration: none;
}

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

.scroll-indicator-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(10, 10, 20, 0.45);
    font-family: var(--font-body);
}

.scroll-indicator-track {
    width: 1.5px;
    height: 50px;
    background: rgba(10, 10, 20, 0.12);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-indicator-bar {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.7), transparent);
    border-radius: 2px;
    animation: scroll-bar-move 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes scroll-bar-move {
    0%   { top: -60%; }
    100% { top: 120%; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.8rem, 5vw, 4rem);
    }
    .hero-glass-shape-1, .hero-glass-shape-4, .hero-glass-shape-5 {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1.05rem;
    }
    .hero-orb-1 { width: 400px; height: 400px; }
    .hero-orb-2 { width: 350px; height: 350px; }
    .hero-orb-3, .hero-orb-4 { display: none; }
    .hero-glass-shape-2, .hero-glass-shape-3 { display: none; }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
    }
    .hero-title {
        font-size: 2.6rem;
    }
}



/* ==========================================================================
   SECTION 2 - TRUST & CREDIBILITY
   ========================================================================== */
.trust {
    border-top: 1px solid rgba(15, 15, 30, 0.06);
    border-bottom: 1px solid rgba(15, 15, 30, 0.06);
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.stats-card {
    padding: 3rem 2.5rem;
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.25rem;
    height: 50px;
    width: 1px;
    background: rgba(15, 15, 30, 0.08);
    transform: translateY(-50%);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item::after {
        display: none !important;
    }
}

/* ==========================================================================
   SECTION 3 - ABOUT IMIT MARKETING
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 5.5rem;
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-electric-blue);
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.2;
}

.about-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.about-content p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 2.2rem 1.8rem;
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.pillar:hover::before {
    opacity: 1;
}

.pillar:hover {
    transform: translateY(-5px);
    border-color: var(--card-border-hover);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.05);
}

.pillar h4 {
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.pillar h4 i {
    color: var(--color-electric-blue);
}

.pillar p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.about-visual {
    position: relative;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-badge {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 30px;
    transform: rotate(12deg);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.about-badge-inner {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 26px;
    transform: rotate(-5deg);
    background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.12), transparent);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
    text-align: center;
    z-index: 2;
    transition: var(--transition-smooth);
}

.about-visual:hover .about-badge-inner {
    transform: rotate(0deg) scale(1.05);
    border-color: rgba(0, 229, 255, 0.3);
}

.badge-logo {
    font-size: 3rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 1rem;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about-visual {
        height: 380px;
    }
}

/* ==========================================================================
   SECTION 4 - SERVICES SHOWCASE
   ========================================================================== */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

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

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

.service-card {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(0, 229, 255, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-border-hover);
    box-shadow: 0 20px 45px rgba(0, 229, 255, 0.06);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #0f0f1e; /* Deep premium navy/black for high contrast */
    border: 1px solid rgba(0, 229, 255, 0.15); /* Soft cyan outline */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    color: var(--color-electric-blue); /* Accent cyan icon */
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient-hero);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.service-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.service-card:hover h3 {
    color: var(--color-electric-blue);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.2rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-electric-blue);
    text-decoration: none;
    transition: var(--transition-fast);
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.service-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--color-purple);
    gap: 12px;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   SECTION 5 - WHY CHOOSE IMIT
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-box {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--card-border-hover);
    box-shadow: 0 20px 45px rgba(0, 229, 255, 0.06);
}

.feature-box-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #0f0f1e;
    border: 1px solid rgba(0, 229, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-electric-blue);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.feature-box:hover .feature-box-icon {
    background: var(--gradient-hero);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 8px 15px rgba(139, 92, 246, 0.2);
}

.feature-box-icon.blue-purple {
    /* Kept styled like standard icon wrapper */
}

.feature-box h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.feature-box p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 600px) {
    .why-features {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SECTION 6 - OUR PROCESS
   ========================================================================== */
.process {
    background: var(--bg-secondary);
}

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

.process-timeline::before {
    content: '';
    position: absolute;
    top: 27px; /* Starts exactly at center of first node */
    bottom: 27px; /* Ends exactly at center of last node */
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(to bottom, var(--color-electric-blue) 0%, var(--color-purple) 50%, var(--color-magenta) 100%);
    opacity: 0.35; /* Increased opacity for clear visibility */
    z-index: 1;
}

.process-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-content {
    width: 45%;
    padding: 2.5rem; /* Spacious padding */
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.process-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(0, 229, 255, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.process-node {
    width: 54px; /* Perfectly sized circle */
    height: 54px;
    border-radius: 50%;
    background: var(--gradient-hero);
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
    transition: var(--transition-smooth);
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:hover .process-node {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.process-step:hover .process-content::before {
    opacity: 1;
}

.process-step:hover .process-content {
    border-color: var(--card-border-hover);
    box-shadow: 0 20px 45px rgba(0, 229, 255, 0.06);
    transform: translateY(-8px);
}

.process-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-electric-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.process-content h3 {
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
}

.process-content p {
    font-size: 0.92rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 25px;
    }
    
    .process-step {
        flex-direction: row !important;
        margin-bottom: 4rem;
    }
    
    .process-content {
        width: calc(100% - 65px);
        padding: 1.8rem;
        margin-left: auto;
    }
    
    .process-node {
        left: 25px;
        transform: translateX(-50%);
    }
    
    .process-step:hover .process-node {
        transform: translateX(-50%) scale(1.1);
    }
}

/* ==========================================================================
   SECTION 7 - FEATURED WORK
   ========================================================================== */
.portfolio-filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 0.65rem 1.6rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: #ffffff;
    color: var(--bg-primary);
    border-color: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    border-color: var(--card-border-hover);
    box-shadow: 0 20px 45px rgba(0, 229, 255, 0.06);
}

.portfolio-image-wrapper {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0f172a;
}

.portfolio-mockup {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Geometric placeholder images using SVGs */
.portfolio-svg-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(3, 7, 18, 0.9) 100%);
    opacity: 0;
    transition: var(--transition-fast);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
}

.portfolio-item:hover .portfolio-image-wrapper {
    border-color: rgba(255, 255, 255, 0.1);
}

.portfolio-item:hover .portfolio-mockup, 
.portfolio-item:hover .portfolio-svg-placeholder {
    transform: scale(1.06);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.portfolio-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-electric-blue);
}

.portfolio-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0.5rem;
    transition: var(--transition-fast);
}

.portfolio-item:hover h3 {
    color: var(--color-electric-blue);
}

.portfolio-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-btn {
    background: #ffffff;
    color: var(--bg-primary);
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .portfolio-image-wrapper {
        height: 300px;
    }
}

/* ==========================================================================
   SECTION 8 - TESTIMONIALS SLIDER
   ========================================================================== */
/* Section 8 - Testimonials removed */

/* ==========================================================================
   SECTION 9 - CALL TO ACTION
   ========================================================================== */
.cta-section {
    padding: 8.5rem 0;
}

.cta-banner {
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 32px;
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.18) 0%, rgba(139, 92, 246, 0.12) 50%, transparent 80%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    animation: pulse-glow 6s infinite alternate;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
    .cta-banner {
        padding: 4.5rem 1.8rem;
    }
    .cta-content p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   SECTION 10 - CONTACT & LEADS
   ========================================================================== */
.contact {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-electric-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.info-details p, .info-details a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.info-details a:hover {
    color: var(--color-electric-blue);
}

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

.social-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-btn:hover {
    background: var(--gradient-hero);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.35);
}

/* Stunning SVG Geometric Map Visualization */
.contact-map-svg {
    width: 100%;
    height: 240px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
}

.map-glow-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-electric-blue);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-electric-blue);
    animation: cursor-pulse 1.8s infinite;
}

/* Contact Lead Form */
.contact-form-panel {
    padding: 3.5rem;
    position: relative;
    z-index: 10;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(15, 15, 30, 0.15);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.98rem;
    outline: none;
    transition: var(--transition-fast);
}

.native-select-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.custom-select-wrapper {
    position: relative;
    z-index: 100000;
}

.custom-select {
    width: 100%;
    min-height: 56px;
    padding: 1rem 1.4rem 1rem 1.25rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #f8fafc;
    font-family: var(--font-body);
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-fast);
}

.custom-select:hover,
.custom-select:focus-visible,
.custom-select.custom-select-open {
    border-color: rgba(0, 229, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.14);
}

.custom-select__value {
    color: #f8fafc;
}

.custom-select__icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(248, 250, 252, 0.08);
    display: grid;
    place-items: center;
    position: relative;
}

.custom-select__icon::after {
    content: '';
    display: block;
    width: 0.6rem;
    height: 0.35rem;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    width: 100%;
    max-height: 300px;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    background: rgba(10, 12, 24, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.25rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    z-index: 100001;
}

.custom-select-options[hidden] {
    display: none;
}

.custom-select-option {
    padding: 0.95rem 1.25rem;
    color: #f8fafc;
    cursor: pointer;
    transition: background 0.2s ease;
}

.custom-select-option:hover,
.custom-select-option:focus {
    background: rgba(255, 255, 255, 0.08);
}

.custom-select-option[selected],
.custom-select-option.active {
    background: rgba(0, 229, 255, 0.18);
    color: #ffffff;
}

.custom-select-open .custom-cursor,
.custom-select-open .custom-cursor-dot {
    display: none !important;
}

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

.form-label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-secondary);
    font-size: 0.98rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

/* Label Focus states */
.form-input:focus ~ .form-label,
.form-input:valid ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-textarea:valid ~ .form-label,
.form-select:focus ~ .form-label,
.form-select:valid ~ .form-label {
    top: -12px;
    font-size: 0.78rem;
    color: var(--color-electric-blue);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--color-electric-blue);
}

/* Style customized select focus */
.form-select:focus {
    border-color: rgba(0, 229, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.14);
}

.form-select::-ms-expand {
    display: none;
}

.form-select option:hover,
.form-select option:focus {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    font-size: 1rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 600px) {
    .contact-form-panel {
        padding: 2.2rem 1.5rem;
    }
}

/* ==========================================================================
   DELIGHTFUL SUCCESS POPUP (SIMULATED SUBMISSION)
   ========================================================================== */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

.success-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.success-card {
    text-align: center;
    padding: 4.5rem;
    max-width: 500px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-overlay.active .success-card {
    transform: scale(1);
}

.success-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    border: 2px solid var(--color-electric-blue);
    color: var(--color-electric-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    margin: 0 auto 2.5rem;
    position: relative;
    animation: ripple 2s infinite;
}

.success-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.success-card p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   FOOTER (Premium Modern SaaS Footer Redesign)
   ========================================================================== */
.footer {
    background: #ffffff;
    border-top: 1px solid rgba(15, 15, 30, 0.06);
    padding: 6rem 0 3rem;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 0.9fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

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

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

.footer-social-platforms {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.footer-social-platforms .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 15, 30, 0.03);
    border: 1px solid rgba(15, 15, 30, 0.06);
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-social-platforms .social-btn:hover {
    background: var(--gradient-hero);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 1.8rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.92rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-purple);
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.footer-contact-list li i {
    color: var(--color-purple);
    margin-top: 4px;
    font-size: 0.9rem;
}

.footer-contact-list li a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-contact-list li a:hover {
    color: var(--color-purple);
}

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

.footer-copy {
    font-size: 0.88rem;
    color: var(--text-tertiary);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    text-decoration: none;
    color: var(--text-tertiary);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-purple);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 1.5rem;
        text-align: center;
    }
}

/* ==========================================================================
   SCROLL REVEAL TRIGGERS (FOR INTERSECTION OBSERVER)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger reveals */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0.4; filter: blur(100px); }
    100% { transform: translate(-50%, -50%) scale(1.15) rotate(15deg); opacity: 0.7; filter: blur(80px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes ripple {
    0% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.2), 0 0 0 0 rgba(0, 229, 255, 0.2); }
    70% { box-shadow: 0 0 0 15px rgba(0, 229, 255, 0), 0 0 0 30px rgba(0, 229, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0), 0 0 0 0 rgba(0, 229, 255, 0); }
}

@keyframes cursor-pulse {
    0% { transform: scale(0.95); opacity: 0.5; box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4); }
    70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 10px rgba(0, 229, 255, 0); }
    100% { transform: scale(0.95); opacity: 0.5; box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}
