/* ================================================
   GENSYTECH — DESIGN SYSTEM & STYLES
   Premium High-Conversion Agency Website
   ================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors */
    --orange: #FF5722;
    --red: #FF5722;
    --gradient: var(--orange);
    --gradient-hover: #E64A19;
    --gradient-subtle: rgba(255, 87, 34, 0.1);

    /* Neutrals */
    --black: #000000;
    --dark: #0a0a0f;
    --dark-2: #111118;
    --dark-3: #1A1A24;
    --gray-900: #1a1a2e;
    --gray-800: #2a2a3e;
    --gray-700: #3a3a4e;
    --gray-600: #6b7280;
    --gray-500: #9ca3af;
    --gray-400: #c4c4cc;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-py: 120px;
    --container-max: 1200px;
    --container-px: 24px;

    /* Borders & Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(255, 87, 34, 0.2);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--gradient-subtle);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.3);
}

.btn--primary:hover {
    background: var(--gradient-hover);
    box-shadow: 0 6px 30px rgba(255, 87, 34, 0.45);
    transform: translateY(-2px);
}

.btn--whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
    background: #1ebc59;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
    color: var(--white);
}


.btn--outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-200);
}

.btn--outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn--sm {
    padding: 10px 22px;
    font-size: 14px;
}

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

.navbar--scrolled {
    background: var(--white);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

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

.navbar__logo-img {
    height: 42px;
    width: auto;
    transition: opacity 0.4s var(--ease);
}

/* Logo swap: dark logo visible initially, light logo hidden */
/* Logo logic: show default logo (for light background) initially on white hero */
.navbar__logo-img--dark {
    display: none;
}

.navbar__logo-img--light {
    display: block;
}

/* When scrolled: keep default logo */
.navbar--scrolled .navbar__logo-img--dark {
    display: none;
}

.navbar--scrolled .navbar__logo-img--light {
    display: block;
}

.navbar__nav {
    display: flex;
    gap: 32px;
    margin-left: 40px;
}

.navbar__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

/* When scrolled, links become darker */
.navbar--scrolled .navbar__link {
    color: var(--gray-600);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s var(--ease);
    border-radius: 2px;
}

.navbar__link:hover {
    color: var(--dark);
}

.navbar--scrolled .navbar__link:hover {
    color: var(--dark);
}

.navbar__link:hover::after {
    width: 100%;
}

/* Active nav link */
.navbar__link.active {
    color: var(--orange);
}

.navbar__link.active::after {
    width: 100%;
}

.navbar__lang {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    margin-left: auto;
    margin-right: 24px;
}

.navbar__lang a {
    color: var(--gray-500);
    transition: color 0.3s var(--ease);
}

.navbar__lang a:hover,
.navbar--scrolled .navbar__lang a:hover {
    color: var(--dark);
}

.navbar__lang a.active {
    color: var(--orange);
}

.navbar__lang-sep {
    color: var(--gray-300);
}

@media (max-width: 1024px) {
    .navbar__lang {
        display: none;
    }
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    /* White initially on dark hero */
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.navbar--scrolled .navbar__hamburger span {
    background: var(--dark);
    /* Dark when navbar is white */
}

.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   1.5 MOBILE SIDEBAR
   ================================================ */
.sidebar {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    transform: translateX(0);
    visibility: visible;
}

.sidebar__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 24px 50px;
    max-width: 500px;
    margin-left: auto;
    width: 100%;
}

.sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.sidebar__close {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s var(--ease);
}

.sidebar__close:hover {
    transform: rotate(90deg);
    color: var(--orange);
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: auto;
}

.sidebar__link-wrapper {
    overflow: hidden;
}

.sidebar__link {
    display: block;
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    transition: all 0.4s var(--ease);
    transform: translateY(100%);
}

.sidebar.active .sidebar__link {
    transform: translateY(0);
}

/* Staggered link animation */
.sidebar.active .sidebar__link-wrapper:nth-child(1) .sidebar__link {
    transition-delay: 0.1s;
}

.sidebar.active .sidebar__link-wrapper:nth-child(2) .sidebar__link {
    transition-delay: 0.15s;
}

.sidebar.active .sidebar__link-wrapper:nth-child(3) .sidebar__link {
    transition-delay: 0.2s;
}

