:root {
    --primary-color: #7B2CBF; /* Purple from logo */
    --primary-hover: #6a24a3;
    --dark-navy: #151E2E;    /* Dark navy from logo bar */
    --text-main: #1C1C1C;
    --text-muted: #5B616E;
    --bg-light: #F7F8FA;
    --bg-lavender: #F8F4FF;
    --border-color: #E2E6EC;
    --white: #ffffff;
    --font-body: 'Inter', sans-serif;
}

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

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}


body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
}


.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.color-purple {
    color: #692bc4;
}

.white-text {
    color: white;
}

.mb-3 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 24px;
}

.mt-lg {
    margin-top: 80px;
}

.mt-neg {
    margin-top: -30px;
}

.text-muted {
    color: var(--text-muted);
}

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

/* Hero Section */
.hero-wrapper {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2A1054 40%, var(--primary-color) 100%);
    min-height: 520px;
    position: relative;
    padding-top: 130px;
    padding-bottom: 80px;
    overflow: hidden;
}

.navbar-wrapper {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.navbar-inner {
    background-color: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 1320px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

/* Nav Link Pill (Active state from image) */
.nav-link-pill {
    background-color: #F0F2F5;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #1C1C1C;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link-pill svg {
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-link {
    text-decoration: none;
    color: #1C1C1C;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    transition: color 0.2s ease;
}

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

.nav-link-box {
    border: 1px solid #D1D5DB;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #1C1C1C !important;
    font-weight: 600 !important;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-login-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    padding: 14px 32px;
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.nav-login-btn:hover {
    background-color: var(--primary-hover);
}

/* Mega Menu Container */
.nav-dropdown-wrapper {
    position: relative;
    padding: 20px 0;
    /* Padding to keep menu open while moving mouse */
    margin: -20px 0;
}

.mega-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: -180px;
    width: 900px;
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 32px;
    z-index: 1000;
    display: none;
    /* Show on hover in prod, keeping visible for now if needed */
    animation: fadeIn 0.3s ease;
}

.mega-menu.show {
    display: block;
}

.nav-link-pill.active svg {
    transform: rotate(180deg);
}

.nav-link-pill:not(.active) {
    background-color: transparent;
}

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

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

.mega-menu-inner {
    display: grid;
    grid-template-columns: 240px 1fr 280px;
    gap: 32px;
}

/* Sidebar */
.mega-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-right: 1px solid #F0F2F5;
    padding-right: 16px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #4a4a58;
}

.sidebar-item i:first-child {
    font-size: 16px;
    width: 20px;
}

.sidebar-item span {
    font-size: 14px;
    font-weight: 600;
    flex: 1;
}

.sidebar-item .fa-chevron-right {
    font-size: 10px;
    opacity: 0.5;
}

.sidebar-item.active,
.sidebar-item:hover {
    background-color: #F8F4FF;
    color: var(--primary-color);
}

.sidebar-item.active .fa-chevron-right,
.sidebar-item:hover .fa-chevron-right {
    opacity: 1;
}

/* Mega Content */
.mega-content {
    padding-top: 8px;
}

.mega-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
}

.mega-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mega-list li a {
    text-decoration: none;
    color: #4a4a58;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.mega-list li a:hover {
    color: var(--primary-color);
}

/* Mega Banner */
.mega-banner {
    background-color: #3e3e3e;
    border-radius: 20px;
    overflow: hidden;
    color: white;
}

.banner-card {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #444, #222);
}

.banner-text {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 16px;
    color: white;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 32px;
}

.banner-img-container {
    margin-top: auto;
    position: relative;
    padding: 10px;
}

.airpass-card-mock {
    background: #111;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mock-logo {
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 20px;
}

.mock-icons {
    font-size: 16px;
    display: flex;
    gap: 10px;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.hero-content {
    flex: 1;
    color: var(--white);
    margin-top: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(62, 133, 97, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #E2E8F0;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 40px;
    letter-spacing: normal;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 520px;
    margin-top: 32px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.hero-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-card p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #F8FAFC;
}

.hero-form-container {
    width: 440px;
    margin-top: -10px;
}

.form-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.form-illustration {
    display: flex;
    justify-content: center;
    width: calc(100% + 64px);
    /* Negate parent padding (32px * 2) */
    margin: -32px -32px 24px -32px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.form-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

.input-group {
    display: flex;
    background: #ffffff;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    height: 64px;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: border-color 0.2s ease;
}

.input-group:focus-within {
    border-color: var(--primary-color);
}

.input-group.input-error {
    border-color: #E53E3E;
    background-color: #FFF5F5;
}

@keyframes shake {

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

    25% {
        transform: translateX(-8px);
    }

    50% {
        transform: translateX(8px);
    }

    75% {
        transform: translateX(-8px);
    }
}

.ind-badge {
    background-color: #2671D6;
    color: white;
    width: 48px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    gap: 2px;
    line-height: 1;
}

.wheel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-plate-input {
    flex: 1;
    border: none;
    padding: 0 24px;
    font-size: 22px;
    font-weight: 700;
    outline: none;
    text-transform: uppercase;
    color: #1A202C;
    letter-spacing: 1px;
}

.vehicle-plate-input::placeholder {
    color: #A0AEC0;
    letter-spacing: normal;
    font-size: 18px;
    font-weight: 500;
}

.btn-purple {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.2);
    text-decoration: none;
    gap: 12px;
}

.btn-purple:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(107, 70, 193, 0.3);
}

.btn-purple i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.btn-purple:hover i {
    transform: translateX(4px);
}

.form-action-center,
.modal-action-center {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}


/* Quick Links Section */
.quick-links-section {
    max-width: 1040px;
}

.quick-links-bg {
    background-color: #f4effa;
    border-radius: 32px;
    padding: 40px;
    margin: 0 auto;
}

.quick-links-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    color: #11142D;
    margin-bottom: 32px;
}

.ql-icon {
    background-color: #11142D;
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.ql-pill {
    background-color: #ffffff;
    padding: 16px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #11142D;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ql-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.ql-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #11142D;
}

.ql-text {
    text-decoration: underline;
}

.ql-see-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #D226B2;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.sm-icon {
    background-color: #D226B2;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Page Bottom & Typography */
.page-bottom {
    padding-top: 40px;
    padding-bottom: 80px;
}

.section-margin {
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: #111;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

/* Breadcrumbs & Intro */
.breadcrumbs {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 40px;
    text-align: center;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs span {
    font-weight: 600;
    color: var(--text-main);
}

.intro-centered-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-centered-text p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.text-link {
    color: #4B60E9;
    text-decoration: none;
}

/* Steps Grids */
.bg-lavender {
    background-color: var(--bg-lavender);
    border-radius: 32px;
    padding: 40px;
}

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

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

.step-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.step-badge {
    display: inline-block;
    background-color: #E2D3FF;
    color: #692bc4;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.step-card p {
    font-size: 15px;
    font-weight: 600;
    color: #1C1C1C;
    line-height: 1.5;
}

/* Modern 3-Step Section Styles (Horizontal Cards) */
.modern-steps-section {
    padding: 60px 0;
}

.modern-steps-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #11142D;
    text-align: left;
}

.modern-steps-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-row-card {
    display: flex;
    align-items: center;
    padding: 24px;
    border-radius: 20px;
    gap: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    height: 140px;
}

.step-row-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-peach {
    background-color: #FFF8F6;
    border-color: #FFEDE8;
}

.card-lavender {
    background-color: #F8F8FF;
    border-color: #EEEEFF;
}

.card-mint {
    background-color: #F6FFF8;
    border-color: #E8FFED;
}

.step-illustration {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-3d-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-3d {
    font-size: 44px;
    color: #FF8A00;
    filter: drop-shadow(2px 4px 8px rgba(255, 138, 0, 0.3));
}

.challan-3d {
    font-size: 44px;
    color: #4A6CF7;
    filter: drop-shadow(2px 4px 8px rgba(74, 108, 247, 0.3));
}

.pay-3d {
    font-size: 44px;
    color: #22C55E;
    filter: drop-shadow(2px 4px 8px rgba(34, 197, 94, 0.3));
}

.plate-3d {
    position: absolute;
    bottom: -2px;
    right: -12px;
    background: #ffffff;
    color: #1a202c;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 4px 2px 14px;
    border-radius: 2px;
    border: 1px solid #E2E8F0;
    transform: rotate(-10deg);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.plate-3d::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background-color: #2671D6;
}

.step-details h4 {
    font-size: 19px;
    font-weight: 800;
    color: #11142D;
    margin-bottom: 6px;
}

.step-details p {
    font-size: 14px;
    color: #5B616E;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 1100px) {
    .modern-steps-row-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .modern-steps-section {
        padding: 40px 0;
    }

    .modern-steps-title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 32px;
    }

    .step-row-card {
        height: auto;
        padding: 20px;
    }
}

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

.step-card-new {
    background-color: var(--bg-lavender, #F8F4FF);
    border-radius: 24px;
    padding: 40px 48px;
    /* High padding to match visual spaciousness */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-pill-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #8b5cf6;
    /* Vibrant purple pill */
    color: white;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.step-card-new p {
    font-size: 18px;
    font-weight: 700;
    color: #0b0c10;
    line-height: 1.5;
    margin: 0;
}

/* Fuzzy Banner */
.full-width-fuzzy {
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 10% 40%, #ffd0eb 0%, transparent 50%),
        radial-gradient(circle at 90% 60%, #e0d4ff 0%, transparent 50%),
        #fdfaff;
}

.fuzzy-section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    color: #0b0c10;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.fuzzy-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 40px 48px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.lavender-card {
    background-color: var(--bg-lavender, #F8F4FF);
    border-radius: 24px;
    padding: 40px 48px;
    max-width: 900px;
    margin: 0 auto;
}

.fuzzy-card-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.fuzzy-list {
    padding-left: 20px;
    color: #0b0c10;
    font-size: 16px;
    line-height: 1.8;
}

.fuzzy-list li {
    margin-bottom: 12px;
}

/* Black Banner */
.black-banner {
    background-color: #111;
    padding: 32px 0;
    margin-top: 40px;
    margin-bottom: 80px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    /* Increased gap to match steps grid */
}

.benefit-card {
    background-color: var(--bg-lavender, #F8F4FF);
    border-radius: 24px;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.b-icon {
    font-size: 48px;
    /* Making the emoji large enough to approximate illustrations */
    line-height: 1;
    margin-bottom: 8px;
    /* Provide extra space below the icon */
}

/* Remove icon background since the new design uses standalone illustrations */
.b-icon img,
.b-icon svg {
    display: block;
    max-width: 64px;
}

.b-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: #11142D;
    margin: 0;
}

.b-content p {
    font-size: 15px;
    color: #4a4a58;
    line-height: 1.6;
    margin: 0;
}

/* Box Outline */
.info-box-outline {
    border: none;
    /* Removed border */
    border-radius: 24px;
    padding: 56px 48px;
    /* Increased top/bottom padding to match mockup aspect ratio */
    background: var(--bg-lavender, #F8F4FF);
    text-align: center;
}

.info-box-outline p {
    font-size: 16px;
    color: #0b0c10;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* New Fines Layout */
.fines-new-layout {
    display: flex;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.fines-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fines-pill {
    background-color: var(--bg-lavender, #F8F4FF);
    color: #5d2ab7;
    font-size: 14px;
    font-weight: 800;
    padding: 24px 32px;
    border-radius: 20px;
}

.fines-card-wrapper {
    border: 1px solid #eee;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}

.fines-cell {
    padding: 28px 32px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #111;
    min-height: 72px;
    display: flex;
    align-items: center;
}

.fines-cell.fw-bold {
    font-weight: 800;
}

.fines-cell.border-none {
    border-bottom: none;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tip-card-new {
    border: 1px solid var(--border-color, #E2E6EC);
    border-radius: 24px;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background-color: #ffffff;
}

.tip-icon {
    margin-bottom: 8px;
    color: #111;
}

.tip-card-new h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0b0c10;
    margin: 0;
    line-height: 1.4;
}

.tip-card-new p {
    font-size: 15px;
    color: #4a4a58;
    margin: 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-pill {
    background-color: var(--bg-lavender, #F8F4FF);
    padding: 24px 32px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: #0b0c10;
    transition: transform 0.2s ease;
}

.faq-arrow {
    color: #8c8c9a;
    font-size: 20px;
    font-weight: 400;
    user-select: none;
}

.faq-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* States Grid */
.states-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 40px auto 60px auto;
}

.state-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border: 1px solid var(--border-color, #E2E6EC);
    border-radius: 40px;
    /* Big pill shape */
    color: #111;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.state-pill:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.state-pill svg {
    color: #111;
}

/* Author Block */
.author-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 80px auto 0 auto;
    padding-top: 40px;
}

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

.author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

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

.author-label {
    font-size: 12px;
    color: #8c8c9a;
    font-weight: 500;
}

.author-name {
    font-size: 16px;
    font-weight: 800;
    color: #0b0c10;
}

.author-role {
    font-size: 13px;
    color: #8c8c9a;
}

.author-divider {
    width: 1px;
    height: 48px;
    background-color: var(--border-color, #E2E6EC);
}

/* Footer Re-design */
.site-footer {
    background-color: #111111;
    color: #fff;
    padding: 80px 0 60px 0;
}

.footer-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col ul li a {
    color: #8c8c9a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Footer Middle Accordions */
.footer-accordions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 60px;
}

.footer-accordion-item {
    background-color: rgba(255, 255, 255, 0.03);
    /* Subtle dark background */
    padding: 24px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: #555;
    transition: all 0.2s ease;
}

.footer-accordion-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
    color: #8c8c9a;
}

.footer-accordion-content {
    display: none;
    padding: 0 24px 24px 24px;
    background-color: rgba(255, 255, 255, 0.03);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    margin-top: -8px;
    margin-bottom: 8px;
}

.footer-accordion-content.show {
    display: block;
}

.footer-accordion-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-accordion-content ul li a {
    color: #8c8c9a;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-accordion-content ul li a:hover {
    color: #fff;
}


/* Footer Bottom Layout */
.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
}

.footer-company-info {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.footer-company-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-company-info p {
    color: #8c8c9a;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-legal-text p {
    font-size: 11px;
    color: #555;
    margin-top: 24px;
    margin-bottom: 8px;
}

.footer-interactions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.partner-badges {
    display: flex;
    gap: 12px;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 32px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 12px;
}

@media (max-width: 992px) {
        .new-navbar-inner{
    justify-content: center; /* horizontal center */

    }
    .navbar-inner {
        padding: 12px 16px;
        width: calc(100% - 16px);
        margin: 0 auto;
    }

    .dark-logo-img {
        height: 24px; /* Small size for all mobiles */
    }

    .new-navbar-inner {
        padding: 12px 0;
    }

    .nav-links,
    .nav-right .nav-link,
    .nav-right .nav-link-box {
        display: none !important;
    }

    .mega-menu {
        display: none !important;
    }

    .nav-right {
        gap: 12px;
    }

    .hero-section {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
        width: 100%;
    }

    .badge {
        justify-content: center;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        width: 100%;
    }

    .hero-title br {
        display: none;
    }

    .hero-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        gap: 12px;
        order: 4;
    }

    .hero-card {
        width: 100%;
        max-width: none;
        padding: 20px 16px;
    }

    .hero-card p {
        font-size: 13px;
    }

    .hero-form-container {
        width: 100%;
        max-width: 100%;
        order: 3;
    }

    .hero-content {
        display: contents;
    }

    .badge {
        order: 1;
    }

    .hero-title {
        order: 2;
    }

    .steps-grid-3,
    .steps-grid-2,
    .steps-grid-2-new,
    .benefits-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .fines-new-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .fines-column {
        width: 100%;
        min-width: 0;
    }

    .states-grid {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .author-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        width: 100%;
    }

    .footer-grid-4 {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
}


@media (max-width: 576px) {
        .new-navbar-inner{
    justify-content: center; /* horizontal center */

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

    .dark-logo-img {
        height: 24px; /* Small size for mobile */
    }

    .hero-cards {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 10px;
    }

    .quick-links-bg {
        padding: 24px;
        width: 100%;
    }

    .quick-links-title {
        font-size: 22px;
    }

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

    .step-card-new,
    .fuzzy-card,
    .lavender-card {
        padding: 24px;
        width: 100%;
    }

    .states-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .footer-grid-4 {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .footer-bottom-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-interactions {
        align-items: center;
        width: 100%;
    }

    .modal-card {
        padding: 32px 20px;
        width: 95%;
        margin: 0 auto;
    }

    .modal-title {
        font-size: 20px;
    }

    .otp-inputs-wrapper {
        justify-content: center;
        gap: 6px;
    }

    .otp-input {
        width: 40px;
        height: 50px;
        font-size: 18px;
        border-radius: 8px;
    }
}


@media (max-width: 360px) {
        .new-navbar-inner{
    justify-content: center; /* horizontal center */

    }
    .otp-inputs-wrapper {
        gap: 4px;
    }

    .otp-input {
        width: 36px;
        height: 48px;
        font-size: 16px;
    }

    .modal-card {
        padding: 24px 16px;
    }
}


/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
}

.modal-card {
    background-color: var(--white);
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    position: relative;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

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

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 28px;
    color: #1c1c1c;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    z-index: 10;
}

.modal-title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    margin-bottom: 12px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 32px;
}

.mobile-input-wrapper {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid #E2E6EC;
    border-radius: 12px;
    padding: 0 20px;
    height: 56px;
    margin-bottom: 24px;
    transition: border-color 0.2s ease;
}

.mobile-input-wrapper:focus-within {
    border-color: var(--primary-color);
}

.country-code {
    font-size: 16px;
    font-weight: 700;
    color: #1c1c1c;
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.mobile-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    color: #1c1c1c;
    background: transparent;
}

.mobile-input-wrapper.error {
    border-color: #E53E3E;
    background-color: #FFF5F5;
}

.error-msg {
    color: #E53E3E;
    font-size: 13px;
    font-weight: 700;
    margin-top: -12px;
    margin-bottom: 20px;
    text-align: center;
    display: none;
    animation: fadeInError 0.2s ease;
}

.error-msg.show {
    display: block;
}

@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

.mobile-input::placeholder {
    color: #cbd5e0;
}


.btn-continue {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-continue:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-continue:active {
    transform: scale(0.99);
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.modal-footer i {
    color: #8D49E3;
    font-size: 16px;
}

/* OTP Modal Specific Styles */
.modal-header-with-back {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.back-btn {
    background: #F0F2F5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111;
    transition: background 0.2s ease;
}

.back-btn:hover {
    background: #E2E6EC;
}

.otp-inputs-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 24px;
    width: 100%;
}

.otp-input {
    flex: 1;
    min-width: 0;
    /* Allow shrinking below content size */
    max-width: 54px;
    height: 64px;
    border: 1px solid #E2E6EC;
    border-radius: 12px;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    outline: none;
    transition: all 0.2s ease;
}

.otp-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(141, 73, 227, 0.1);
    background-color: var(--bg-lavender);
}

.otp-input.error {
    border-color: #E53E3E;
    background-color: #FFF5F5;
}


@media (max-width: 576px) {
        .new-navbar-inner{
    justify-content: center; /* horizontal center */

    }
    .otp-input {
        height: 54px;
        font-size: 20px;
        border-radius: 8px;
    }

    .otp-inputs-wrapper {
        gap: 6px;
    }
}

@media (max-width: 360px) {
        .new-navbar-inner{
    justify-content: center; /* horizontal center */

    }
    .otp-inputs-wrapper {
        gap: 4px;
    }
}

.resend-timer {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.resend-timer button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.resend-timer button:disabled {
    color: #cbd5e0;
    cursor: not-allowed;
}

#verify-otp-btn {
    margin-bottom: 8px;
}

/* Success Modal Styles */
.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #F0FFF4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: #48BB78;
    font-size: 48px;
    animation: iconPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes iconPop {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.success-box {
    background-color: var(--bg-lavender);
    border: 1px solid #E2D3FF;
    border-radius: 16px;
    padding: 24px;
    margin-top: 32px;
    text-align: center;
}

.success-box h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Benefits Circles Section */
.benefits-circles-section {
    padding: 60px 0;
    text-align: center;
}

.benefits-circles-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.benefit-circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
}

.circle-bg {
    width: 130px;
    height: 130px;
    background-color: #F8F9FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.circle-bg:hover {
    transform: translateY(-5px);
    background-color: #f0f3ff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.circle-bg i {
    font-size: 48px;
    color: #4A4A58;
}

.benefit-circle-card p {
    font-size: 16px;
    font-weight: 700;
    color: #11142D;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .new-navbar-inner{
    justify-content: center; /* horizontal center */

    }
    .benefits-circles-grid {
        gap: 32px;
    }

    .benefit-circle-card {
        width: 45%;
    }

    .dark-logo-img {
        height: 24px; /* Small size for mobile resolutions */
    }

    .circle-bg {
        width: 100px;
        height: 100px;
    }

    .circle-bg i {
        font-size: 36px;
    }
}

/* New Dark Navbar Styles */
.new-dark-navbar {
    background-color: white;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.new-navbar-inner {
    padding: 16px 0;
    display: flex;
    align-items: center;

}

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

.dark-logo-img {
    height: 35px; /* Increased for better visibility */
    width: auto;
    display: block;
}
#send-otp-btn{
    display:none;
}

#recaptcha-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.name-input-wrapper{
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid #E2E6EC;
    border-radius: 12px;
    padding: 0 20px;
    height: 56px;
    margin-bottom: 24px;
    transition: border-color 0.2s ease;
}

.name-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    color: #1c1c1c;
    background: transparent;
}
.name-input::placeholder {
    color: #cbd5e0;
}
.name-input-wrapper:focus-within {
    border-color: var(--primary-color);
}
.name-input-wrapper.error .name-input {
    border-color: red;
}