/* ==========================================================================
   DESIGN SYSTEM - STITCH ALIGNED - AMDEV
   ========================================================================== */

:root {
    /* Color Tokens (Tailored HSL) */
    --bg-base: #000000;
    /* Primary Background (black) */
    --primary: #0062FF;
    /* Buttons / Highlights (electric blue) */
    --primary-light: #5A9FFF;
    /* Lighter shade for gradients */
    --primary-glow: rgba(0, 98, 255, 0.15);
    --secondary: #3399FF;
    /* Button gradient end (lighter blue) */
    --secondary-glow: rgba(51, 153, 255, 0.15);
    --card-bg: #111827;
    /* Card background (dark gray) */
    --tertiary: #FFFFFF;
    /* Text primary (white) */
    --tertiary-glow: rgba(255, 255, 255, 0.2);

    /* Surface Glassmorphism Layers */
    --surface-l1: rgba(17, 24, 39, 0.65);
    /* dark gray translucent */
    --surface-l2: rgba(18, 18, 42, 0.75);
    --surface-l3: rgba(26, 26, 60, 0.85);
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glass-focus: rgba(0, 98, 255, 0.3);

    /* Text */
    --text-main: #FFFFFF;
    /* Main text (white) */
    --text-muted: #A0A0A0;
    /* Muted text */

    /* Spacing Scale (8px rhythm - Stitch) */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 80px;

    /* Border Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Fonts */
    --font-head: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

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

body {
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ==========================================================================
   CYBER DECORATIONS (GLOWS & GRID)
   ========================================================================== */

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.005) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.glowing-orb {
    position: fixed;
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    /*600*/
    max-height: 600px;
    /*600*/
    border-radius: var(--radius-full);
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

.orb-primary {
    top: -10%;
    right: -10%;
    background-color: var(--secondary);
    animation: pulse-slow 15s infinite alternate;
}

.orb-secondary {
    bottom: -10%;
    left: -10%;
    background-color: var(--tertiary);
    animation: pulse-slow 20s infinite alternate-reverse;
}

@keyframes pulse-slow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.12;
    }

    50% {
        transform: scale(1.15) translate(40px, -20px);
        opacity: 0.18;
    }

    100% {
        transform: scale(0.9) translate(-20px, 40px);
        opacity: 0.12;
    }
}

/* ==========================================================================
   PREMIUM BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 12px 28px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    outline: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 255, 135, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 135, 0.4);
}

.btn-secondary {
    background: var(--surface-l3);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.1);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-sm) 0;
    background-color: rgba(6, 6, 12, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 100;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

:root {
    /* existing root... (no change) */
}

.logo {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 60px;
    vertical-align: middle;
}