.sidebar.active .sidebar__link-wrapper:nth-child(4) .sidebar__link {
    transition-delay: 0.25s;
}

.sidebar.active .sidebar__link-wrapper:nth-child(5) .sidebar__link {
    transition-delay: 0.3s;
}

.sidebar__link:hover {
    color: var(--orange);
    padding-left: 15px;
}

.sidebar__footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease) 0.4s;
}

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

.sidebar__social {
    display: flex;
    gap: 20px;
}

.sidebar__social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--gray-400);
    transition: all 0.3s var(--ease);
}

.sidebar__social-link:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-5px);
}

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

@media (max-width: 1024px) {
    .navbar__nav {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__cta {
        display: none;
    }
}

/* ================================================
   2. HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--white);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    z-index: 1;
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--orange);
    top: -200px;
    right: -100px;
    opacity: 0.08;
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--red);
    bottom: -100px;
    left: -100px;
    opacity: 0.05;
}

/* Cursor-following glow */
.hero__cursor-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.12) 0%, rgba(255, 87, 34, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s var(--ease);
    opacity: 0;
}

.hero__cursor-glow.active {
    opacity: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--orange);
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.2);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s var(--ease) both;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__actions .btn--outline {
    border-color: var(--gray-300);
    color: var(--dark);
}

.hero__actions .btn--outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.hero__trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.hero__trust-item svg {
    color: var(--orange);
    flex-shrink: 0;
}

/* Hero Visual */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__illustration {
    width: 100%;
    height: auto;
    border-radius: 0;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 87, 34, 0.2));
}

.hero__visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 87, 34, 0.15);
    animation: spin 20s linear infinite;
}

.hero__visual-ring--1 {
    width: 100%;
    height: 100%;
    inset: 0;
}

.hero__visual-ring--2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-direction: reverse;
    animation-duration: 15s;
    border-color: rgba(255, 87, 34, 0.12);
}

.hero__visual-ring--3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation-duration: 25s;
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    color: var(--gray-500);
    font-size: 12px;
    letter-spacing: 1px;
    animation: fadeIn 2s 1s both;
}

.hero__scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray-600);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

/* ================================================
   3. SOCIAL PROOF
   ================================================ */
.social-proof {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

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

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.stat-card__icon {
    margin-bottom: 16px;
}

.stat-card__number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-card__suffix {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card__label {
    font-size: 15px;
    color: var(--gray-600);
    margin-top: 8px;
    font-weight: 500;
}

/* ================================================
   4. PROBLEMS
   ================================================ */
.problems {
    padding: var(--section-py) 0;
}

.problems__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.problem-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.problem-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 60, 60, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--red);
    transition: all 0.3s var(--ease);
}

.problem-card:hover .problem-card__icon {
    background: var(--gradient);
    color: var(--white);
}

.problem-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.problem-card__desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ================================================
   5. SOLUTION
   ================================================ */
.solution {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.solution__flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.solution__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.solution__step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--orange);
    transition: all 0.4s var(--ease);
    border: 2px solid var(--gray-100);
}

.solution__step:hover .solution__step-icon {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
    border-color: transparent;
}

.solution__step span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.solution__arrow {
    color: var(--gray-400);
    flex-shrink: 0;
}

/* ================================================
   6. SERVICES
   ================================================ */
.services {
    padding: var(--section-py) 0;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient);
    transition: height 0.4s var(--ease);
    border-radius: 0 0 4px 0;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    height: 100%;
}

.service-card__icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--orange);
    transition: all 0.3s var(--ease);
}

.service-card:hover .service-card__icon-wrap {
    background: var(--gradient);
    color: var(--white);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    transition: gap 0.3s var(--ease);
}

.service-card__link:hover {
    gap: 12px;
}

/* ================================================
   7. PROCESS
   ================================================ */
.process {
    padding: var(--section-py) 0;
    background: var(--dark);
    color: var(--white);
}

.process .section-tag {
    background: rgba(247, 147, 30, 0.15);
}

.process .section-title {
    color: var(--white);
}

.process__timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 24px;
    position: relative;
}

.process__step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.process__step-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process__step-content p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

.process__step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 147, 30, 0.1);
    border-radius: 50%;
    margin-top: 20px;
    color: var(--orange);
    border: 1px solid rgba(247, 147, 30, 0.2);
}

