/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-black: #000000;
    --text-white: #ffffff;
    --purple-main: #632C9B;
    --purple-light: #A594FD;
    --nav-font: 'Plus Jakarta Sans', sans-serif;
    /* Purple to White Gradient as per the button in your screenshot */
    --btn-grad: linear-gradient(90deg, #b892ff 0%, #e8eaff 100%);
}

body {
    background-color: var(--bg-black);
    font-family: var(--nav-font);
    color: var(--text-white);
    overflow-x: hidden;
}

html,
body {
    background-color: #05010a !important;
    /* Poore canvas ka base color */
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.heading-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--purple-light);
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1024px) {
    .heading-tag {
        justify-content: center;
    }
}

.purple-text {
    background: linear-gradient(to right, #fff, #A594FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    width: 92%;
    /* Same width on both sides */
    max-width: 1400px;
    margin: 0 auto;
    /* Centers the content perfectly */
    position: relative;
}

/* BASE BUTTON (shared by both) */
.btn-book,
.btn-secondary-outline {
    padding: 14px 26px;
    font-size: 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    /* SAME HEIGHT */
    min-width: 170px;
    /* prevents small button */
    text-align: center;
    box-sizing: border-box;
}

/* BUTTON */
.btn-book {
    background: var(--btn-grad);
    color: #000;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    position: relative;
    z-index: 1001;
}

.btn-secondary-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    padding: clamp(10px, 2vw, 14px) clamp(16px, 4vw, 22px);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    z-index: 11;
    transition: background 0.3s, border-color 0.3s;
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.magnetic-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    position: relative;
    z-index: 999 !important;
    pointer-events: auto !important;
}

/* ============================================================
   HEADER & MOBILE MENU - FINAL REFINED VERSION
   ============================================================ */

/* --- CORE HEADER --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(5, 1, 10, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 3000;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* --- DESKTOP NAVIGATION --- */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--purple-light);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--purple-light);
    transition: 0.3s;
}

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

/* --- DESKTOP DROPDOWN --- */
.nav-dropdown {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #0D0D0D;
    min-width: 240px;
    padding: 15px 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 24px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(165, 148, 253, 0.1);
    color: var(--purple-light);
    padding-left: 30px;
}

/* --- HEADER RIGHT SECTION --- */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-header .magnetic-wrap {
    display: inline-block;
}

/* --- MOBILE HAMBURGER BUTTON --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3001;
    width: 30px;
    height: 30px;
}

.bar {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: 0.3s ease-in-out;
}

/* ==========================
   MOBILE MENU & BACKDROP
========================== */

.mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: #05010a;
    z-index: 2000;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mob-link,
