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

:root {
    /* Activz Brand Colors & Gradients */
    --activz-gradient: linear-gradient(135deg, #003B97 0%, #0066cc 40%, #ff6600 80%, #fd4903 100%);
    --activz-blue: #003B97;
    --activz-blue-light: #0088ff;
    --activz-cyan: #00d3ff;
    --activz-orange: #fd4903;
    --activz-orange-dark: #c25309;
    
    /* Layout Colors */
    --bg-dark: #ffffff;
    --bg-surface: #f5f5f5;
    --bg-surface-hover: #eaeaea;
    --border-color: #dcdcdc;
    --border-color-focus: rgba(0, 59, 151, 0.4);
    
    /* Typography Colors */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    
    /* Utilities */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}


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

/* ==========================================================================
   GLOW BACKGROUNDS & LAYOUT
   ========================================================================== */

.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.glow-purple {
    background: var(--activz-blue);
    top: -100px;
    left: -100px;
    opacity: 0.04;
}

.glow-orange {
    background: var(--activz-orange);
    top: 200px;
    right: -200px;
    opacity: 0.04;
}

.glow-pink {
    background: var(--activz-cyan);
    bottom: 200px;
    left: -150px;
    opacity: 0.04;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #25232e;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #39364a;
}

/* ==========================================================================
   REUSABLE COMPONENTS (Buttons, Badges, Typography)
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.badge-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    font-size: 0.95rem;
    gap: 10px;
}

.btn-primary {
    background: var(--activz-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(253, 73, 3, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 73, 3, 0.4);
}

.btn-primary:disabled {
    background: #323136;
    color: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
}

.btn-glow:hover::after {
    left: 125%;
}

.btn-secondary {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-surface-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    font-size: 1.05rem;
    padding: 16px 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   HEADER STYLE
   ========================================================================== */

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

#main-header.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

#brand-logo {
    height: 40px;
    display: block;
    object-fit: contain;
}

.header-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-item:hover, .nav-item.active {
    color: var(--activz-blue);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--activz-blue);
    transition: var(--transition-smooth);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.03);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.badge-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10B981;
    display: inline-block;
    box-shadow: 0 0 8px #10B981;
}

/* Hide navigation badge on medium screens and button on small mobile screens */
@media (max-width: 850px) {
    .header-badge {
        display: none;
    }
}

@media (max-width: 576px) {
    .nav-cta-btn {
        display: none;
    }
    .header-nav {
        gap: 12px;
    }
    .nav-item {
        font-size: 0.85rem;
    }
}

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

#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
    position: relative;
    z-index: 5;
    min-height: 100vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 140px 48px 80px 48px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--activz-orange);
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

.feature-text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
}

.feature-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Hero Portrait — seamlessly integrated, no frames */
.hero-portrait {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    min-height: 100vh;
}

.hero-portrait-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.hero-portrait-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

/* Gradient overlays to seamlessly blend the image into the page */
.hero-portrait-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.7) 12%, transparent 35%),
        linear-gradient(to top, #ffffff 0%, transparent 25%),
        linear-gradient(to bottom, #ffffff 0%, transparent 12%);
    z-index: 2;
}

.hero-portrait-badge {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

/* Hero Video Row (below the main hero) */
.hero-video-row {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 24px 80px 24px;
    position: relative;
    z-index: 5;
}

.hero-video-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-video-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-video-label i {
    color: var(--activz-orange);
    font-size: 1.2rem;
}

/* Hero Video Layout (keep for backward compat) */
.hero-visual-video {
    width: 100%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #000;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

/* Premium Video CTA Button */
.video-cta-box {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-video-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--activz-orange) 0%, #ff8c00 100%);
    color: #fff !important;
    padding: 16px 32px;
    border-radius: var(--border-radius-lg);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
    max-width: 550px;
    position: relative;
    overflow: hidden;
}

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

.btn-video-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.4);
    background: linear-gradient(135deg, #ff8c00 0%, var(--activz-orange) 100%);
}

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

.btn-video-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.btn-video-cta i {
    font-size: 1.2rem;
    color: #ffd700;
    animation: cta-glow 2s infinite ease-in-out;
}

@keyframes cta-glow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 2px rgba(255,215,0,0.4));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 8px rgba(255,215,0,0.8));
    }
}