.process__connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--red));
    flex-shrink: 0;
    opacity: 0.4;
    align-self: center;
    margin-top: -40px;
}

/* ================================================
   8. RESULTS / TRANSFORMATION
   ================================================ */
.results {
    padding: var(--section-py) 0;
}

.results__comparison {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.results__card {
    flex: 1;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: transform 0.4s var(--ease);
}

.results__card:hover {
    transform: translateY(-4px);
}

.results__card--before {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.results__card--after {
    background: var(--dark);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.results__card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

.results__card--before .results__card-header {
    color: var(--red);
}

.results__card--after .results__card-header {
    color: #4ade80;
}

.results__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    padding: 10px 0;
}

.results__card--before .results__list svg {
    color: var(--red);
    flex-shrink: 0;
}

.results__card--after .results__list svg {
    color: #4ade80;
    flex-shrink: 0;
}

.results__vs {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.results__vs span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-400);
    background: var(--gray-100);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================
   9. WHY US
   ================================================ */
.why-us {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-us__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease);
    border: 1px solid var(--gray-100);
}

.why-us__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.why-us__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--orange);
    transition: all 0.3s var(--ease);
}

.why-us__card:hover .why-us__card-icon {
    background: var(--gradient);
    color: var(--white);
}

.why-us__card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-us__card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ================================================
   10. DEMO / CHATBOT
   ================================================ */
.demo {
    padding: var(--section-py) 0;
}

.demo__chat {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.demo__chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--dark);
    color: var(--white);
}

.demo__chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(247, 147, 30, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.demo__chat-avatar img {
    width: 26px;
    height: 26px;
}

.demo__chat-header strong {
    display: block;
    font-size: 14px;
}

.demo__chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-400);
}

.demo__chat-status-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.demo__chat-body {
    padding: 20px 24px;
    min-height: 200px;
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo__msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    animation: msgAppear 0.3s var(--ease-bounce) both;
}

.demo__msg--bot {
    background: var(--gray-100);
    border-radius: 16px 16px 16px 4px;
    align-self: flex-start;
}

.demo__msg--user {
    background: var(--gradient);
    color: var(--white);
    border-radius: 16px 16px 4px 16px;
    align-self: flex-end;
}

.demo__chat-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 24px 16px;
}

.demo__chat-option {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: 10px 18px;
    font-size: 13px;
    font-family: var(--font-body);
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-align: left;
}

.demo__chat-option:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--gradient-subtle);
}

.demo__chat-cta {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-100);
    text-align: center;
}

/* ================================================
   11. CASE STUDIES
   ================================================ */
.case-studies {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.case-studies__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.case-study-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.case-study-card__header {
    padding: 20px 28px 16px;
    border-bottom: 1px solid var(--gray-100);
}

.case-study-card__tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--gradient-subtle);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.case-study-card__body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-study-card__body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.case-study-card__section {
    margin-bottom: 16px;
}

.case-study-card__section:last-child {
    margin-bottom: 0;
    margin-top: auto; /* Push the result section to the bottom */
}

.case-study-card__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    display: block;
    margin-bottom: 6px;
}

.case-study-card__label--result {
    color: #4ade80;
}

.case-study-card__section p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ================================================
   12. CONSULTATION CTA
   ================================================ */
.consultation {
    position: relative;
    padding: var(--section-py) 0;
    overflow: hidden;
}

.consultation__bg {
    position: absolute;
    inset: 0;
    background: var(--gradient);
    z-index: 0;
}

.consultation__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.consultation__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.consultation__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.consultation__title span {
    display: block;
}