.mobile-dropdown-header span {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

/* --- SERVICES ACCORDION --- */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.mobile-chevron {
    font-size: 12px;
    color: var(--purple-light);
    transition: transform 0.3s ease;
}

.mobile-sub-menu {
    height: 0;
    overflow: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    border-left: 2px solid rgba(165, 148, 253, 0.2);
}

.mobile-sub {
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
}

/* --- THE FIX: Tighter Button Spacing --- */
.mobile-cta-wrap {
    margin-top: 30px;
    /* Greatly reduced from 50px */
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.mobile-cta-wrap .btn-book {
    width: auto;
    min-width: 160px;
    padding: 14px 25px;
    font-size: 13px;
    text-align: center;
    display: inline-block;
    background: var(--btn-grad);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

    .menu-toggle {
        display: flex;
    }

    .main-header .magnetic-wrap {
        display: none;
    }

    .main-header {
        height: 70px;
    }

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

@media (max-width: 360px) {
    .main-header {
        height: 65px;
    }

    .logo-img {
        height: 38px;
    }

    .mobile-overlay {
        width: 75%;
        padding: 80px 30px 30px;
    }

    .mobile-nav {
        gap: 20px;
    }

    .mob-link,
    .mobile-dropdown-header span {
        font-size: 16px;
    }

    .mobile-cta-wrap {
        margin-top: 25px;
    }
}

/* ==========================
    FOOTER MAIN STYLES 
    ========================= */
.footer-section {
    background: #000;
    color: #fff;
    padding: clamp(80px, 10vw, 120px) 0 clamp(20px, 4vw, 30px);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    width: min(92%, 1400px);
    margin: 0 auto;
}

/* Awards Row */
.footer-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
    justify-items: center;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 80px;
}

.partner-logo {
    width: clamp(120px, 12vw, 160px);
    height: clamp(50px, 6vw, 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    transition: all 0.35s ease;
    overflow: hidden;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: all 0.35s ease;
}

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

.partner-logo:hover img {
    opacity: 1;
    filter:
        brightness(0) invert(1) drop-shadow(0 0 12px rgba(165, 148, 253, 0.35));
}

.logo-4 {
    height: 100%;
}

/* Column Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(30px, 4vw, 60px);
    margin-bottom: clamp(50px, 6vw, 80px);
}

.col-title {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    margin-bottom: clamp(16px, 2vw, 26px);
}

.footer-info,
.footer-link,
.footer-links-list li a,
.social-icon {
    font-size: clamp(13px, 1.4vw, 15px);
    color: #888;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s;
}

.footer-link:hover,
.footer-links-list li a:hover,
.social-icon:hover {
    color: var(--purple-light);
}

.footer-links-list {
    list-style: none;
}

.footer-socials {
    display: flex;
    gap: clamp(12px, 2vw, 20px);
    flex-wrap: wrap;
}

/* Massive Branding Text */
.massive-branding-area {
    text-align: center;
    margin-top: clamp(30px, 6vw, 60px);
    padding-bottom: 20px;
}

#footer-branding-text {
    display: inline-block;
    font-size: clamp(60px, 16vw, 240px);
    font-weight: 900;
    letter-spacing: clamp(-2px, -0.8vw, -16px);
    line-height: 1;
    margin: 0;
    background: linear-gradient(90deg,
            #fff,
            #A594FD,
            #632C9B,
            #A594FD,
            #fff);

    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-partners {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .footer-partners {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-partners {
        gap: 20px;
    }

    .partner-logo {
        flex: 1 1 40%;
    }

    #footer-branding-text {
        font-size: clamp(50px, 18vw, 120px);
        letter-spacing: -2px;
    }
}

@media (max-width: 380px) {
    .footer-section {
        padding-top: 60px;
    }

    .partner-logo {
        flex: 1 1 100%;
    }

    #footer-branding-text {
        font-size: clamp(40px, 20vw, 80px);
    }
}

/* ==========================
    HERO SECTION
    ========================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: auto;
    height: auto;
    padding-bottom: 0;
    background: #05010a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 20px 0px;
    /* REMOVE bottom padding */
    overflow: hidden;
    /* important */
    box-sizing: border-box;
}

.hero-container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    flex: 1;

}

/* Background Glows */
.hero-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(99, 44, 155, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(165, 148, 253, 0.15) 0%, transparent 70%);
    z-index: 1;
}

/* Title Area */
.hero-title-area {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-main-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

/* Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: -7rem;
    /* adjust this value */
    transform: none;
}

.hero-left,
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.hero-right {
    text-align: left;
}

/* Left Side */
.hero-sub-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin: 0;
}

.hero-tagline {
    font-size: 1.1rem;
    color: #aaa;
}

.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-btns {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 10;
}

.hero-buttons .btn-book,
.hero-buttons .btn-secondary-outline {
    width: auto;
    min-width: 0;
}

