/* ═══════════════════════════════════════════════
   KERALA VISION – CONNECT & WIN | style.css
   ═══════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────── */
:root {
    --red: #bc0610;
    --blue: #16106a;
    --red2: #e53935;
    --transition: .2s ease;
}

/* ── Base ────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #fff;
    margin: 0;
    color: #1f2937;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}

.d-float-center {
    display: flex !important;
    align-items: center;
    column-gap: 5px;
    row-gap: 2px;
    flex-flow: wrap;
}

/* ── Navbar ──────────────────────────────────── */
.kv-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    padding: .75rem 0;
    transition: padding var(--transition), box-shadow var(--transition);
}

.kv-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}

.kv-nav-brand {
    text-decoration: none;
}

.kv-logo {
    height: 48px;
    width: auto;
    display: block;
}

.kv-toggler {
    background: none;
    border: none;
    padding: .4rem;
    cursor: pointer;
}

.kv-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: .25rem;
    flex-wrap: wrap;
}

.kv-nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: .95rem;
    padding: .45rem .75rem;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.kv-nav-link:hover {
    color: var(--red);
    background: rgba(188, 6, 16, .06);
}

.kv-nav-btn {
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    padding: .5rem 1.25rem;
    border-radius: 50px;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 14px rgba(188, 6, 16, .3);
    margin-left: .5rem;
}

.kv-nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(188, 6, 16, .4);
    color: #fff;
}

@media (max-width: 991px) {
    .kv-nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: .75rem 0;
    }

    .kv-nav-btn {
        margin-left: 0;
    }
}

/* ── Hero Banner ─────────────────────────────── */
.hero-banner {
    position: relative;
    width: 100%;
    max-height: 680px;
    overflow: hidden;
    line-height: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 30, .4) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content-wrap {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    text-align: right;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #bc0610 0%, #ffe600 100%);
    background-size: 200% auto;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.95rem;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(188, 6, 16, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: energy-pulse 2s infinite ease-in-out;
    position: relative;
    overflow: hidden;
}

.hero-cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(25deg);
    animation: shine-sweep 3s infinite;
}

@keyframes shine-sweep {
    0% {
        left: -100%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes energy-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(188, 6, 16, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(255, 230, 0, 0.7);
    }
}

.hero-cta-btn:hover {
    transform: translateY(-5px) scale(1.1) !important;
    animation-play-state: paused;
    box-shadow: 0 15px 45px rgba(188, 6, 16, 0.6);
    background-position: right center;
}

.hero-cta-btn i {
    font-size: 1.2rem;
    background: #fff;
    color: var(--red);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.hero-cta-btn:hover i {
    transform: rotate(360deg) scale(1.2);
    background: #ffe600;
}

@media (max-width: 991px) {
    .hero-content-wrap {
        top: 20px;
        right: 20px;
    }

    .hero-cta-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .hero-content-wrap {
        display: none;
    }

}

/* ── Animations ──────────────────────────────── */
@keyframes float {

    0%,
    100% {
        transform: translateY(2rem)
    }

    50% {
        transform: translateY(.5rem)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(-6px)
    }

    75% {
        transform: translateX(6px)
    }
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes pulse-b {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 194, 255, .5)
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 45px rgba(0, 194, 255, .8)
    }
}

.spin-icon {
    display: inline-block;
    animation: spin .8s linear infinite;
}

.shake {
    animation: shake .5s ease;
}

/* ── Connection Form Section ─────────────────── */
.cf-section {
    background: linear-gradient(160deg, #f8f9ff 0%, #fff5f5 50%, #f0f4ff 100%);
    padding: 0 0 80px;
    position: relative;
    overflow: hidden;
}

/* Ticker */
.cf-ticker-wrap {
    background: linear-gradient(90deg, var(--red), var(--blue));
    color: #fff;
    display: flex;
    align-items: center;
    height: 42px;
    overflow: hidden;
    margin-bottom: 56px;
}

.cf-ticker-label {
    background: rgba(0, 0, 0, .28);
    padding: 0 16px;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.cf-ticker-track {
    overflow: hidden;
    flex: 1;
}

.cf-ticker-inner {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 32s linear infinite;
    font-size: .85rem;
    font-weight: 500;
    padding-left: 24px;
}

/* Header */
.cf-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(188, 6, 16, .08);
    color: var(--red);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 1rem;
}

.cf-title {
    font-size: clamp(1.8rem, 5vw, 2.75rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: .75rem;
    line-height: 1.3;
}

.cf-title-accent {
    color: var(--red);
}

.cf-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Left panel */
.cf-left-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Prize card */
.cf-prize-card {
    background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    color: #fff;
    box-shadow: 0 10px 40px rgba(188, 6, 16, .25);
    position: relative;
    overflow: hidden;
}

.cf-prize-card::after {
    content: '🏆';
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 5rem;
    opacity: .1;
}

.cf-prize-badge-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cf-prize-badge {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .2);
    border: 2px solid rgba(255, 255, 255, .4);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cf-prize-badge i {
    font-size: 1.4rem;
    color: #ffe600;
}

.cf-prize-badge span {
    font-size: .7rem;
    font-weight: 900;
    color: #ffe600;
    letter-spacing: 1px;
}

.cf-prize-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

.cf-prize-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffe600;
    margin: 0;
    line-height: 1.1;
}

.cf-prize-sub {
    font-size: .9rem;
    color: rgba(255, 255, 255, .85);
    margin: 0;
    line-height: 1.5;
}

/* Features */
.cf-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cf-feature-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .85rem 1rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(188, 6, 16, .08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    transition: transform var(--transition), box-shadow var(--transition);
}

.cf-feature-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(188, 6, 16, .1);
}

.cf-feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--red), var(--red2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.cf-feature-item strong {
    display: block;
    font-size: .9rem;
    color: #1a1a2e;
    font-weight: 700;
}

.cf-feature-item p {
    font-size: .8rem;
    color: #6b7280;
    margin: 2px 0 0;
    line-height: 1.4;
}

/* Trust bar */
.cf-trust-bar {
    background: #1a1a2e;
    border-radius: 16px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
    margin-top: auto;
}

.cf-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cf-trust-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffe600;
    line-height: 1;
}

