/* =================================
   SOLYNX LLC - Dark Future Design System
   ================================= */

/* Import Google Fonts - Outfit (Headings) & Inter (Body) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* --- Colors: Dark Future --- */
    --color-bg-dark: #050a14;
    /* Deepest Blue/Black */
    --color-bg-card: #0f172a;
    /* Lighter Navy for Cards */
    --color-bg-glow: #1e293b;
    /* Hover state */

    --color-accent-cyan: #00f0ff;
    /* Neon Cyan (Lynx Eyes) */
    --color-accent-orange: #ff9000;
    /* Neon Orange (Rim Light) */
    --color-text-main: #ffffff;
    --color-text-muted: #94a3b8;

    --gradient-cyan: linear-gradient(135deg, #00f0ff 0%, #0891b2 100%);
    --gradient-orange: linear-gradient(135deg, #ff9000 0%, #ff4500 100%);
    --gradient-dark-card: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(5, 10, 20, 0.9) 100%);

    /* --- Spacing & sizing --- */
    --container-width: 1200px;
    --nav-height: auto;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --border-radius-pill: 50px;
}

/* =================================
   Base & Reset
   ================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg-dark);
    padding-top: 120px;
    /* Subtle circuit board pattern effect */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(0, 240, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 144, 0, 0.05) 0%, transparent 25%),
        linear-gradient(rgba(5, 10, 20, 0.95), rgba(5, 10, 20, 0.95)),
        repeating-linear-gradient(45deg, rgba(30, 41, 59, 0.05) 0px, rgba(30, 41, 59, 0.05) 1px, transparent 1px, transparent 10px),
        repeating-linear-gradient(-45deg, rgba(30, 41, 59, 0.05) 0px, rgba(30, 41, 59, 0.05) 1px, transparent 1px, transparent 10px);
    background-attachment: fixed;
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* =================================
   Utilities
   ================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-accent-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
}

.btn-gradient {
    background: var(--gradient-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

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

.btn-outline:hover {
    border-color: var(--color-accent-cyan);
    color: var(--color-accent-cyan);
}

.arrow {
    margin-left: 8px;
    font-weight: bold;
}

/* =================================
   Navigation
   ================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(5, 10, 20, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-right: 50px;
    /* Creates space between logo and nav links */
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

.logo-image {
    height: 105px;
    /* Slight increase */
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 140, 255, 0.35)) drop-shadow(0 0 18px rgba(0, 140, 255, 0.18));
}

.nav-logo span,
.nav-logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.85;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

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

.nav-cta {
    color: #000 !important;
    padding: 10px 26px;
    font-size: 14px;
    border-radius: 30px;
}

.navbar .btn {
    padding: 10px 26px;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
}

/* =================================
   Hero Section (Split Layout)
   ================================= */
.hero-section {
    position: relative;
    padding-top: 220px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 144, 0, 0.05) 0%, transparent 50%);
}

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

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin-bottom: 40px;
}

/* Badges */
.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

/* Hero Form Card (Glassmorphism) */
.hero-form-wrapper {
    position: relative;
}

.hero-form-card {
    background: var(--gradient-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-top: 3px solid var(--color-accent-orange);
    position: relative;
    z-index: 2;
}

.hero-form-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.form-sub {
    font-size: 15px;
    color: var(--color-text-muted);
    opacity: 0.85;
    margin-bottom: 24px;
}

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

.form-input {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 0 2px rgba(255, 144, 0, 0.2);
}

.btn-block {
    width: 100%;
}

.hero-form-card .btn {
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 30px;
}

/* =================================
   Brands Ticker
   ================================= */
.brands-section {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.section-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    text-align: center;
}

.brands-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.6;
}

.brand-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

/* =================================
   Sections & Features Grid
   ================================= */
.section {
    padding: 120px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-sub {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-text-main);
}

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

/* =================================
   About / Consulting (Split)
   ================================= */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.check-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

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

.circle {
    position: absolute;
    border-radius: 50%;
}

.c1 {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0, 240, 255, 0.2);
}

.c2 {
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(255, 144, 0, 0.3);
    animation: spin 20s linear infinite;
}

.float-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 1.5rem;
}

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

/* =================================
   About Quote
   ================================= */
.about-card {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.founder-name {
    font-weight: 700;
    color: var(--color-accent-cyan);
    font-size: 1.2rem;
}

.founder-role {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* =================================
   Footer
   ================================= */
.footer {
    padding: 80px 0 40px;
    background: #02060d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 240px;
    margin-bottom: 20px;
    opacity: 1;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

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

/* =================================
   Responsive
   ================================= */
@media (max-width: 992px) {

    .hero-grid,
    .split-layout,
    .features-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-section {
        text-align: center;
        padding-top: 120px;
    }

    .hero-badges {
        justify-content: center;
    }

    .navbar .nav-menu {
        display: none;
    }

    /* Mobile Menu Implementation */
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }

    .navbar .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        max-width: 300px;
        background: rgba(5, 10, 20, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .navbar .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        margin: 15px 0;
    }
}

/* =================================
   Animations
   ================================= */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Sticky Background Pattern */
.faint-sticky-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.05;
    /* Start faint */
    transition: opacity 0.3s ease;
    /* Circuit board style pattern */
    background-color: transparent;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 10% 10%, rgba(255, 144, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(255, 144, 0, 0.1) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 100px 100px, 100px 100px;
}

/* Enhanced pattern with a glow overlay */
.faint-sticky-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.05), transparent 70%);
}

/* Sticky Background Pattern - Image Based */
.faint-sticky-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.05;
    /* Start faint */
    transition: opacity 0.3s ease;
    background-color: #050a14;
    background-image: url('assets/images/tech_circuit_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Enhanced pattern with a glow overlay */
.faint-sticky-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.05), transparent 70%);
}