@media (max-width: 900px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-buttons .btn-book,
    .hero-buttons .btn-secondary-outline {
        width: 220px;
        /* same width */
        justify-content: center;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

    .hero-buttons .btn-book,
    .hero-buttons .btn-secondary-outline {
        width: 100%;
        max-width: 260px;
    }
}

/* Center Phone */
.phone-frame-container {
    width: 100%;
    max-width: 320px;
    max-width: 320px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.phone-svg-frame {
    width: 100%;
    height: auto;
    display: block;
}

.phone-frame-img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.phone-screen {
    position: absolute;
    top: 3.2%;
    left: 6.6%;
    right: 6.6%;
    bottom: 3.2%;
    background: #0a0118;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: clamp(12px, 3vw, 20px) clamp(10px, 3vw, 16px);
    z-index: 1;
}

.screen-gradient {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right,
            rgba(99, 44, 155, 0.4),
            transparent 60%);
    pointer-events: none;
}

/* Notification Cards */
.phone-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(10px, 1.5vw, 16px);
    padding: clamp(8px, 1.5vw, 12px);
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    transform: translateX(50px);
    opacity: 0;
}

.card-icon {
    width: clamp(24px, 4vw, 35px);
    height: clamp(24px, 4vw, 35px);
    background: rgba(165, 148, 253, 0.2);
    border-radius: clamp(6px, 1vw, 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(12px, 2vw, 16px);
}

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

.card-text strong {
    font-size: clamp(10px, 1.8vw, 13px);
    color: #fff;
}

.card-text span {
    font-size: clamp(9px, 1.5vw, 11px);
    color: #aaa;
}

/* Right Side */
.hero-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 260px;
    /* keeps alignment stable */
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    white-space: nowrap;
    /* prevents shifting */
}

.check-icon {
    width: 28px;
    height: 28px;
    border: 1px solid #A594FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A594FD;
    font-weight: bold;
}

/* Bottom Bar */
.hero-trust-bar {
    position: relative;
    margin-top: -120px;
    width: 100vw;
    /* full viewport width */
    left: 50%;
    transform: translateX(-50%);
    /* center align */
    padding: 20px clamp(20px, 5vw, 60px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(30px);
    background: linear-gradient(to top,
            rgba(5, 1, 10, 0.95),
            rgba(5, 1, 10, 0.7),
            transparent);
    z-index: 50;
}

.stars {
    color: #A594FD;
    margin-top: 5px;
    font-size: 20px;
}

/* ===============================
   LARGE DESKTOP (1400+)
   =============================== */
@media (min-width: 1400px) {
    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .phone-frame-container {
        max-width: 340px;
    }
}

/* ===============================
   LAPTOP (1100px)
   =============================== */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr 260px 1fr;
        gap: 20px;
    }

    .phone-frame-container {
        max-width: 260px;
    }
}

/* ===============================
   TABLET (768px)
   =============================== */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }

    .hero-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-top: -3rem;
    }

    .hero-left {
        order: 1;
        text-align: center;
        align-items: center;
        margin-top: 15%;
    }

    .hero-center {
        order: 3;
        margin-top: -17%;
    }

    .hero-right {
        position: relative;
        z-index: 2;
        order: 2;
        /* checklist above phone */
    }

    .phone-frame-container {
        max-width: 220px;
        overflow: visible;
        /* prevent clipping */
        z-index: 1;
    }

    .hero-sub-title {
        font-size: 1.3rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .hero-check-list {
        margin-left: 0;
        align-items: center;
    }

    .check-item {
        font-size: 0.9rem;
    }

    .hero-trust-bar {
        margin-top: -80px;
        padding: 16px;
    }
}

/* ===============================
   MOBILE (480px)
   =============================== */