.cf-trust-unit {
    font-size: .9rem;
    font-weight: 800;
    color: #ffe600;
}

.cf-trust-label {
    font-size: .7rem;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .5px;
    margin-top: 2px;
}

.cf-trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
}

/* Form card */
.cf-form-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    padding: 2.5rem;
    /* border: 1px solid rgba(188, 6, 16, .06); */
    height: 100%;
}

.cf-form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.cf-form-header-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--red), var(--red2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
}

.cf-form-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.cf-form-header p {
    font-size: .82rem;
    color: #9ca3af;
    margin: 2px 0 0;
}

.req-star {
    color: var(--red);
}

.cf-optional {
    color: #9ca3af;
    font-weight: 400;
    font-size: .82rem;
}

/* Inputs */
.cf-label {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    font-weight: 700;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.cf-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.cf-input-icon {
    position: absolute;
    left: 14px;
    color: var(--red);
    font-size: 1.05rem;
    pointer-events: none;
    z-index: 2;
}

.cf-input {
    width: 100%;
    height: 50px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0 14px 0 42px;
    font-size: .95rem;
    color: #1f2937;
    background: #fafafa;
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.cf-input:focus {
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(188, 6, 16, .08);
}

.cf-prefix {
    position: absolute;
    left: 0;
    height: 100%;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: #374151;
    min-width: 54px;
    z-index: 2;
    flex-shrink: 0;
}

.cf-input-prefixed {
    padding-left: 64px;
}

.cf-notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(188, 6, 16, .04);
    border: 1px solid rgba(188, 6, 16, .12);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: .8rem;
    color: #6b7280;
    line-height: 1.5;
}

.cf-notice i {
    color: #22c55e;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.cf-notice a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.title-coonection {
    font-size: clamp(1.1rem, 5.5vw, 1.85rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.cf-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(188, 6, 16, .3);
    transition: transform var(--transition), box-shadow var(--transition);
}

.cf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(188, 6, 16, .4);
}

/* Toast */
.cf-toast {
    position: fixed;
    bottom: -130px;
    right: 24px;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
    border-left: 4px solid #22c55e;
    z-index: 9999;
    max-width: 340px;
    transition: bottom .5s cubic-bezier(.34, 1.56, .64, 1);
}

.cf-toast.show {
    bottom: 30px;
}

.cf-toast>i {
    font-size: 1.5rem;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.cf-toast strong {
    display: block;
    font-size: .95rem;
    color: #1a1a2e;
    font-weight: 800;
}

.cf-toast p {
    font-size: .8rem;
    color: #6b7280;
    margin: 2px 0 0;
    line-height: 1.4;
}

/* Form responsive */
@media (max-width:767px) {
    .cf-section .row.g-5 {
        flex-direction: column-reverse;
    }

    .cf-form-card {
        padding: 1.5rem;
    }

    .cf-trust-bar {
        padding: .75rem .5rem;
    }

    .cf-trust-num {
        font-size: 1.2rem;
    }
}

/* ── Promo Banner ─────────────────────────────── */
.promo-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3a0068 0%, #5e00a8 40%, #8b00d4 70%, #4a0090 100%);
    padding: 60px 0;
}

.promo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.promo-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .18;
    display: block;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.promo-badge-circle {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, #00c2ff 0%, #006fd6 100%);
    border: 4px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: .5rem;
    box-shadow: 0 0 30px rgba(0, 194, 255, .5);
    animation: pulse-b 2.5s ease-in-out infinite;
}

.badge-line1 {
    font-size: .65rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
}

.badge-line2 {
    font-size: 1rem;
    font-weight: 900;
    color: #ffe600;
    line-height: 1.1;
}

.badge-line3 {
    font-size: .55rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
    line-height: 1.2;
}

.badge-line4 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffe600;
    line-height: 1;
}