/* Responsive Hero Layout */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        align-items: center;
        padding: 120px 24px 40px 24px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-lead {
        margin-bottom: 24px;
    }

    .hero-features {
        align-items: center;
        text-align: left;
        max-width: 440px;
        margin: 0 auto 30px auto;
    }

    .hero-portrait {
        order: -1;
        min-height: 50vh;
        max-height: 500px;
    }

    .hero-portrait-overlay {
        background:
            linear-gradient(to top, #ffffff 0%, transparent 35%),
            linear-gradient(to bottom, #ffffff 0%, transparent 20%);
    }

    .hero-video-row {
        max-width: 500px;
        padding: 40px 24px 60px 24px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 110px 16px 32px 16px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-portrait {
        max-height: 400px;
    }

    .hero-portrait-badge {
        bottom: 24px;
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */

#benefits, #testimonials, #faq {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(0, 59, 151, 0.18);
    box-shadow: 0 10px 30px rgba(0, 59, 151, 0.08);
}

.benefit-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.b-purple {
    background: rgba(0, 59, 151, 0.15);
    color: var(--activz-blue-light);
}

.b-pink {
    background: rgba(0, 211, 255, 0.1);
    color: var(--activz-cyan);
}

.b-orange {
    background: rgba(253, 73, 3, 0.12);
    color: var(--activz-orange);
}

.benefit-card-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

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

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

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

#about {
    background: rgba(0, 0, 0, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 100px 24px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
}

.about-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 1/1;
    opacity: 0.95;
}

.about-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
}

.section-tag {
    color: var(--activz-orange);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 12px;
}

.about-title {
    font-size: 2.6rem;
    margin-bottom: 24px;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.about-quote {
    border-left: 3px solid;
    border-image: var(--activz-gradient) 1;
    padding-left: 20px;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 36px;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-visual {
        order: 2;
    }
}

/* ==========================================================================
   FUNNEL / BOOKING SYSTEM
   ========================================================================== */

#booking-section {
    position: relative;
    padding: 120px 24px;
}

.booking-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.05;
    z-index: -1;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: flex-start;
}

.booking-intro {
    padding-top: 20px;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.badge-live i {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.booking-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.booking-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

/* Booking Benefits List (under description) */
.booking-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

.booking-benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--border-radius-md);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.booking-benefit-item:hover {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 59, 151, 0.1);
}

.benefit-icon-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 59, 151, 0.08);
    color: var(--activz-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-icon-sm.orange {
    background: rgba(253, 73, 3, 0.08);
    color: var(--activz-orange);
}

.benefit-text-sm h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.benefit-text-sm p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.booking-steps-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.step-info-item.active {
    color: var(--text-primary);
}

.step-number-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.step-info-item.active .step-number-bubble {
    background: var(--activz-gradient);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 59, 151, 0.3);
}

/* Interactive Card container */
.booking-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

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

/* Calendar Element Styles */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.calendar-header h3 {
    font-size: 1.25rem;
}

.calendar-nav-btn {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.calendar-nav-btn:hover {
    background: var(--bg-surface-hover);
    border-color: rgba(0, 0, 0, 0.15);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 28px;
}

.calendar-day-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-primary);
    aspect-ratio: 1;
    border-radius: 50%;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.calendar-day-btn:hover:not(.disabled):not(.selected) {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--border-color);
}

.calendar-day-btn.disabled {
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.4;
}

.calendar-day-btn.selected {
    background: var(--activz-gradient);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(218, 53, 37, 0.25);
}

.calendar-day-btn.today {
    border-color: var(--activz-orange);
}

/* Time Slots */
.time-slots-wrapper {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-bottom: 24px;
}

.time-slots-wrapper h4 {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot-btn {
    background: rgba(0, 0, 0, 0.01);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.time-slot-btn:hover:not(.selected) {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.time-slot-btn.selected {
    background: var(--activz-gradient);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 59, 151, 0.2);
}

.empty-slots-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Form Styles */
.back-link {
    background: transparent;
    border: none;
    color: var(--activz-orange);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    padding: 0;
}

.back-link:hover {
    text-decoration: underline;
}

.selected-summary-badge {
    background: rgba(0, 59, 151, 0.06);
    border: 1px solid rgba(0, 59, 151, 0.15);
    border-radius: var(--border-radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.selected-summary-badge i {
    color: var(--activz-orange);
    font-size: 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

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

.required {
    color: #EF4444;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.form-group input, .form-group select {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 14px 16px 14px 44px;
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

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

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--border-color-focus);
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 59, 151, 0.15);
}

.form-group input:focus + .input-icon, .form-group select:focus + .input-icon {
    color: var(--activz-orange);
}

.form-group select option {
    background: #ffffff;
    color: var(--text-primary);
}

/* Error messages */
.error-msg {
    font-size: 0.8rem;
    color: #EF4444;
    display: none;
    margin-top: 4px;
}

.form-group.has-error input, .form-group.has-error select {
    border-color: #EF4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.1);
}

.form-group.has-error .error-msg {
    display: block;
}

/* Success Screen Styles */
.success-header {
    text-align: center;
    margin-bottom: 28px;
}

.success-icon-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10B981;
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.success-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.success-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.success-details-card {
    background: rgba(0, 0, 0, 0.01);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin-bottom: 28px;
}

.success-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
}

.success-detail-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.success-detail-row .value {
    font-weight: 600;
    color: var(--text-primary);
}

.success-action-area {
    text-align: center;
    background: rgba(37, 211, 102, 0.04);
    border: 1px dashed rgba(37, 211, 102, 0.2);
    border-radius: var(--border-radius-md);
    padding: 20px;
}

.success-action-area p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .booking-card {
        padding: 24px;
    }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

#testimonials {
    border-top: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #FBBF24;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-quote {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 20px;
}

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

.author-info strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

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

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

#faq {
    border-top: 1px solid var(--border-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    user-select: none;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: var(--bg-surface-hover);
}

.faq-arrow {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.02);
}