.consultation__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.consultation__urgency {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

/* ================================================
   13. FAQ
   ================================================ */
.faq {
    padding: var(--section-py) 0;
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq__item:hover {
    border-color: var(--gray-300);
}

.faq__item.active {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px rgba(247, 147, 30, 0.1);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    gap: 16px;
    transition: color 0.3s var(--ease);
}

.faq__question:hover {
    color: var(--orange);
}

.faq__chevron {
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    color: var(--gray-400);
}

.faq__item.active .faq__chevron {
    transform: rotate(180deg);
    color: var(--orange);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq__item.active .faq__answer {
    max-height: 200px;
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ================================================
   14. ABOUT
   ================================================ */
.about {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

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

.about__content .section-tag {
    display: inline-block;
}

.about__content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about__content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about__content .btn {
    margin-top: 12px;
}

.about__visual {
    display: flex;
    justify-content: center;
}

.about__visual-card {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    max-width: 360px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.about__visual-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.about__logo-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.about__visual-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.about__visual-card p {
    font-size: 14px;
    color: var(--gray-400);
    position: relative;
    z-index: 1;
}

/* ================================================
   15. FINAL CTA
   ================================================ */
.final-cta {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(247, 147, 30, 0.06) 0%, transparent 70%);
}

.final-cta__inner {
    position: relative;
    z-index: 1;
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 32px;
    line-height: 1.2;
}

.final-cta__reassurance {
    font-size: 15px;
    color: var(--gray-600);
    margin-top: 20px;
}

/* ================================================
   16. FOOTER
   ================================================ */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer__desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-400);
    transition: all 0.3s var(--ease);
}

.footer__social-link:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-2px);
}

.footer__links h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links a {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    padding: 6px 0;
    transition: color 0.3s var(--ease);
}

.footer__links a:hover {
    color: var(--orange);
}

.footer__bottom {
    padding: 24px 0;
}

.footer__bottom p {
    font-size: 13px;
    text-align: center;
    color: var(--gray-600);
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes scroll-wheel {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes msgAppear {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

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

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal--delay-1 {
    transition-delay: 0.15s;
}

.reveal--delay-2 {
    transition-delay: 0.3s;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .problems__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-studies__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process__timeline {
        flex-direction: column;
    }

    .process__connector {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 60px;
        --container-px: 20px;
    }

    /* Navbar mobile */
    .navbar__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s var(--ease);
        z-index: 999;
    }

    .navbar__nav.active {
        right: 0;
    }

    .navbar__cta {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    /* Hero */
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__subtitle {
        margin: 0 auto 36px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__visual-wrapper {
        max-width: 320px;
    }

    .hero__scroll-indicator {
        display: none;
    }

    /* Stats */
    .social-proof__stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Problems */
    .problems__grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
    }

    /* Solution flow */
    .solution__flow {
        flex-direction: column;
        gap: 16px;
    }

    .solution__arrow {
        transform: rotate(90deg);
    }

    /* Results */
    .results__comparison {
        flex-direction: column;
        gap: 20px;
    }

    .results__vs {
        justify-content: center;
    }

    /* Why us */
    .why-us__grid {
        grid-template-columns: 1fr;
    }

    /* Case studies */
    .case-studies__grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__content .section-title {
        text-align: center;
    }

    .about__content {
        text-align: center;
    }

    /* Footer */
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__desc {
        max-width: 100%;
    }

    /* Section header */
    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 32px;
    }

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

    .btn--lg {
        padding: 14px 28px;
        font-size: 15px;
    }

    .process__step-number {
        font-size: 36px;
    }

    .stat-card__number {
        font-size: 36px;
    }
}

/* ================================================
   18. PREMIUM BOOKING SECTION
   ================================================ */
.booking {
    padding: var(--section-py) 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.booking .section-tag {
    background: rgba(247, 147, 30, 0.15);
}

.booking .section-title {
    color: var(--white);
}

.booking .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    min-height: 600px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 280px 1fr 320px;
    height: 100%;
}

.booking-col {
    padding: 40px;
    border-right: 1px solid var(--gray-100);
}

.booking-col:last-child {
    border-right: none;
}

/* Sidebar Column */
.booking-col--sidebar {
    background: var(--gray-50);
    display: flex;
    flex-direction: column;
}

.booking-logo {
    height: 32px;
    margin-bottom: 60px;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.4;
    transition: all 0.3s var(--ease);
}

.step-item.active {
    opacity: 1;
}

.step-item.completed {
    opacity: 1;
    color: var(--orange);
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    color: var(--gray-500);
    transition: all 0.3s var(--ease);
}

.step-item.active .step-icon {
    border-color: var(--orange);
    background: var(--gradient-subtle);
    color: var(--orange);
    box-shadow: 0 4px 12px rgba(247, 147, 30, 0.15);
}

.step-item.completed .step-icon {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.step-text span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.step-text p {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.step-divider {
    width: 2px;
    height: 30px;
    background: var(--gray-200);
    margin-left: 21px;
}

.step-divider.active {
    background: var(--orange);
}

.booking-summary {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.booking-summary p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.booking-summary strong {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
}

.btn-link {
    background: none;
    border: none;
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

/* Calendar Column */
.booking-col--calendar {
    padding: 40px 60px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
}

.calendar-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cal-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.cal-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.current-month {
    font-weight: 600;
    min-width: 140px;
    text-align: center;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 15px;
}

.calendar-days span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-400);
    letter-spacing: 1px;
}

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

.date-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s var(--ease);
    border: 1px solid transparent;
}

.date-cell.disabled {
    color: var(--gray-300);
    cursor: default;
    pointer-events: none;
}

.date-cell:not(.disabled):hover {
    background: var(--gray-50);
    color: var(--orange);
    border-color: var(--orange);
}

.date-cell.selected {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 4px 12px rgba(247, 147, 30, 0.3);
}

.date-cell.today {
    color: var(--orange);
    font-weight: 700;
    text-decoration: underline;
}

/* Time Picker Column */
.booking-col--time {
    display: flex;
    flex-direction: column;
}

.selected-date {
    display: block;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

.time-slot {
    padding: 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.time-slot:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--gray-50);
}

.time-slot.selected {
    border-color: var(--orange);
    background: var(--gradient-subtle);
    color: var(--orange);
}

.time-footer {
    margin-top: auto;
    padding-top: 30px;
}

/* Form Column */
.booking-col--form {
    grid-column: span 2;
    padding: 60px;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group:last-of-type {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-2);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    font-family: var(--font-body);
    transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(247, 147, 30, 0.1);
}

.form-footer {
    grid-column: span 2;
    margin-top: 16px;
}

/* Multi-step Logic */
.booking-step {
    display: none;
    animation: fadeIn 0.5s var(--ease);
}

.booking-step.active {
    display: block;
}

/* Success State */
.success-content {
    padding: 100px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 1100px) {
    .booking-grid {
        grid-template-columns: 240px 1fr 280px;
    }

    .booking-col {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 240px 1fr;
    }

    .booking-col--time {
        grid-column: 1 / -1;
        border-top: 1px solid var(--gray-100);
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .time-slots {
        flex-direction: row;
        overflow-x: auto;
        max-height: none;
        padding-bottom: 10px;
    }

    .time-slot {
        min-width: 120px;
    }

    .time-footer {
        width: 100%;
        margin-top: 0;
        padding-top: 0;
    }
    
    .booking-col--form {
        grid-column: 1 / -1;
        padding: 40px;
    }
}

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

    .booking-col {
        border-right: none;
        border-bottom: 1px solid var(--gray-100);
        padding: 30px 20px;
    }

    .booking-col--sidebar {
        padding: 20px;
    }
    
    .booking-col--time,
    .booking-col--form {
        grid-column: 1 / -1;
        padding: 30px 20px;
    }

    .booking-logo {
        margin-bottom: 30px;
    }

    .booking-steps {
        flex-direction: row;
        justify-content: space-between;
    }

    .step-text {
        display: none;
    }

    .step-divider {
        display: none;
    }

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

    .form-group:last-of-type {
        grid-column: span 1;
    }

    .form-footer {
        grid-column: span 1;
    }
    
    .calendar-days span {
        font-size: 10px;
    }
    
    .date-cell {
        font-size: 14px;
    }
}

/* Timezone Picker Styles */
.booking-timezone {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.booking-timezone label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.booking-select {
    width: 100%;
    padding: 10px 32px 10px 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.booking-select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.1);
}

.select-wrapper svg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray-400);
    transition: color 0.3s var(--ease);
}

.booking-select:focus+svg {
    color: var(--orange);
}

/* ================================================
   14. PORTFOLIO SECTION
   ================================================ */
.portfolio {
    padding: var(--section-py) 0;
    background: var(--white);
    position: relative;
}

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

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

.portfolio-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--dark-2);
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease);
    border: 1px solid var(--gray-100);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--orange);
}