.promo-headline {
    flex: 1;
}

.promo-sub1 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.promo-main {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #ffe600;
    margin: 0;
    line-height: 1;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, .3);
}

.promo-info {
    color: #fff;
}

.promo-switch {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: #f0e6ff;
}

.promo-switch strong {
    color: #ffe600;
    font-size: 1.35rem;
    font-weight: 800;
}

.welcome-plan-card {
    background: linear-gradient(90deg, #e91e63 0%, #c2185b 100%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .6rem 1.25rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, .4);
    max-width: 480px;
}

.welcome-plan-label {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: #fff;
    border-radius: 40px;
    padding: .4rem .75rem;
    flex-shrink: 0;
}

.welcome-plan-label i {
    color: #e91e63;
    font-size: 1.2rem;
}

.welcome-plan-label span {
    font-size: .65rem;
    font-weight: 900;
    color: #c2185b;
    line-height: 1.1;
    text-transform: uppercase;
}

.welcome-plan-details {
    flex: 1;
}

.plan-avail {
    font-size: .78rem;
    color: #fce4ec;
    margin: 0;
    line-height: 1.3;
}

.plan-price {
    font-size: .95rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.plan-price strong {
    color: #ffe600;
    font-size: 1.1rem;
    font-weight: 800;
}

.plan-price sup {
    font-size: .65rem;
    font-weight: 600;
}

.promo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.25rem;
    background: linear-gradient(135deg, #ffe600, #ffb300);
    color: #2d0060;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50px;
    padding: .7rem 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 230, 0, .35);
    transition: transform var(--transition), box-shadow var(--transition);
}

.promo-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 230, 0, .55);
    color: #1a0040;
}

@media (max-width:767px) {
    .promo-banner {
        padding: 40px 0;
    }

    .promo-badge {
        justify-content: center;
        text-align: center;
    }

    .promo-headline {
        width: 100%;
        text-align: center;
    }

    .promo-info {
        text-align: center;
    }

    .welcome-plan-card {
        flex-direction: column;
        border-radius: 16px;
        text-align: center;
        padding: 1rem;
        max-width: 100%;
    }

    .promo-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Footer ───────────────────────────────────── */
.footer-custom {
    background: #1a0033;
    position: relative;
    overflow: hidden;
    padding-top: 0rem;
    color: #fff;
}

.footer-body {
    position: relative;
    z-index: 2;
    padding-bottom: 5rem;
}

.footer-info {
    position: relative;
    margin-bottom: 2.5rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0px 4px 10px rgba(255, 255, 255, 0.2));
}

.footer-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: .75rem;
}

.footer-subtext {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, .8);
    max-width: 480px;
}

.footer-offices {
    margin-top: 2rem;
}

.footer-office {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.footer-office-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .1);
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    flex-shrink: 0;
}

.footer-office-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
}

.footer-office-title i {
    color: var(--red2);
    font-size: 1.3rem;
}

.footer-office-title h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0;
}

.footer-office-detail p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    margin: 0;
}