@media (max-width: 480px) {
    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: -2rem;
    }

    .hero-left,
    .hero-right {
        text-align: center;
        align-items: center;
    }

    .phone-frame-container {
        max-width: 200px;
        min-width: 160px;
    }

    .hero-sub-title {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .hero-check-list {
        margin-left: 0;
        align-items: center;
    }

    .hero-trust-bar {
        margin-top: -70px;
        padding: 14px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ===============================
   SMALL MOBILE (360px)
   =============================== */
@media (max-width: 360px) {
    .hero-left {
        width: 100%;
        align-items: center;
        /* center horizontally */
        text-align: center;
    }

    .hero-btns {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;
        /* center buttons */

        justify-content: center;

        gap: 12px;
    }

    .hero-btns .btn-book,
    .hero-btns .btn-secondary-outline {
        width: auto;
        min-width: 160px;

        text-align: center;
    }

    .phone-frame-container {
        max-width: 180px;
    }

    .hero-main-title {
        font-size: 1.8rem;
    }

    .hero-sub-title {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
    }

    .check-item {
        font-size: 0.8rem;
    }

    .hero-trust-bar {
        margin-top: -60px;
        padding: 12px;
    }
}

/* ==========================
    BUSINESS WE WORK WITH
    ========================= */
.clients-section {
    background: #05010a;
    padding: clamp(80px, 10vw, 140px) 20px;
    position: relative;
}

.clients-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    margin-bottom: clamp(40px, 6vw, 70px);

}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
    justify-items: center;
}

.client-logo {
    width: 100%;
    max-width: 180px;
    height: clamp(50px, 7vw, 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    transition: all 0.35s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: all 0.35s ease;
}

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

/* Hover effect: Logo glows and turns original color/brighter */
.client-logo:hover img {
    opacity: 1;
    filter:
        brightness(0) invert(1) drop-shadow(0 0 10px rgba(165, 148, 253, 0.35));
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .logo-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 900px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-grid {
        gap: 30px;
    }

    .client-logo {
        width: 120px;
        /* Mobile pe thoda chota box */
        height: 60px;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .client-logo {
        height: 55px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

/* ==========================
    PROCESS SECTION 
    ========================= */
.process-section {
    padding: clamp(70px, 10vw, 120px) clamp(16px, 4vw, 40px);
    background-color: #05010a;
    text-align: center;
}

.process-header {
    margin-bottom: clamp(40px, 6vw, 80px);
}

.section-subtitle {
    color: #888;
    margin-top: 15px;
    font-size: clamp(14px, 2.5vw, 19px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-subtitle strong {
    color: var(--purple-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 3vw, 30px);
    max-width: 1200px;
    margin: 0 auto clamp(60px, 8vw, 100px);
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: clamp(16px, 2vw, 24px);
    padding: clamp(18px, 4vw, 45px);
    display: flex;
    gap: clamp(14px, 3vw, 30px);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
}

.process-card:hover {
    border-color: var(--purple-light);
    background: rgba(165, 148, 253, 0.05);
    transform: translateY(-6px);
}

.process-icon {
    width: clamp(45px, 6vw, 65px);
    height: clamp(45px, 6vw, 65px);
    background: rgba(165, 148, 253, 0.1);
    border-radius: clamp(10px, 2vw, 15px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 3vw, 28px);
    flex-shrink: 0;
}

.card-content h3 {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 10px;
    color: #fff;
}

.card-content p {
    color: #aaa;
    line-height: 1.6;
    font-size: clamp(13px, 2.5vw, 15px);
}

/* CTA Area */
.process-cta h2 {
    font-size: clamp(26px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: 12px;
}

.process-cta p {
    color: #888;
    font-size: clamp(14px, 2.5vw, 18px);
    margin-bottom: clamp(20px, 4vw, 45px);
}

.process-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 3vw, 30px);
    flex-wrap: wrap;
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .process-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 60px 16px;
    }
}

@media (max-width: 320px) {
    .process-btns {
        flex-direction: column;
        width: 100%;
    }

    .process-btns .btn-book {
        width: 100%;
    }
}

/* ==========================
    HOW IT WORKS HORIZONTAL
    ========================= */
.how-it-works {
    position: relative;
    background: #05010a;
    height: 100vh;
    overflow: hidden;
}

.horizontal-heading {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 500px;
    /* Wider for the new layout */
    text-align: left;
}

.horizontal-heading .heading-tag {
    text-align: left;
}

/*  Massive High-Contrast Title */
.horizontal-heading .section-title {
    font-size: 84px;
    /* Massive size */
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 30px;
    text-align: left;
}

/*  Minimalist Footer/Line */
.heading-footer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.horizontal-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.455);
}

.heading-footer p {
    color: rgba(255, 255, 255, 0.455);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

.horizontal-wrapper {
    position: relative;
    z-index: 5;
    /* Higher than heading */
    height: 100%;
    display: flex;
    align-items: center;
}

.horizontal-container {
    display: flex;
    gap: 50px;
    padding-left: 50vw;
    /* Start cards halfway across screen so heading is visible initially */
    padding-right: 10vw;
}

.work-card {
    min-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    display: flex;
    flex-direction: column;

    background: #0d0d0d;
    /* Solid color to hide the heading behind it */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.step-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--purple-light);
    margin-bottom: 20px;
    display: block;
}

.work-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.work-card p {
    color: #aaa;
    line-height: 1.6;
    font-size: 16px;
}

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

.deliverables h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 15px;
}

.deliverables ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
}