.portfolio-card__img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: object-position 1.5s ease-out;
    /* Fast scroll back */
}

.portfolio-card:hover .portfolio-card__img {
    object-position: bottom;
    transition: object-position var(--scroll-duration, 5s) linear;
    /* Dynamic duration */
}

.portfolio-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: all 0.4s var(--ease);
    transform: translateY(20px);
}

.portfolio-card:hover .portfolio-card__overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-card__tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 12px;
}

.portfolio-card__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.portfolio-card__desc {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 24px;
    max-width: 90%;
}

.portfolio-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s var(--ease);
}

.portfolio-card__link:hover {
    color: var(--orange);
}

.portfolio-card__link svg {
    transition: transform 0.3s var(--ease);
}

.portfolio-card__link:hover svg {
    transform: translateX(5px);
}

/* Portfolio Filters */
.portfolio__filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.portfolio__filter {
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.portfolio__filter:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.portfolio__filter.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

/* Filtering Animation */
.portfolio-card {
    transition: all 0.5s var(--ease), transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.portfolio-card.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* ================================================
   17. FLOATING SUPPORT WIDGET
   ================================================ */
.support-widget {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    top: auto !important;
    z-index: 9999 !important;
    /* Extremely high to stay above everything */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    pointer-events: none;
    /* Allow clicks to pass through the container, but button/window re-enable them */
}

.support-fab,
.support-window {
    pointer-events: auto;
    /* Re-enable pointer events for the interactive parts */
}

/* FAB Button */
.support-fab {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(255, 87, 34, 0.4);
    transition: all 0.4s var(--ease-bounce);
    position: relative;
    z-index: 2;
}

.support-fab:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 87, 34, 0.6);
}