.footer-office-divider {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

/* Bottom bar */
.footer-bottom {
    background: #0d001a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    padding: 0rem 0rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: .85rem;
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-terms-link {
    color: #e74c3c !important;
}

.footer-bottom-social {
    display: flex;
    gap: .85rem;
}

.footer-bottom-social a {
    color: #e5e7eb;
    font-size: 1.15rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom-social a:hover {
    color: #fff;
}

.footer-bottom-copy p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    margin: 0;
}

/* Footer mobile */
@media (max-width:767px) {

    .footer-custom::before,
    .footer-custom::after {
        display: none;
    }

    .footer-lady {
        position: relative;
        top: 0;
        right: 0;
        width: 200px;
        margin: 0 auto 1.5rem;
    }

    .footer-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-subtext {
        text-align: center;
    }

    .footer-office {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-office-title {
        justify-content: center;
    }

    .footer-office-divider {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .15);
        padding-top: 1.5rem;
    }

    .footer-bottom-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .footer-bottom-social {
        justify-content: center;
    }

    .footer-bottom-copy {
        width: 100%;
        text-align: center;
    }
}

/* Auto Adjustable Global Fonts */
html {
    font-size: 16px;
}

@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 12px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

/* ── Mega Prizes ─────────────────────────────── */
.mega-prizes-section {
    background: linear-gradient(135deg, #2a0845 0%, #1a0033 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.mega-prizes-badge {
    letter-spacing: 1px;
}

.mega-prizes-heading {
    font-size: clamp(2rem, 6vw, 3.2rem);
    background: linear-gradient(to right, #ffe600, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(255, 230, 0, 0.25);
    letter-spacing: 1px;
}

.mega-prizes-subtext {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.prize-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-wrap {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
}

.icon-shadow-1 {
    box-shadow: 0 10px 20px rgba(253, 160, 133, 0.3);
}

.icon-shadow-2 {
    box-shadow: 0 10px 20px rgba(132, 250, 176, 0.3);
}

.icon-shadow-3 {
    box-shadow: 0 10px 20px rgba(161, 140, 209, 0.3);
}

.icon-shadow-4 {
    box-shadow: 0 10px 20px rgba(255, 154, 158, 0.3);
}

.icon-shadow-5 {
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
}

.icon-shadow-6 {
    box-shadow: 0 10px 20px rgba(67, 233, 123, 0.3);
}

.icon-shadow-7 {
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

.prize-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    border-radius: 50px;
}

.prize-title {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: #ffe600 !important;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-office-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-office-icon {
    width: 48px;
    height: 48px;
    background: rgba(220, 53, 69, 0.15);
    border-radius: 12px;
    color: #ff4757;
}

.footer-contact-text {
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.mega-prizes-more {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.social-btn:hover {
    background: var(--red) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(188, 6, 16, 0.4);
}

/* New Mega Prizes Background Effects */
.mp-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 215, 0, 0.15) 1.5px, transparent 1.5px),
        radial-gradient(rgba(255, 215, 0, 0.1) 1.5px, transparent 1.5px);
    background-position: 0 0, 25px 25px;
    background-size: 50px 50px;
    opacity: 0.6;
    z-index: 0;
}

.mp-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
    animation: float 8s ease-in-out infinite alternate;
}

.mp-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 230, 0, 0.15);
    top: -200px;
    left: -150px;
}

.mp-glow-2 {
    width: 450px;
    height: 450px;
    background: rgba(255, 0, 100, 0.12);
    bottom: 0px;
    right: 0px;
    animation-delay: -4s;
}

.mp-glow-3 {
    /* width: 400px; */
    height: 400px;
    background: rgba(0, 194, 255, 0.1);
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
}

/* Prize Collage Layout */
.prize-collage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .prize-collage {
        grid-template-columns: repeat(2, 1fr);
    }

    .prize-item-tv {
        grid-column: span 2;
    }

    .prize-item-scooty {
        grid-column: span 2;
    }

    .prize-item-ac {
        grid-column: span 2;
    }
}

@media (min-width: 992px) {
    .prize-collage {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(2, minmax(180px, auto));
        gap: 2rem;
    }

    .prize-item-tv {
        grid-column: span 4;
        grid-row: span 2;
    }

    .prize-item-fridge {
        grid-column: span 3;
        grid-row: span 2;
    }

    .prize-item-scooty {
        grid-column: span 5;
        grid-row: span 1;
    }

    .prize-item-ac {
        grid-column: span 5;
        grid-row: span 1;
    }

    .prize-item-solar {
        grid-column: span 4;
    }

    .prize-item-mixer {
        grid-column: span 4;
    }

    .prize-item-washing {
        grid-column: span 4;
    }
}

.prize-collage .prize-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.prize-collage .prize-item-tv .prize-card {
    background: linear-gradient(145deg, rgba(255, 230, 0, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 230, 0, 0.4);
}

.prize-collage .prize-item-scooty .prize-card {
    background: linear-gradient(145deg, rgba(255, 0, 100, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 0, 100, 0.4);
}


/* True Collage */
.true-collage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    padding: 2rem 0;
}

.tc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1 1 200px;
    max-width: 250px;
}