@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }

    .hero-section {
        padding-top: 120px;
    }

    .navbar {
        padding: 12px 20px;
    }

    .logo-img {
        height: 32px;
    }
}

body {
    padding-top: 120px;
}

@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }
}

/* =================================
   Navbar Logo Style (Consolidated)
   ================================= */
/* .nav-logo styles consolidated above */

/* =================================
   Footer — Signature Layout
   ================================= */
.footer-signature {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

/* Left column: logo + tagline */
.footer-voice {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 300px;
}

.voice-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-main);
}

.voice-sub {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Right column: nav links + social */
.footer-utility {
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex: 0 0 auto;
    align-items: flex-end;
}

.footer-nav-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: flex-end;
}

.footer-nav-group a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color 0.25s;
}

.footer-nav-group a:hover {
    color: var(--color-accent-cyan);
}

/* Social icons row */
.footer-social-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.social-label {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.social-icons-playful {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.social-icon-tilt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    transition: color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.social-icon-tilt:hover {
    color: var(--color-accent-cyan);
    background: rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-3px) rotate(-4deg);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.15);
}

.copyright-text {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    opacity: 0.6;
    text-align: right;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .footer-signature {
        flex-direction: column;
        gap: 40px;
    }

    .footer-utility {
        align-items: flex-start;
        width: 100%;
    }

    .footer-nav-group {
        justify-content: flex-start;
    }

    .footer-social-group {
        align-items: flex-start;
    }

    .social-icons-playful {
        justify-content: flex-start;
    }

    .copyright-text {
        text-align: left;
    }
}

/* =================================
   Lost Leads Calculator (SOLYNX Refactor)
   ================================= */
#llc-wrap {
    margin: 40px 0;
}

.llc-inputs {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#llc-wrap label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.llc-results {
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.llc-val {
    font-family: 'Outfit', sans-serif;
}

.llc-hero .check-list {
    margin: 30px 0;
}

.llc-hero .check-list li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.llc-hero .check-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent-cyan, #00f0ff);
    font-weight: bold;
}

@media (max-width: 992px) {
    #llc-wrap {
        text-align: center;
    }

    .llc-hero .check-list {
        display: inline-block;
        text-align: left;
    }
}

/* =================================
   Book Consultation Section
   ================================= */

.book-consultation-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Ambient radial glow — matches hero aesthetic */
.bc-bg-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(0, 240, 255, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255, 144, 0, 0.04) 0%, transparent 60%);
}

.book-consultation-section>.container {
    position: relative;
    z-index: 1;
}

/* Section header */
.bc-header {
    margin-bottom: 56px;
}

.bc-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent-cyan);
    margin-bottom: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.bc-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-main);
}

.bc-sub {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Calendar card wrapper ---- */
.bc-calendar-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.bc-calendar-inner {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(5, 10, 20, 0.95) 100%);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0, 240, 255, 0.05),
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 240, 255, 0.04);
    transition: box-shadow 0.4s ease;
}

.bc-calendar-inner:hover {
    box-shadow:
        0 0 0 1px rgba(0, 240, 255, 0.12),
        0 30px 80px rgba(0, 0, 0, 0.65),
        0 0 80px rgba(0, 240, 255, 0.07);
}

/* Decorative browser-chrome bar */
.bc-top-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bc-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bc-dot-red {
    background: #ff5f57;
}

.bc-dot-yellow {
    background: #febc2e;
}

.bc-dot-green {
    background: #28c840;
}

.bc-top-label {
    margin-left: 10px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    opacity: 0.6;
    font-family: 'Inter', monospace;
}

/* Embed zone */
.bc-embed-zone {
    padding: 10px 0 0;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.bc-embed-zone iframe {
    flex: 1;
    min-height: 600px;
    border: none;
    display: block;
}

/* Trust badges */
.bc-trust-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding: 0 20px;
}

.bc-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    letter-spacing: 0.3px;
    opacity: 0.85;
    transition: opacity 0.25s;
}

.bc-trust-item:hover {
    opacity: 1;
    color: var(--color-text-main);
}

.bc-trust-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .bc-title {
        font-size: 2.2rem;
    }

    .bc-trust-row {
        gap: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bc-calendar-inner {
        border-radius: 14px;
    }

    .bc-embed-zone {
        min-height: 500px;
    }

    .bc-embed-zone iframe {
        min-height: 500px;
    }
}

/* =================================
   Booking Section — Collapse / Expand
   ================================= */

/*
 * .booking-collapsed — applied to #book-consultation on page load.
 * Collapses the entire section to zero vertical space: max-height, padding,
 * and opacity all zero so no blank gap is visible in the layout.
 */
.booking-collapsed {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
    opacity: 0;
    pointer-events: none;
    transition:
        max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease,
        padding-top 0.4s ease,
        padding-bottom 0.4s ease;
}

/*
 * .booking-expanded — swapped in by JS when the CTA is clicked.
 * Uses a large safe max-height (3000px) so the transition always clears.
 * Padding is restored by the existing .book-consultation-section rule.
 */
.booking-expanded {
    max-height: 3000px !important;
    overflow: hidden !important;
    opacity: 1;
    pointer-events: auto;
    transition:
        max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease 0.08s,
        padding-top 0.45s ease,
        padding-bottom 0.45s ease;
}

/*
 * Inner content staggered reveal — header slides up first (80ms),
 * then the calendar wrapper follows (200ms) for a layered premium feel.
 */
.booking-expanded .bc-header {
    animation: bookingReveal 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 80ms;
}

.booking-expanded .bc-calendar-wrapper {
    animation: bookingReveal 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 200ms;
}

@keyframes bookingReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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