.support-fab__icon,
.support-fab__close {
    position: absolute;
    transition: all 0.4s var(--ease-bounce);
}

.support-fab__close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.support-widget.active .support-fab__icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.support-widget.active .support-fab__close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Pulse Animation */
.support-fab__pulse {
    position: absolute;
    inset: -5px;
    border-radius: var(--radius-full);
    background: var(--orange);
    opacity: 0.4;
    z-index: -1;
    animation: fab-pulse 2s ease-out infinite;
}

@keyframes fab-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Chat Window */
.support-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    height: 500px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 20px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s var(--ease-bounce);
    transform-origin: bottom right;
}

.support-widget.active .support-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Header */
.support-window__header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-window__avatar {
    position: relative;
    width: 44px;
    height: 44px;
    background: var(--dark-3);
    border-radius: 50%;
    padding: 8px;
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.support-window__avatar img {
    width: 100%;
    height: auto;
}

.support-window__status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border: 2px solid var(--dark);
    border-radius: 50%;
}

.support-window__title h4 {
    font-size: 15px;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
}

.support-window__title span {
    font-size: 12px;
    color: var(--gray-500);
}

/* Body */
.support-window__body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    animation: msg-in 0.4s var(--ease) both;
}

@keyframes msg-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.support-msg--bot {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-200);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.support-msg--user {
    background: var(--gradient);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* Footer & Shortcuts */
.support-window__footer {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer Form */
.support-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 6px 12px;
}

.support-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
}

.support-input::placeholder {
    color: var(--gray-500);
}

.support-send-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s var(--ease);
}

.support-send-btn:hover {
    transform: scale(1.05);
}

.support-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Typing Indicator Overlay / Message */
.typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--gray-400);
    border-radius: 50%;
    margin-right: 4px;
    animation: typing 1s infinite;
}

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

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
    margin-right: 0;
}

/* Interactive Chat Components */
.support-msg--bot .chat-calendar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-top: 10px;
    width: 100%;
}

.chat-calendar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.chat-calendar__month {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.chat-calendar__nav {
    display: flex;
    gap: 8px;
}

.chat-cal-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

.chat-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.chat-calendar__day-name {
    font-size: 9px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
}

.chat-date-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
    color: var(--gray-300);
}

.chat-date-cell:hover:not(.disabled) {
    background: var(--orange);
    color: var(--white);
}

.chat-date-cell.selected {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.4);
}

.chat-date-cell.today {
    color: var(--orange);
    font-weight: 700;
}

.chat-date-cell.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.chat-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-slot-chip {
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-200);
    cursor: pointer;
    transition: all 0.3s;
}

.chat-slot-chip:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--orange);
}

.chat-slot-chip.selected {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* Success / Action Bubbles */
.support-msg--action {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    color: #81c784;
    text-align: center;
    width: 100%;
    align-self: center;
    margin: 10px 0;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .support-widget {
        bottom: 20px !important;
        right: 20px !important;
    }

    .support-window {
        width: calc(100vw - 40px);
        height: 450px;
        right: 0;
    }
}