.deliverables li {
    font-size: 14px;
    color: #fff;
    padding-left: 15px;
    position: relative;
}

.deliverables li::before {
    content: "";
    /* Empty content */
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: var(--purple-light);
    box-shadow: 0 0 8px var(--purple-light);
    /* Glow effect */
    border-radius: 1px;
    /* Slightly rounded corners for a 'chip' look */
}

/* --- THE LIVE CARD --- */
.live-card {
    background: linear-gradient(135deg, #1a0b2e 0%, #05010a 100%);
    border: 1px solid var(--purple-main);
    text-align: center;
    justify-content: center;
}

.live-text {
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 30px rgba(165, 148, 253, 0.5);
    margin: 20px 0;
}

.pulse-icon {
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 15px #00ff88;
    animation: live-pulse 2s infinite;
}

.live-card .magnetic-wrap {
    justify-content: center !important;
}

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

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

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

/* Laptop */
@media (max-width: 1200px) {
    .horizontal-heading {
        left: 5%;
        width: 420px;
    }

    .horizontal-heading .section-title {
        font-size: 64px;
    }

    .work-card {
        min-width: 420px;
        padding: 40px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .how-it-works {
        height: auto;
        padding: 120px 20px;
    }

    .horizontal-heading {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 60px auto;
        padding: 0 20px;
        text-align: center;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .horizontal-heading .section-title {
        font-size: clamp(36px, 8vw, 52px);
        letter-spacing: -1px;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

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

    .horizontal-wrapper {
        height: auto;
        width: 100%;
    }

    .horizontal-container {
        flex-direction: column;
        padding: 0;
        gap: 30px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .work-card {
        min-width: 100%;
        width: 100%;
        padding: 30px;
        border-radius: 20px;
    }

    .live-text {
        font-size: clamp(36px, 7vw, 52px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .how-it-works {
        padding: 100px 16px;
    }

    .horizontal-heading .section-title {
        font-size: clamp(32px, 9vw, 42px);
    }

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

    .work-card {
        padding: 24px;
    }

    .work-card h3 {
        font-size: 24px;
    }

    .work-card p {
        font-size: 14px;
    }

    .deliverables ul {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .horizontal-heading .section-title {
        font-size: 28px;
    }

    .work-card {
        padding: 20px;
    }
}

/* ==========================
    CLIENT SPOTLIGHT
    ========================= */
.spotlight-marquee-section {
    background: #0d0d0d;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.spotlight-top {
    margin-bottom: 50px;
    width: 90%;
    margin: 0 auto 50px;
}

.spotlight-top .section-title {
    font-size: clamp(32px, 5vw, 48px);
    /* Fluid typography */
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

/* THE MAGIC CSS */
.marquee-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    /* THE FIX: Hardware acceleration */
    will-change: transform;
    pointer-events: none;
}

.marq-card {
    width: 420px;
    flex-shrink: 0;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5%;
    padding: 0.5%;
    /* Re-enable for the actual cards */
}

.marq-img-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Container ka ratio fix rakho */
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 12px;
    position: relative;

    /* THE FIX: Image ko center mein lock karne ke liye */
    display: flex;
    justify-content: center;
    align-items: center;
}

.marq-img-box img {
    width: 100%;
    height: 100%;

    /* 2. Contain se poori image dikhegi, kategi nahi */
    object-fit: contain;

    /* 3. Padding badhao taaki corners touch na hon */
    padding: 20px;
    box-sizing: border-box;

    /* 4. Smooth zoom ke liye transition */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.press-logo-box {
    height: 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.press-logo-box img {
    max-height: 100%;
    filter: brightness(0) invert(1);
}

.marq-headline {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.marq-source {
    font-size: 13px;
    color: #777;
}

.marq-card:hover .marq-img-box img {
    transform: scale(1.05);
}

.marq-card a {
    text-decoration: none;
    color: white;
}

@media (max-width: 768px) {
    .marq-card {
        width: 300px;
        /* Mobile par card ka size perfect rahega */
    }

    .marquee-heading {
        font-size: 24px;
    }
}

/* ========================== 
    SERVICES PIN SECTION 
========================= */
.services-pin-section {
    background: #05010a;
    /* Your Midnight Background */
    padding: 120px 0;
    position: relative;
    margin-left: 4rem;
}

.services-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: flex-start;
}

/* LEFT COLUMN */
.services-left {
    width: 45%;
}

.services-main-title {
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 60px;
    font-weight: 800;
    color: #fff;
}

.services-main-title i {
    font-family: serif;
    font-style: italic;
    opacity: 0.7;
    font-weight: 400;
}

/* THE MENU & INDICATOR */
.services-menu {
    position: relative;
    padding-left: 35px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.active-indicator {
    position: absolute;
    left: -1px;
    top: 0;
    width: 3px;
    height: 60px;
    background: var(--purple-light);
    box-shadow: 0 0 20px var(--purple-main);
    /* Purple Studio Glow */
    z-index: 2;
    /* Transition is handled by GSAP for smoothness */
}

.menu-item {
    margin-bottom: 45px;
    cursor: pointer;
    opacity: 0.25;
    transition: opacity 0.5s ease;
}

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

.menu-item .num {
    font-weight: 800;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
    color: var(--purple-light);
}

.menu-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.menu-desc {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    max-width: 380px;
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.menu-item.active .menu-desc {
    height: auto;
    margin-bottom: 10px;
    opacity: 1;
}

/* RIGHT COLUMN (Content Slides) */
.services-right {
    width: 50%;
    height: 650px;
    position: relative;
    margin-right: 2rem;
}

.content-box-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(40px);
    visibility: hidden;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-slide.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.outline-num {
    font-size: 120px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: -15px;
}

.slide-title {
    font-size: 52px;
    margin-bottom: 35px;
    font-weight: 800;
    color: #fff;
}

.slide-img-box {
    width: 80%;
    aspect-ratio: 1.5;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slide-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-left .btn-book {
    z-index: 20;
}

/* ===============================
    TABLET (1024px and below)
 =============================== */
@media (max-width: 1024px) {

    .services-pin-section {
        padding: 100px 20px;
        margin-left: 0;
    }

    .services-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .services-left,
    .services-right {
        width: 100%;
    }

    .services-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .services-main-title {
        width: 100%;
        text-align: center;
        margin: 0 auto 20px auto;
    }

    /* hide desktop slides */
    .services-right {
        display: none;
    }

    .services-menu {
        border-left: none;
        padding-left: 0;
        width: 100%;
    }

    .menu-item {
        opacity: 1;
        display: block;
        width: 100%;
        margin-bottom: clamp(48px, 7vw, 70px);
        position: relative;
    }

    .menu-item h3 {
        font-size: clamp(20px, 3vw, 26px);
        font-weight: 700;
        margin-bottom: 10px;
    }

    .menu-desc {
        height: auto;
        opacity: 1;
        font-size: clamp(14px, 2vw, 16px);
        line-height: 1.6;
        max-width: 600px;
    }

    .active-indicator {
        display: none;
    }

    /* PERFECT RESPONSIVE IMAGE */
    .menu-item::after {
        content: "";
        display: block;
        width: 100%;
        aspect-ratio: 16 / 10;
        /* match your image ratio */
        margin-top: 18px;
        border-radius: 14px;
        background-size: cover;
        /* fills full width */
        background-position: center;
        background-repeat: no-repeat;
        background-color: #0d0d0d;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .menu-item[data-index="0"]::after {
        background-image: url("/images/Services/App-development/app-development.png");
    }

    .menu-item[data-index="1"]::after {
        background-image: url("/images/Services/web-development/Web-Development.jpg");
    }

    .menu-item[data-index="2"]::after {
        background-image: url("/images/Services/UI-UX/ui-ux.webp");
    }

    .services-left .magnetic-wrap {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .services-left .btn-book {
        font-size: 14px;
        padding: 14px 26px;
        border-radius: 12px;
    }
}

/* =============================== 
    MOBILE (600px and below) 
=============================== */
@media (max-width: 600px) {
    .services-main-title {
        font-size: 28px;
    }

    .menu-item h3 {
        font-size: 18px;
    }

    .menu-desc {
        font-size: 14px;
    }
}

/* ==========================
    PROJECTS SECTION
    ========================= */
.projects-section {
    padding: 120px 0;
    background: #05010a;
    overflow-x: hidden;
}

.projects-header {
    margin-bottom: 80px;
    padding: 0 5%;
    /* Flexible padding instead of margin-left */
}

.projects-header .section-title {
    font-size: clamp(32px, 5vw, 48px);
    /* Fluid typography */
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

/* Grid Layout: Balanced Spacing */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    cursor: pointer;
    text-decoration: none;
    display: block;
}

/* Image Container: Clean Proportions */
.project-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    /* Better for modern screens than 4:3 */
    background: #11081d;
    border-radius: 12px;
    /* Soft edges for premium look */
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.project-image img {
    width: 100%;
    height: 115%;
    /* Extra height for GSAP parallax movement */

    /* THE FIX: Image kategi nahi aur proportional rahegi */
    object-fit: cover;

    position: absolute;
    top: -10%;
    /* Starts slightly higher to allow downward parallax */
    left: 0;
    display: block;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Subtle Dark Overlay (Not too heavy) */
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 1, 10, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
    z-index: 2;
}

.project-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    /* Capsule shape look */
}

/* --- Hover Effects --- */
.project-card:hover .project-image img {
    transform: scale(1.1) translateY(5%);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover h3 {
    color: var(--purple-light);
}

.project-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    transition: color 0.3s ease;
}

.project-card:hover h3 {
    color: #A594FD;
}

.project-info p {
    color: #999;
    line-height: 1.6;
    font-size: 16px;
    max-width: 100%;
}

/* --- Responsive Layout --- */
@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        width: 95%;
    }

    .projects-header {
        text-align: center;
        padding: 0;
    }

    .project-image {
        aspect-ratio: 16 / 9;
    }
}

/* ==========================
    FAQ SECTION
    ========================= */
.faq-section {
    padding: 120px 0;
    background-color: #05010a;
}

.faq-container {
    max-width: 850px;
    /* Narrower for better readability */
    margin: 0 auto;
    width: 90%;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.faq-toggle {
    font-size: 24px;
    color: var(--purple-light);
    font-weight: 300;
    transition: transform 0.4s ease;
}

.faq-answer {
    height: 0;
    /* Managed by GSAP */
    overflow: hidden;
    padding: 0 30px;
}

.faq-answer p {
    color: #888;
    padding-bottom: 25px;
    line-height: 1.6;
    font-size: 15px;
}

/* Active State Styles */
.faq-item.active {
    border-color: rgba(165, 148, 253, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    /* Turns + into x */
    color: #fff;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }
}

/* ==========================
    FINAL CTA SECTION
    ========================= */
.final-cta {
    background: #05010a;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

/* LEFT SIDE */
.cta-visual-side {
    width: 50%;
    margin-top: 0;
    padding-top: 10px;
}

.cta-main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    margin: 15px 0 50px;
    color: #fff;
}

/* RIGHT SIDE FORM */
.cta-form-side {
    width: 45%;
}

.cta-form-side .magnetic-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-form-container {
    background: #0d0d0d;
    padding: clamp(24px, 4vw, 60px);
    border-radius: clamp(10px, 2vw, 16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-left: auto;
    margin-right: auto;
}

.form-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-full {
    margin-bottom: 25px;
}

.stagger-form input,
.stagger-form textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
}

.stagger-form input:hover,
.stagger-form textarea:hover,
.tag-item span:hover {
    border-color: rgba(165, 148, 253, 0.4);
}

.stagger-form input:focus,
.stagger-form textarea:focus {
    border-color: var(--purple-light);
    background: rgba(165, 148, 253, 0.04);
    box-shadow:
        0 0 0 3px rgba(165, 148, 253, 0.5),
        0 0 20px rgba(165, 148, 253, 0.15);
}

/* Service Tags Styling */
.service-selector {
    margin-top: 10px;
}

.service-selector p {
    font-size: clamp(12px, 1.6vw, 13px);
    color: #777;
    margin-bottom: 14px;
    font-weight: 600;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.tag-item {
    display: inline-flex;
}

.tag-item input {
    display: none;
}

.tag-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 600;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tag-item span:hover {
    border-color: var(--purple-light);
    background: rgba(165, 148, 253, 0.08);
}

.tag-item input:checked+span {
    background: var(--purple-light);
    color: #05010a;
    border-color: var(--purple-light);
    box-shadow: 0 0 20px rgba(165, 148, 253, 0.4);
}

.final-cta .magnetic-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    padding: 20px;
}

.final-cta .btn-book {
    display: inline-flex;
    width: auto;
    max-width: 320px;
    padding: clamp(14px, 4vw, 20px) clamp(16px, 5vw, 28px);
    border-radius: 999px;
    font-weight: 800;
    font-size: clamp(11px, 3.5vw, 14px);
    letter-spacing: clamp(0.5px, 0.4vw, 1px);
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transform: none;
}

.form-footer-msg {
    text-align: center;
    margin-top: 25px;
    font-size: 11px;
    color: var(--purple-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .cta-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .cta-visual-side,
    .cta-form-side {
        width: 100%;
    }

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

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

@media (max-width: 768px) {
    .cta-main-title {
        font-size: clamp(28px, 7vw, 42px);
    }

    .form-heading {
        font-size: clamp(20px, 5vw, 28px);
    }

    .contact-form-container {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .final-cta {
        padding: 80px 16px;
    }

    .cta-main-title {
        font-size: 3rem;
    }

    .contact-form-container {
        padding: 20px;
    }

    .tag-cloud {
        gap: 8px;
    }

    .tag-item span {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 360px) {
    .cta-main-title {
        font-size: 2.8rem;
    }

    .final-cta .btn-book {
        max-width: 100%;
        padding: 12px 16px;
        font-size: 11px;
    }
}

/* ULTRA SMALL DEVICES */
@media (max-width: 300px) {
    .final-cta .btn-book {
        padding: 10px 12px;
        font-size: 10px;
        letter-spacing: 0.5px;
    }
}

/* ==========================
   SUBMIT BUTTON LOADER
========================== */

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

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid #000;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: none;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

.submit-btn.loading .btn-text {
    opacity: 0.6;
}

.submit-btn.loading .btn-loader {
    display: inline-block;
}

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