/* ============================================
   VISIOMINDS BOOKING — PREMIUM DESIGN
   ============================================ */

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

html {
    scroll-behavior: auto;
}

:root {
    --black: #000000;
    --dark: #0A0A0A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --red: #FF3838;
    --gold: #FCC64C;
    --gray: #888888;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0A0A0A;
    color: #F4F5F5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.custom-cursor {
    position: fixed;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 9999;
    display: none;
    transform: translate(-50%, -50%);
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
    }
}

.cursor-inner {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #FF3838;
    border-radius: 50%;
    top: 0;
    left: 0;
    opacity: 0.4;
}

.cursor-middle {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #FCC64C;
    border-radius: 50%;
    top: 10px;
    left: 10px;
    opacity: 0.2;
}

.cursor-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #FF3838;
    border-radius: 50%;
    top: 32px;
    left: 32px;
    box-shadow: 0 0 15px #FF3838;
}

@keyframes rotateOuter {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateMiddle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px #FF3838, 0 0 40px rgba(255, 56, 56, 0.3); }
    50% { box-shadow: 0 0 30px #FF3838, 0 0 60px rgba(255, 56, 56, 0.5); }
}

/* ============================================
   NAVBAR — pill glassmorphism (matches style.css)
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    pointer-events: none;
}

.nav-pill {
    max-width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 10px 16px 10px 20px;
    pointer-events: auto;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled .nav-pill {
    background: rgba(10, 10, 10, 0.92);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 22px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 100px;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-link-item:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}

.nav-links a::after { display: none; }

.nav-start-project {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 100px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none;
    transition: background 0.25s ease, box-shadow 0.25s ease !important;
    display: inline-block;
}

.nav-start-project:hover {
    background: #FF5252 !important;
    box-shadow: 0 6px 24px rgba(255, 56, 56, 0.4) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 998;
}

.mobile-menu.active {
    max-height: 400px;
    padding-top: 80px;
}

.mobile-menu-content {
    padding: 20px 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.mobile-menu-content a:hover {
    color: var(--red);
}

.mobile-menu-content .mobile-start-project {
    background: var(--red) !important;
    padding: 14px 32px !important;
    border-radius: 100px !important;
    color: var(--white) !important;
    display: block !important;
    margin-top: 8px !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu-content .mobile-start-project:hover {
    background: #FF5252 !important;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }

    .navbar {
        padding: 14px 20px;
    }

    .nav-pill {
        gap: 16px;
        padding: 8px 12px 8px 16px;
    }
}

/* Page transition overlay (booking page) */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #0A0A0A;
    transform: translateY(100%);
    pointer-events: none;
}

.page-transition.entering {
    animation: pageEnter 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.page-transition.leaving {
    animation: pageLeave 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes pageEnter {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

@keyframes pageLeave {
    from { transform: translateY(0); }
    to   { transform: translateY(-100%); }
}

/* Custom cursor (booking page) */
.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    top: 0;
    left: 0;
    will-change: transform;
}

.cursor-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--red, #FF3838);
    border-radius: 50%;
    top: -3px;
    left: -3px;
}

.cursor-ring {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 56, 56, 0.7);
    border-radius: 50%;
    top: -18px;
    left: -18px;
    transition: width 0.4s ease, height 0.4s ease, top 0.4s ease, left 0.4s ease;
}

.cursor-view-label {
    display: none;
}

@media (max-width: 768px) {
    .custom-cursor { display: none; }
}

/* ============================================
   PROGRESS BAR
   ============================================ */

.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(244, 245, 245, 0.08);
    z-index: 999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FF3838 0%, #FCC64C 100%);
    width: 0%;
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 20px rgba(255, 56, 56, 0.8), inset 0 0 10px rgba(255, 56, 56, 0.4);
}

/* ============================================
   BOOKING WRAPPER & STEPS
   ============================================ */

.booking-wrapper {
    min-height: 100vh;
    position: relative;
}

.booking-step {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.booking-step:not(.intro-step) {
    padding: clamp(100px, 15vw, 140px) clamp(20px, 5vw, 80px) clamp(40px, 10vw, 60px);
}

.booking-step.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.6s ease-out;
    width: 100%;
}

.booking-step.active.intro-step {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.step-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.intro-step .step-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* ============================================
   INTRO STEP
   ============================================ */

.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    gap: 35px;
    padding: 0 clamp(20px, 5vw, 80px);
}

.intro-header {
    animation: fadeInDown 0.8s ease-out;
}

.intro-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 56, 56, 0.1);
    border: 1px solid rgba(255, 56, 56, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #FF3838;
    letter-spacing: 0.5px;
    animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 56, 56, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 56, 56, 0);
        transform: scale(1.02);
    }
}