.faq-answer p {
    padding: 20px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
}

/* Active FAQ state */
.faq-item.open {
    border-color: rgba(0, 0, 0, 0.15);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--activz-orange);
}

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

footer {
    background: #f3f4f6;
    border-top: 1px solid var(--border-color);
    padding: 60px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 450px;
}

.footer-logo {
    height: 36px;
    align-self: flex-start;
    object-fit: contain;
}

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

.footer-disclaimer {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 500;
    margin-top: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* ==========================================================================
   COOKIE CONSENT BANNER STYLES
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 420px;
    max-width: calc(100vw - 48px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-banner-icon {
    font-size: 1.5rem;
    color: var(--activz-orange);
}

.cookie-banner-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-banner-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--activz-blue);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    flex-grow: 1;
    text-align: center;
}

.cookie-btn-primary {
    background: var(--activz-blue);
    color: #ffffff;
}

.cookie-btn-primary:hover {
    background: var(--activz-blue-light);
    box-shadow: 0 4px 12px rgba(0, 59, 151, 0.2);
}

.cookie-btn-secondary {
    background: #eaeaea;
    color: var(--text-secondary);
}

.cookie-btn-secondary:hover {
    background: #dddddd;
}

.cookie-btn-text {
    background: transparent;
    color: var(--text-secondary);
    text-decoration: underline;
    font-size: 0.8rem;
    padding: 8px 12px;
    width: 100%;
}

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

/* Customization Panel */
.cookie-customize-panel {
    display: none;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: 4px;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cookie-category-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cookie-category-name {
    font-weight: 600;
    color: var(--text-primary);
}

/* Switch styling */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 20px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--activz-blue);
}

input:disabled + .cookie-slider {
    background-color: #ddd;
    cursor: not-allowed;
}

input:checked + .cookie-slider:before {
    transform: translateX(16px);
}

@media (max-width: 576px) {
    .cookie-banner {
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08);
        padding: 20px;
    }
}

/* ==========================================================================
   SOCIAL MEDIA LINKS
   ========================================================================== */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    font-family: var(--font-heading);
}

.tiktok-btn {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.tiktok-btn:hover {
    background: #25f4ee; /* TikTok Cyan tint */
    color: #000000;
    border-color: #25f4ee;
    box-shadow: 0 4px 15px rgba(37, 244, 238, 0.35);
}

.youtube-btn {
    background: #FF0000;
    color: #ffffff;
    border-color: #FF0000;
}

.youtube-btn:hover {
    background: #ffffff;
    color: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.35);
}

/* ==========================================================================
   LIVEAVATAR FLOATING ASSISTANT WIDGET
   ========================================================================== */

.liveavatar-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: var(--font-body);
}

/* Floating Action Button (FAB) */
.avatar-fab {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--activz-gradient);
    border: 2px solid #ffffff;
    box-shadow: 0 8px 32px rgba(0, 59, 151, 0.35);
    cursor: pointer;
    position: relative;
    padding: 0;
    overflow: visible;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-fab img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.avatar-fab:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 12px 36px rgba(253, 73, 3, 0.45);
}

.avatar-fab:hover img {
    transform: scale(1.0);
}

/* Pulse Ring Animation */
.avatar-fab .pulse-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--activz-orange);
    opacity: 0;
    animation: avatarPulse 2.5s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    pointer-events: none;
}

@keyframes avatarPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Glassmorphic Chat Panel */
.avatar-panel {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 360px;
    height: 520px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 59, 151, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: var(--transition-smooth);
}

.avatar-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Panel Header */
.avatar-panel-header {
    background: linear-gradient(135deg, rgba(0, 59, 151, 0.06) 0%, rgba(253, 73, 3, 0.06) 100%);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 59, 151, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.avatar-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-info img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--activz-blue-light);
}