.logo-accent {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

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

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

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(8, 8, 18, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-glass);
    z-index: 1000;
    padding: var(--spacing-xl) var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.close-drawer {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

.drawer-link {
    color: var(--text-main);
    font-size: 1.3rem;
    font-family: var(--font-head);
    font-weight: 600;
    text-decoration: none;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-btn {
    margin-top: var(--spacing-md);
    width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    z-index: 2;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    max-width: 900px;
    margin-bottom: var(--spacing-md);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 20%, var(--secondary) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-muted);
    max-width: 750px;
    margin-bottom: var(--spacing-xl);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* ==========================================================================
   INFINITE LOGO CAROUSEL
   ========================================================================== */

.carousel-section {
    padding: var(--spacing-md) 0;
    border-y: 1px solid var(--border-glass);
    position: relative;
    background: transparent;
    z-index: 2;
}

.carousel-title {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
}

.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: transparent;
}

.logo-slider::after {
    right: 0;
    background: transparent;
}

.logo-track {
    display: flex;
    gap: var(--spacing-xxl);
    animation: scroll 60s linear infinite;
    width: max-content;
    will-change: transform;
    animation-timing-function: linear;
}

.slide {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.slide i {
    font-size: 1.6rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.slide:hover i,
.slide:hover span {
    color: var(--primary);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */

.stats {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.stat-card {
    background: var(--surface-l1);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.05);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.stat-number {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(135deg, #ffffff, #8a8a9e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services {
    padding: var(--spacing-xxl) 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xxl);
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.section-title.text-left {
    text-align: left;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--surface-l1);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transition: all 0.5s ease;
    opacity: 0;
}

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

.service-card:hover {
    transform: translateY(-5px);
    background: var(--surface-l2);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.service-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--text-main);
}

.service-bullets li i {
    color: var(--primary);
}

/* ==========================================================================
   GUARANTEE & BIO SECTION
   ========================================================================== */

.guarantee {
    padding: var(--spacing-xxl) 0;
    position: relative;
    z-index: 2;
}

.guarantee-container {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: 1fr;
    align-items: center;
    gap: var(--spacing-xxl);
}

@media (max-width: 991px) {
    .guarantee-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

.guarantee-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-pills {
    margin-top: var(--spacing-md);
    text-align: center;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.pill-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--surface-l1);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-main);
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.client-logo {
    max-height: 80px;
    width: auto;
    border-radius: var(--radius-full);
    object-fit: contain;
}

.malt-badge-card {
    background: linear-gradient(135deg, rgba(20, 20, 45, 0.8), rgba(8, 8, 20, 0.9));
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    width: 100%;
    max-width: 380px;
    text-align: center;
    backdrop-filter: blur(15px);
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.malt-badge-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 80px;
    background-color: var(--tertiary);
    filter: blur(60px);
    opacity: 0.25;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.malt-logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: var(--spacing-sm);
}

.malt-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: #ff5a5a;
}

.malt-brand {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.malt-stat {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #ffb3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-xs);
}

.malt-label {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.malt-stars {
    color: #ffc107;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--spacing-xs);
}

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

.guarantee-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.guarantee-profile {
    margin-top: var(--spacing-lg);
    border-top: 1px solid var(--border-glass);
    padding-top: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}

.profile-role {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.profile-link-btn {
    margin-top: var(--spacing-md);
}

/* ==========================================================================
   INTERACTIVE AI CHAT DEMO SECTION (WOW FACTOR)
   ========================================================================== */

.chat-demo-section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    z-index: 2;
}

.chat-terminal {
    background: #080812;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-glass);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.terminal-dots {
    display: flex;
    gap: 8px;
    position: absolute;
    left: 20px;
}

.terminal-dots span {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
}

.dot-red {
    background-color: #ff5f56;
}

.dot-yellow {
    background-color: #ffbd2e;
}

.dot-green {
    background-color: #27c93f;
}

.terminal-title {
    width: 100%;
    text-align: center;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    height: 480px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: var(--radius-full);
}

.message {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    line-height: 1.45;
}

.typing-indicator-msg {
    animation: pulse 1.5s ease-in-out infinite;
}

.typing-dot {
    animation: typewriter 1.4s infinite ease-in-out both;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-muted);
    margin: 0 2px;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typewriter {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.bot-message {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    border-top-left-radius: 0;
    align-self: flex-start;
}

.user-message {
    background: var(--primary);
    color: #fff;
    border-top-right-radius: 0;
    align-self: flex-end;
    font-weight: 500;
}

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    padding: 0 var(--spacing-xs);
}

.quick-reply-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-reply-btn:hover {
    background: var(--primary-glow);
    border-color: var(--primary);
    color: var(--primary);
}

.chat-input-wrapper {
    display: flex;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 6px;
}

.chat-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    padding: 10px 14px;
    font-size: 0.95rem;
}

.chat-input-wrapper input::placeholder {
    color: var(--text-muted);
}

.chat-input-wrapper button {
    background: var(--primary);
    border: none;
    outline: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.chat-input-wrapper button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 255, 135, 0.4);
}

/* ==========================================================================
   BOOKING & FORM SECTION
   ========================================================================== */

.booking {
    padding: var(--spacing-xxl) 0;
    position: relative;
    z-index: 2;
}

.booking-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: var(--spacing-xl);
}

.booking-card {
    background: var(--surface-l1);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    width: 100%;
    max-width: 750px;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: var(--font-head);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.08);
}

.btn-submit {
    margin-top: var(--spacing-sm);
    width: 100%;
    padding: 16px;
}

.form-success-message {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.form-success-message i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.form-success-message h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
}

.form-success-message p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 500px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--border-glass);
    background-color: #040409;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-logo {
    margin-bottom: var(--spacing-xs);
    display: inline-block;
}

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

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-sm);
}

@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        align-items: flex-start;
        width: 100%;
        margin-top: var(--spacing-xs);
    }
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

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

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

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   SCROLL REVEAL UTILITIES
   ========================================================================== */

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}