.intro-text {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.intro-text h1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.intro-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.text-highlight {
    color: #FF3838;
    position: relative;
}

.intro-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn-large {
    position: relative;
    overflow: hidden;
    font-size: 18px;
    padding: 18px 48px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
    z-index: -1;
}

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

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 56, 56, 0.4);
}

.intro-hint {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: clamp(40px, 8vw, 80px);
    margin-top: 20px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.stat-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.stat-value {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #FF3838;
}

.stat-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.intro-desc {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.float-1,
.float-2,
.float-3 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.float-1 {
    width: 400px;
    height: 400px;
    background: #FF3838;
    top: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.float-2 {
    width: 300px;
    height: 300px;
    background: #FCC64C;
    bottom: -50px;
    right: -50px;
    animation: float 25s ease-in-out infinite reverse;
}

.float-3 {
    width: 250px;
    height: 250px;
    background: #FF3838;
    top: 50%;
    right: 5%;
    animation: float 30s ease-in-out infinite;
    opacity: 0.06;
}

.floating-shape-banner {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.shape-banner-1 {
    width: 450px;
    height: 450px;
    background: #FF3838;
    top: -200px;
    right: -150px;
    animation: float 22s ease-in-out infinite;
    filter: blur(70px);
}

.shape-banner-2 {
    width: 380px;
    height: 380px;
    background: #FCC64C;
    bottom: -150px;
    left: -100px;
    animation: float 28s ease-in-out infinite reverse;
    filter: blur(70px);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(100px, 100px); }
}

/* ============================================
   STEP HEADERS
   ============================================ */

.step-header {
    margin-bottom: 60px;
    text-align: center;
}

.step-header h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.step-header p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ============================================
   SERVICE GRID
   ============================================ */

.services-grid-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.service-box {
    position: relative;
    cursor: pointer;
}

.service-box input {
    display: none;
}

.box-content {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    will-change: transform;
}

.box-icon {
    font-size: 48px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: #FF3838;
}

.box-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

.box-content h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.box-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.service-box input:checked + .box-content {
    background: rgba(255, 56, 56, 0.12);
    border-color: #FF3838;
    box-shadow: 0 20px 60px rgba(255, 56, 56, 0.15);
    transform: translateY(-8px);
}

.service-box input:checked + .box-content h3 {
    color: #FF3838;
}

.service-box input:checked + .box-content .box-icon {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .intro-content {
        gap: 20px;
        min-height: 85vh;
        padding: 0 20px;
    }

    .intro-text h1 {
        margin-bottom: 12px;
    }

    .intro-stats {
        gap: clamp(16px, 4vw, 30px);
        margin-top: 12px;
    }

    .stat-value {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }

    .stat-name {
        font-size: 10px;
    }
}

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

    .box-content {
        padding: 24px 16px;
        gap: 12px;
    }

    .box-icon {
        font-size: 36px;
        width: 48px;
        height: 48px;
    }

    .box-content h3 {
        font-size: 16px;
    }

    .box-content p {
        font-size: 12px;
    }
}

/* ============================================
   FORM ELEMENTS
   ============================================ */

.booking-form {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 16px 20px;
    background: rgba(244, 245, 245, 0.05);
    border: 2px solid rgba(244, 245, 245, 0.1);
    border-radius: 14px;
    color: #F4F5F5;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #FF3838;
    background: rgba(255, 56, 56, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 56, 56, 0.1);
}

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

/* ============================================
   BUDGET & TIMELINE SECTIONS
   ============================================ */

.form-section {
    margin-bottom: 48px;
}

.section-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.budget-box,
.timeline-box {
    position: relative;
    cursor: pointer;
}

.budget-box input,
.timeline-box input {
    display: none;
}

.box-label {
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amount {
    font-size: 18px;
    font-weight: 700;
    color: #FF3838;
    transition: color 0.3s ease;
}

.desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.budget-box input:checked + .box-label {
    background: rgba(255, 56, 56, 0.12);
    border-color: #FF3838;
    box-shadow: 0 12px 40px rgba(255, 56, 56, 0.15);
    transform: translateY(-6px);
}

.timeline-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-box {
    display: block;
}

.timeline-box input:checked + .timeline-label {
    color: #FF3838;
}

.timeline-label {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-box input:checked ~ .timeline-label {
    background: rgba(255, 56, 56, 0.08);
    border-color: #FF3838;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    font-family: 'Inter', sans-serif;
    display: inline-block;
}

.btn-primary {
    background: #FF3838;
    color: #0A0A0A;
    border: 2px solid #FF3838;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(255, 56, 56, 0.35);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-secondary {
    background: transparent;
    color: #FF3838;
    border: 2px solid #FF3838;
}

.btn-secondary:hover {
    background: rgba(255, 56, 56, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 24px 60px;
    font-size: 18px;
}

.step-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 80px;
}

@media (max-width: 640px) {
    .step-actions {
        flex-direction: column;
        gap: 16px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* ============================================
   SUCCESS STEP
   ============================================ */

.success-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80vh;
    gap: 40px;
}

/* ============================================
   CALENDLY STEP
   ============================================ */
.calendly-step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 24px 60px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.calendly-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid rgba(255,56,56,0.3);
    border-radius: 20px;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.calendly-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}
.calendly-header h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}
.calendly-accent { color: var(--red); }
.calendly-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 460px;
    line-height: 1.75;
    margin-bottom: 24px;
}
.calendly-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 40px;
    padding: 10px 20px;
}
.calendly-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.calendly-meta-item + .calendly-meta-item::before {
    content: '·';
    color: rgba(255,255,255,0.2);
    margin-right: 2px;
}
.calendly-meta-item svg { opacity: 0.5; flex-shrink: 0; }

.calendly-widget-wrap {
    width: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 0 0 1px rgba(255,56,56,0.08),
        0 40px 80px rgba(0,0,0,0.5),
        0 0 120px rgba(255,56,56,0.06);
}
.calendly-widget-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,56,56,0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.calendly-inline-widget {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 0;
}
.calendly-inline-widget iframe {
    display: block;
    width: 100%;
    height: 700px;
    border: none;
}

/* Post-booking success */
.calendly-booked-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: 80vh;
    padding: 40px 24px;
    gap: 24px;
}
.booked-icon {
    font-size: 80px;
    line-height: 1;
    animation: successBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.calendly-booked-content h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}