.tc-scooty {
    flex: 2 1 100%;
    max-width: 100%;
    order: -1;
    margin-bottom: 2rem;
}

.tc-item:hover {
    transform: translateY(-15px) scale(1.08);
}

.tc-item .tc-img {
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 30px rgba(255, 230, 0, 0.2));
    object-fit: contain;
    margin-bottom: 1.5rem;
    width: auto;
    position: relative;
    z-index: 1;
}

.tc-title {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    font-size: 1.3rem;
    text-align: center;
}

/* Custom sizes for true collage to make it look dynamic */
.tc-tv .tc-img {
    height: 180px;
}

.tc-fridge .tc-img {
    height: 240px;
}

.tc-scooty .tc-img {
    height: 350px;
}

.tc-ac .tc-img {
    height: 120px;
}

.tc-solar .tc-img {
    height: 180px;
}

.tc-mixer .tc-img {
    height: 160px;
}

.tc-washing .tc-img {
    height: 200px;
}

@media (min-width: 992px) {
    .true-collage {
        gap: 3rem;
        align-items: center;
    }

    .tc-scooty {
        flex: 2 1 400px;
        max-width: 500px;
        order: 0;
        margin-bottom: 0;
    }
}


/* Poster Layout Enhancements */
.tc-item {
    position: relative;
}

.tc-item::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #ffde00;
    /* Yellow */
    border-radius: 50%;
    z-index: 0;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px rgba(255, 222, 0, 0.4);
    opacity: 0;
    transition: transform 0.3s ease;
}

.tc-tv::before,
.tc-fridge::before,
.tc-ac::before,
.tc-solar::before,
.tc-scooty::before,
.tc-mixer::before,
.tc-washing::before {
    opacity: 1;
}

.tc-tv::before {
    width: 170px;
    height: 170px;
}

.tc-fridge::before {
    width: 220px;
    height: 220px;
}

.tc-ac::before {
    width: 140px;
    height: 140px;
    top: 40%;
}

.tc-solar::before {
    width: 160px;
    height: 160px;
}

.tc-scooty::before {
    width: 300px;
    height: 300px;
    top: 45%;
}

.tc-mixer::before {
    width: 150px;
    height: 150px;
}

.tc-washing::before {
    width: 180px;
    height: 180px;
}

/* Dynamic Tilts */
.tc-tv .tc-img {
    transform: rotate(-8deg);
}

.tc-fridge .tc-img {
    transform: rotate(5deg);
}

.tc-ac .tc-img {
    transform: rotate(-4deg);
    height: 180px !important;
}

.tc-solar .tc-img {
    transform: rotate(10deg);
}

.tc-scooty .tc-img {
    transform: rotate(-2deg);
}

.tc-mixer .tc-img {
    transform: rotate(-8deg);
}

.tc-washing .tc-img {
    transform: rotate(4deg);
}

.tc-item:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
}

/* UI/UX Improvements for Form and Dates */

/* 1. Date Pulse Indicator */
.promo-date-badge {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.5) !important;
}

.promo-date-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shineBadge 3s infinite;
}

@keyframes shineBadge {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #ffde00;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(255, 222, 0, 0.7);
    animation: pulsingDot 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulsingDot {
    to {
        box-shadow: 0 0 0 10px rgba(255, 222, 0, 0);
    }
}

/* 2. Form Section Highlight & Glow */
.form-section-highlight {
    /* background: linear-gradient(180deg, #16106a 0%, #0d0a42 100%); */
    position: relative;
}

.form-section-highlight::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse, rgba(255, 222, 0, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.form-section-highlight .container {
    position: relative;
    z-index: 2;
}

@keyframes borderGlow {
    from {
        box-shadow: 0 0 20px rgba(255, 222, 0, 0.1), inset 0 0 10px rgba(255, 222, 0, 0.05);
    }

    to {
        box-shadow: 0 0 40px rgba(255, 222, 0, 0.3), inset 0 0 20px rgba(255, 222, 0, 0.1);
        border-color: rgba(255, 222, 0, 0.8);
    }
}

/* 3. Trust Badge */
.trust-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(4px);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* 4. Animated Submit Button */
.cf-submit-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 222, 0, 0.4);
}

.cf-submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    animation: shineButton 4s infinite;
}

@keyframes shineButton {
    0% {
        left: -100%;
    }

    15% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}