.avatar-info h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-ia {
    background: var(--activz-gradient);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10B981; /* Green status dot */
    display: inline-block;
    position: absolute;
    top: 43px;
    left: 52px;
    border: 2px solid #ffffff;
    box-shadow: 0 0 8px #10B981;
    z-index: 2;
}

.status-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.avatar-close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.avatar-close-btn:hover {
    background: rgba(0, 59, 151, 0.08);
    color: var(--activz-blue);
}

/* Panel Body */
.avatar-body {
    flex-grow: 1;
    position: relative;
    background: #0d0d0f; /* Seamless dark screen background */
}

/* Settings Toggle Button in Header */
.avatar-settings-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.avatar-settings-btn:hover {
    background: rgba(0, 59, 151, 0.08);
    color: var(--activz-blue);
}

/* Chat & Settings View Transitions */
.avatar-view-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0d0f;
    transition: all 0.3s ease;
}

/* Simulated Chat Scroll History */
.avatar-chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar for Chat Messages */
.avatar-chat-messages::-webkit-scrollbar {
    width: 5px;
}
.avatar-chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
.avatar-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.avatar-chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Speech Bubbles */
.chat-msg {
    display: flex;
    width: 100%;
    margin-bottom: 2px;
}

.chat-msg-bubble {
    max-width: 80%;
    padding: 12px 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Agent Bubble: Left Aligned, Sleek Dark Grey */
.msg-agent {
    justify-content: flex-start;
}

.msg-agent .chat-msg-bubble {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #e4e4e7;
    border-radius: 16px 16px 16px 2px;
}

/* User Bubble: Right Aligned, Premium Activz Gradient */
.msg-user {
    justify-content: flex-end;
}

.msg-user .chat-msg-bubble {
    background: var(--activz-gradient);
    color: #ffffff;
    border-radius: 16px 16px 2px 16px;
}

/* Typing Indicator Animation */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #a1a1aa;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Quick Reply Chips */
.avatar-quick-replies {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.avatar-quick-replies::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.quick-chip {
    background: rgba(253, 73, 3, 0.08);
    border: 1px solid rgba(253, 73, 3, 0.2);
    color: #fdba74;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-body);
}

.quick-chip:hover {
    background: var(--activz-gradient);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(253, 73, 3, 0.25);
}

/* Chat Footer Input Area */
.avatar-chat-form {
    display: flex;
    gap: 10px;
    padding: 14px 20px 20px 20px;
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.avatar-chat-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.2s ease;
}

.avatar-chat-form input:focus {
    border-color: rgba(253, 73, 3, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(253, 73, 3, 0.1);
}

.avatar-chat-form input::placeholder {
    color: #71717a;
}

.avatar-chat-form button {
    background: var(--activz-gradient);
    border: none;
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(253, 73, 3, 0.3);
}

.avatar-chat-form button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(253, 73, 3, 0.45);
}

.avatar-chat-form button i {
    font-size: 0.9rem;
}

/* Settings Configuration View */
.avatar-settings-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    color: #ffffff;
    overflow-y: auto;
}

.avatar-settings-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.settings-desc {
    font-size: 0.76rem;
    color: #a1a1aa;
    line-height: 1.5;
    margin: 0;
}

.settings-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.settings-field label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #e4e4e7;
}

.settings-field input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: #ffffff;
    font-size: 0.82rem;
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
}

.settings-field input:focus {
    border-color: var(--activz-blue-light);
    background: rgba(255, 255, 255, 0.08);
}

.field-hint {
    font-size: 0.7rem;
    color: #71717a;
}

.settings-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.btn-settings-save {
    background: var(--activz-gradient);
    border: none;
    color: #ffffff;
    padding: 11px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    flex-grow: 1;
    text-align: center;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(253, 73, 3, 0.25);
}

.btn-settings-save:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(253, 73, 3, 0.35);
}

.btn-settings-clear {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    padding: 11px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.btn-settings-clear:hover {
    background: rgba(239, 68, 68, 0.2);
}

.btn-settings-back {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d1d5db;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: auto;
    transition: all 0.2s;
}

.btn-settings-back:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .liveavatar-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .avatar-panel {
        position: fixed;
        bottom: 100px;
        right: 20px;
        left: 20px;
        width: auto;
        height: calc(100% - 130px);
        max-height: 580px;
    }
}

/* ==========================================================================
   MOBILE STICKY CTA
   ========================================================================== */
@media (max-width: 576px) {
  .nav-cta-btn {
    display: inline-flex !important;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 999;
    width: auto;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
  }

  body {
    padding-bottom: 84px;
  }
}