.booked-message {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 460px;
}
.booked-details {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
}
.booked-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

@media (max-width: 600px) {
    .calendly-step-content { padding: 60px 16px 40px; }
    .calendly-inline-widget iframe { height: 580px; }
    .booked-actions { flex-direction: column; width: 100%; }
    .booked-actions a { width: 100%; text-align: center; }
}

.success-icon {
    font-size: 120px;
    line-height: 1;
    animation: successBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes successBounce {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.success-content h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

.success-message {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 450px;
}

.success-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
}
.summary-item { color: rgba(255,255,255,0.7); }
.summary-dot  { color: var(--red); }

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   STEP INDICATOR
   ============================================ */

.step-indicator {
    display: none;
}

.step-divider {
    display: none;
}

#currentStep {
    display: none;
}

@media (max-width: 768px) {
    .step-indicator {
        bottom: 20px;
        font-size: 16px;
    }
}

/* ============================================
   CONFETTI
   ============================================ */

.confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.confetti-piece {
    position: absolute;
    pointer-events: none;
    border-radius: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .booking-wrapper {
        padding: 60px 16px 50px;
    }

    .booking-step {
        padding: 60px 16px 50px;
    }

    .intro-content {
        min-height: auto;
        gap: 30px;
    }

    .step-header {
        margin-bottom: 30px;
    }

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

    .booking-form {
        gap: 24px;
    }

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

    .success-actions {
        width: 100%;
    }

    .success-actions > * {
        flex: 1;
        min-width: 150px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

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

.footer {
    background: #050505;
    padding: 120px 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col {
    text-align: left;
    flex: 1;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-top: 20px;
}

.footer-menu a {
    font-size: 14px;
    color: rgba(244, 245, 245, 0.6);
    transition: color 0.3s;
    text-decoration: none;
    font-weight: 400;
}

.footer-menu a:hover {
    color: #FF3838;
}

.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 16px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(244, 245, 245, 0.5);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    text-decoration: none;
}

.footer-socials a:hover {
    color: #FF3838;
    border-color: rgba(255, 56, 56, 0.4);
    background: rgba(255, 56, 56, 0.06);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(244, 245, 245, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item:hover {
    color: #FF3838;
}

.footer-contact-item svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.footer-col h4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: #FF3838;
}

.footer-col p {
    font-size: 13px;
    color: rgba(244, 245, 245, 0.6);
    line-height: 1.8;
    max-width: 350px;
}

.footer-col a {
    color: rgba(244, 245, 245, 0.6);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #FF3838;
}

.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    float: left;
    margin: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #FF3838;
}

.footer-legal .divider {
    color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: right;
    float: right;
    margin: 0;
}

/* Clear float after footer items */
.footer-container::after {
    content: '';
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-col {
        flex: none;
    }

    .footer-col p {
        font-size: 13px;
    }

    .footer-menu {
        gap: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
        margin-top: 0;
    }

    .footer-menu a {
        font-size: 13px;
    }

    .footer-legal {
        float: none;
        text-align: left;
        padding: 15px 0;
        border: none;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-bottom {
        float: none;
        text-align: left;
        border-top: none;
        padding: 15px 0;
        margin: 0;
    }

    .footer-logo {
        height: 24px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
