@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f7f6;
    color: #333;
    overflow-x: hidden;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* LOADER */

#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #f4f7f6;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 5px solid rgba(255,255,255,0.1);
    border-top: 5px solid #7c4dff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* HEADER */

.main-header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1280px;
    z-index: 999;
    padding: 10px 30px;
    /* backdrop-filter: blur(25px) saturate(180%); */
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(31, 38, 135, 0.06), 
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.social-icons {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.main-header .logo img {
    width: 170px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-header .logo img:hover {
    transform: scale(1.04);
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 77, 255, 0.04);
    border-radius: 50%;
    color: #7c4dff;
    margin: 0 5px;
    border: 1px solid rgba(124, 77, 255, 0.724);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.social-icons a:hover {
    background: linear-gradient(135deg, rgb(0, 210, 255), #7c4dff);
    color: #fff;
    /* transform: translateY(-3px) scale(1.1); */
    box-shadow: 0 8px 20px rgba(124, 77, 255, 0.25);
    border: 1px solid rgb(0, 210, 255);
    text-decoration: none !important;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #00d2ff, #7c4dff) !important;
    color: #fff !important;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(124, 77, 255, 0.35);
    border-color: transparent !important;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.header-right .phone-btn {
    background: rgba(124, 77, 255, 0.04);
    border: 1px solid rgba(124, 77, 255, 0.08);
    padding: 8px 18px;
    border-radius: 30px;
    color: #503d99;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-right .phone-btn i {
    color: #7c4dff;
    transition: transform 0.3s ease;
}

.header-right .phone-btn:hover {
    background: rgba(124, 77, 255, 0.08);
    transform: translateY(-2px);
    color: #7c4dff;
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.08);
}

.header-right .phone-btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* RESPONSIVE HEADER */
@media (max-width: 991px) {
    .main-header {
        top: 10px;
        width: calc(100% - 30px);
        padding: 8px 20px;
    }
    .header-wrapper {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .social-icons {
        display: none !important;
    }
    .main-header .logo img {
        width: 150px;
    }
    .main-header .logo h3 {
        margin: 0;
        display: inline-block;
        line-height: 1;
    }
}

@media (max-width: 768px) {
    .header-right span {
        display: none !important;
    }
    .main-header .logo img {
        width: 140px;
    }
    .header-btn {
        padding: 8px 18px !important;
        font-size: 13px !important;
    }
    .header-right .phone-btn {
        width: 38px;
        height: 38px;
        padding: 0 !important;
        justify-content: center;
        border-radius: 50% !important;
    }
}

@media (max-width: 480px) {
    .main-header {
        top: 8px;
        width: calc(100% - 20px);
        padding: 6px 12px;
    }
    .main-header .logo img {
        width: 125px;
    }
    .header-right {
        gap: 10px;
    }
    .header-btn {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }
    .header-right .phone-btn {
        width: 32px;
        height: 32px;
    }
    .footer .footer-brand img{
        width: 150px !important;
    }
}

@media (max-width: 360px) {
    .main-header {
        top: 6px;
        width: calc(100% - 16px);
        padding: 6px 10px;
    }
  
    .header-right {
        gap: 6px;
    }
    .header-btn {
        padding: 6px 10px !important;
        font-size: 10px !important;
    }
    .header-right .phone-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

.btn-main {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg,#ff9800,#ff5722);

    color: #fff;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(124, 77, 255, 0.35), 0 4px 10px rgba(0, 242, 254, 0.2);
    z-index: 1;
}


.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-main:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(124, 77, 255, 0.55), 0 6px 20px rgba(0, 242, 254, 0.35);
    color: #fff;
}

.btn-banner-left {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    background: rgb(1, 28, 60);
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(124, 77, 255, 0.35), 0 4px 10px rgba(0, 242, 254, 0.2);
    z-index: 1;
}
.btn-banner-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

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

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

/* THREE DISTINCT PREMIUM HIGH-CONTRAST PRICING BUTTON GRADIENTS */

/* 1. Blue Card - Starter Package (Vibrant Cyan-Blue Gradient) */
.blue-card .btn-main {
    background: linear-gradient(135deg, #00d2ff 0%, #0072ff 100%) !important;
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.35), 0 4px 10px rgba(0, 114, 255, 0.2) !important;
}

.blue-card .btn-main:hover {
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.55), 0 6px 20px rgba(0, 114, 255, 0.35) !important;
}

/* 2. Featured Card - Business Package (Majestic Deep Purple to Bright Magenta/Pink Gradient) */
.featured-card .btn-main {
    background: linear-gradient(135deg, #7c4dff 0%, #ff007f 100%) !important;
    box-shadow: 0 8px 25px rgba(255, 0, 127, 0.35), 0 4px 10px rgba(124, 77, 255, 0.2) !important;
}

.featured-card .btn-main:hover {
    box-shadow: 0 15px 35px rgba(255, 0, 127, 0.55), 0 6px 20px rgba(124, 77, 255, 0.35) !important;
}

/* 3. Orange Card - Social Media Package (Vibrant Sunset Amber-Orange to Hot Coral Gradient) */
.orange-card .btn-main {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%) !important;
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.35), 0 4px 10px rgba(255, 152, 0, 0.2) !important;
}

.orange-card .btn-main:hover {
    box-shadow: 0 15px 35px rgba(255, 87, 34, 0.55), 0 6px 20px rgba(255, 152, 0, 0.35) !important;
}

/* PULSING GLOW ANIMATION FOR KEY CTA BUTTONS */
.hero-section .btn-main,
.contact-form-box .btn-main {
    animation: btnGlowPulse 2.5s infinite;
}

@keyframes btnGlowPulse {
    0% {
        box-shadow: 0 8px 25px rgba(124, 77, 255, 0.35), 0 0 0 0 rgba(124, 77, 255, 0.4);
    }
    70% {
        box-shadow: 0 8px 25px rgba(124, 77, 255, 0.35), 0 0 0 12px rgba(124, 77, 255, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(124, 77, 255, 0.35), 0 0 0 0 rgba(124, 77, 255, 0);
    }
}

.btn-outline-custom {
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid #7c4dff;
    color: #7c4dff;
    font-weight: 600;
    text-decoration: none;
    transition: .4s;
}

.btn-outline-custom:hover {
    background: #7c4dff;
    color: #fff;
}

/* HERO */

.hero-section {
    background: radial-gradient(circle at 80% 20%, #7c95ff 0%, #617dee 55%, #4762db 100%);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .hero-section {
        padding: 105px 20px 70px;
        text-align: center;
    }
    .hero-badge {
        margin-bottom: 20px;
    }
    .hero-section h1 {
        font-size: 36px;
        line-height: 1.25;
        margin-bottom: 20px;
    }
    .hero-section p {
        font-size: 16px;
        line-height: 1.6;
    }
    .hero-btns {
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }
    .hero-btns .btn-main,
    .hero-btns .btn-outline-custom {
        width: 100%;
        max-width: 290px;
        display: block;
        margin: 0 auto;
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 95px 15px 60px;
    }
    .hero-section h1 {
        font-size: 28px;
    }
    .hero-btns .btn-main,
    .hero-btns .btn-outline-custom {
        max-width: 100%;
    }
}

/* GLOWING BACKGROUND ORBS */


@keyframes morph {
    0% {
        transform: translate(0px, 0px) scale(1) rotate(0deg);
        border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
    }
    50% {
        transform: translate(50px, 30px) scale(1.1) rotate(180deg);
        border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
    }
    100% {
        transform: translate(-30px, -20px) scale(0.9) rotate(360deg);
        border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ffc64c;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffc64c;
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: pulse 1.5s infinite ease-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 50; }
    100% { transform: scale(3.5); opacity: 0; }
}

.hero-section h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #00d2ff, #7c4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section .gradient-text {
    background: linear-gradient(135deg, #fff799 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    color: #e8eeff;
    font-size: 19px;
    line-height: 1.8;
}

.hero-btns {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-section .btn-outline-custom {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.hero-section .btn-outline-custom:hover {
    background: #ffffff;
    color: #617dee;
    border-color: #ffffff;
}

.hero-image img {
    width: 100%;
    margin-top: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* GLASS CARD */

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03), inset 0 0 0 1px rgba(255,255,255,0.6);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



.glass-card:hover::after {
    opacity: 1;
}

.form-control,
.form-select {
    background: #fff;
    border: 1px solid #e1e1e1;
    height: 55px;
    color: #333;
    border-radius: 15px;
    border: 1px solid #000000;
}

textarea.form-control {
    height: auto;
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus,
.form-select:focus {
    background: #fff;
    color: #333;
    box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.2);
    border-color: #7c4dff;
}

/* SECTION */

section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 45px;
    font-weight: 800;
}

/* SERVICES */

.service-card {
    padding: 40px;
    border-radius: 30px;
    transition: .4s;
    height: 100%;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 50px;
    margin-bottom: 25px;
}

.service1 {
    background: linear-gradient(135deg,#00c6ff,#0072ff);
}

.service2 {
    background: linear-gradient(135deg,#7c4dff,#d500f9);
}

.service3 {
    background: linear-gradient(135deg,#ff9800,#ff5722);
}

.btn-service {
    margin-top: auto;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-service i {
    font-size: 13px !important;
    margin-bottom: 0 !important;
    transition: transform 0.3s ease;
}

.btn-service:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
    border-color: #fff;
}

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

.service1 .btn-service:hover {
    color: #0072ff;
}

.service2 .btn-service:hover {
    color: #7c4dff;
}

.service3 .btn-service:hover {
    color: #ff5722;
}

/* PRICING */

.pricing-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 45px 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.featured-card {
    background: linear-gradient(145deg, #181137 0%, #0d0726 100%);
    border: 1px solid rgba(124, 77, 255, 0.3);
    box-shadow: 0 20px 50px rgba(124, 77, 255, 0.2), inset 0 0 20px rgba(124, 77, 255, 0.1);
    color: #fff;
}

.featured-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(124, 77, 255, 0.35);
}

.featured-card h3 {
    color: #fff;
}

.featured-card .pricing-list li {
    color: rgba(255, 255, 255, 0.85);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d2ff, #7c4dff);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
    white-space: nowrap;
}

.blue-card {
    border: 1px solid rgba(0, 210, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.01), inset 0 4px 0 0 #00d2ff;
}

.orange-card {
    border: 1px solid rgba(255, 152, 0, 0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.01), inset 0 4px 0 0 #ff9800;
}

.price {
    font-size: 48px;
    font-weight: 900;
    margin: 25px 0;
    font-family: 'Outfit', sans-serif;
    color: #1a1a2e;
    letter-spacing: -1px;
}

.featured-card .price {
    color: #fff;
}

.pricing-list {
    list-style: none;
    padding: 0 !important;
    margin: 30px 0 auto !important;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 500;
    color: #555566;
    text-align: left;
}

.list-icon {
    font-size: 17px;
    flex-shrink: 0;
}

.icon-blue {
    color: #00d2ff;
    filter: drop-shadow(0 2px 6px rgba(0, 210, 255, 0.3));
}

.icon-featured {
    color: #00d2ff;
    filter: drop-shadow(0 2px 6px rgba(0, 210, 255, 0.4));
}

.icon-orange {
    color: #ff9800;
    filter: drop-shadow(0 2px 6px rgba(255, 152, 0, 0.3));
}

/* PREMIUM GRID MATRIX BACKGROUND FOR SECTIONS */
.services-section, .contact-section {
    background-image: radial-gradient(rgba(124, 77, 255, 0.06) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    background-color: #f4f7f6;
    border-bottom: 2px solid #00d2ff;
}

/* INTERSECTION OBSERVER ANIMATION SYSTEM */
.reveal-init {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* PRICING PERIOD TOGGLE CSS */
.pricing-toggle-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 77, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(124, 77, 255, 0.1);
}

.toggle-label {
    font-size: 15px;
    font-weight: 700;
    color: #666;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: #7c4dff;
}

.discount-badge {
    background: linear-gradient(135deg, #00d2ff, #7c4dff);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 5px;
}

.pricing-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.1);
    transition: .4s;
}

.slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

input:checked + .slider {
    background: linear-gradient(135deg, #00d2ff, #7c4dff);
}

input:checked + .slider::before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round::before {
    border-radius: 50%;
}

.price-value {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.price-period {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    margin-left: 4px;
}

.featured-card .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.contact-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #f9f5ff 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.contact-section h2 {
    color: #1a1a2e;
    font-weight: 800;
    font-size: 38px;
    margin-bottom: 30px;
}

.contact-info,
.contact-form-box {
    padding: 40px;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05) !important;
    backdrop-filter: blur(10px);
    height: 100%;
}

.contact-form-box h3 {
    color: #1a1a2e;
    font-weight: 800;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1.5px solid #1a1a2e;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #1a1a2e;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-box .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%237c4dff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 16px 12px;
}

.contact-form-box .form-select option {
    background-color: #ffffff;
    color: #1a1a2e;
}

.contact-form-box .form-control::placeholder {
    color: #9999aa;
    font-weight: 400;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    background-color: #ffffff;
    border-color: #7c4dff;
    box-shadow: 0 0 0 4px rgba(124, 77, 255, 0.15), 0 8px 20px rgba(124, 77, 255, 0.05);
    color: #1a1a2e;
    outline: none;
}

/* CONTACT HORIZONTAL ITEM CARDS STYLE */
.contact-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.contact-item-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(124, 77, 255, 0.08);
    border-color: rgba(124, 77, 255, 0.2);
}

.contact-item-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c4dff, #00c6ff);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 8px 16px rgba(124, 77, 255, 0.15);
}

.contact-item-content {
    display: flex;
    flex-direction: column;
}

.contact-item-label {
    font-size: 11px;
    font-weight: 700;
    color: #7c4dff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-value {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 2px;
}

.contact-item-arrow {
    font-size: 14px;
    color: #a0a0bb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item-card:hover .contact-item-arrow {
    color: #7c4dff;
    transform: translateX(4px);
}

/* OFFICE TOGGLE TABS IN LIGHT THEME */
.office-tabs-container {
    display: flex;
    justify-content: center;
}

.office-tabs {
    display: inline-flex;
    gap: 5px;
    background: rgba(124, 77, 255, 0.05);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(124, 77, 255, 0.1);
}

.tab-btn {
    border: none;
    background: transparent;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    color: #555566;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.tab-btn i {
    margin-right: 8px;
    font-size: 13px;
    transition: transform 0.3s ease;
    color: #7c4dff;
}

.tab-btn:hover i {
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #7c4dff;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(124, 77, 255, 0.2);
}

.tab-btn.active i {
    color: #ffffff;
}

/* PREMIUM GOOGLE MAP WRAPPER WITH HOVER ZOOM */
.map-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(124, 77, 255, 0.08);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.map-wrapper:hover iframe {
    transform: scale(1.04);
}

.tab-pane p {
    color: #555566;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

/* NEW FOOTER LAYOUT */
.footer {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 70px 0 30px;
    text-align: left;
}


 .footer-brand img {
width: 200px;
background-color: #ffffff;

border-radius: 50px;
}

.footer-text {
    font-size: 15px;
    color: #555566;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-flex{
    display: flex;

    justify-content: space-between;
    align-items: center;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #555566;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #7c4dff;
    padding-left: 5px;
}

.footer h5 {
    font-weight: 800;
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.footer-newsletter-input {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px 0 0 50px !important;
    padding: 12px 20px;
    font-weight: 500;
}

.footer-newsletter-input:focus {
    background: #fff;
    border-color: #7c4dff;
    box-shadow: 0 0 10px rgba(124, 77, 255, 0.1);
}

.newsletter-btn {
    border-radius: 0 50px 50px 0 !important;
    padding: 12px 24px !important;
    background: linear-gradient(135deg, #00d2ff, #7c4dff);
    color: white;
}

.footer-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-bottom p {
    font-size: 14px;
    color: #777788;
}

/* WHATSAPP */

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    z-index: 999;
    text-decoration: none;
}

/* MOBILE CTA */

/* .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 999;
}

.mobile-cta a {
    display: block;
    background: linear-gradient(45deg,#00d2ff,#7c4dff);
    text-align: center;
    padding: 15px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
} */

/* RESPONSIVE */

@media(max-width:991px) {

    .hero-section h1 {
        font-size: 42px;
    }

    .header-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .featured-card {
        transform: scale(1);
    }

    .footer-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        align-items: center;
    }
       .mobile-cta a{
        display: none;
     }


}

@media(max-width:768px) {

    /* .mobile-cta {
        display: block;
    } */
  

    .section-title h2 {
        font-size: 34px;
    }

    .hero-section h1 {
        font-size: 35px;
    }

    .glass-card,
    .pricing-card,
    .service-card,
    .contact-info,
    .contact-form-box {
        padding: 30px 20px !important;
    }

    .price {
        font-size: 38px;
        margin: 15px 0;
    }

    .contact-item-card {
        padding: 12px 16px;
    }
    .contact-item-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .contact-item-left {
        gap: 12px;
    }
    .contact-item-value {
        font-size: 13.5px;
    }

}

@media(max-width:360px) {

    .section-title h2 {
        font-size: 26px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .glass-card,
    .pricing-card,
    .service-card,
    .contact-info,
    .contact-form-box {
        padding: 22px 15px !important;
    }

    .price {
        font-size: 32px;
        margin: 12px 0;
    }

    .contact-item-card {
        padding: 10px 12px;
    }
    .contact-item-icon {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    .contact-item-left {
        gap: 8px;
    }
    .contact-item-value {
        font-size: 11px;
    }

}

/* BUBBLES ANIMATION (Deep Yellow/Amber Premium Glass Bubbles) */
.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.bubble {
    position: absolute;
    bottom: -160px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 245, 150, 0.85) 0%, rgba(255, 214, 0, 0.25) 45%, rgba(255, 160, 0, 0.35) 90%);
    border: 1px solid rgba(255, 223, 0, 0.55);
    box-shadow: inset -6px -6px 18px rgba(255, 111, 0, 0.25), inset 6px 6px 18px rgba(255, 255, 255, 0.7), 0 15px 35px rgba(255, 193, 7, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(2px);
    animation: floatUp 15s infinite ease-in-out;
}

.bubble:nth-child(1) { width: 55px; height: 55px; left: 8%; animation-duration: 9s; animation-delay: 0s; }
.bubble:nth-child(2) { width: 95px; height: 95px; left: 22%; animation-duration: 13s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 75px; height: 75px; left: 38%; animation-duration: 11s; animation-delay: 4s; }
.bubble:nth-child(4) { width: 130px; height: 130px; left: 52%; animation-duration: 17s; animation-delay: 1s; }
.bubble:nth-child(5) { width: 65px; height: 65px; left: 68%; animation-duration: 12s; animation-delay: 3s; }
.bubble:nth-child(6) { width: 115px; height: 115px; left: 82%; animation-duration: 15s; animation-delay: 0s; }
.bubble:nth-child(7) { width: 45px; height: 45px; left: 93%; animation-duration: 8s; animation-delay: 5s; }

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0) scale(0.7) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.85;
    }
    50% {
        transform: translateY(-500px) translateX(-40px) scale(1) rotate(90deg);
        opacity: 0.85;
    }
    90% {
        opacity: 0.85;
    }
    100% {
        transform: translateY(-1150px) translateX(40px) scale(0.8) rotate(180deg);
        opacity: 0;
    }
}

/* PREMIUM TOAST NOTIFICATION */
.lead-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    max-width: 400px;
    width: calc(100% - 60px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.lead-toast.success {
    background: rgba(235, 255, 240, 0.85);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #1e7e34;
}

.lead-toast.error {
    background: rgba(255, 235, 235, 0.85);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #bd2130;
}

.lead-toast .toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.lead-toast .toast-icon {
    font-size: 24px;
}

.lead-toast.success .toast-icon {
    color: #2ecc71;
}

.lead-toast.error .toast-icon {
    color: #e74c3c;
}

.lead-toast .toast-message h5 {
    margin: 0 0 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.lead-toast .toast-message p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.lead-toast .toast-close {
    background: none;
    border: none;
    font-size: 22px;
    font-weight: 300;
    color: inherit;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.lead-toast .toast-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    0% {
        transform: translateX(120%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-toast {
    animation: slideInRight 0.6s forwards;
}

/* PREMIUM DARK GLASSMORPHIC FOOTER REDESIGN */
.footer {
    background: linear-gradient(135deg, #080b2d 0%, #00163a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 30px 15px 30px !important;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    z-index: 1;
}

/* Background glowing circles */
.footer-glow-orb-1,
.footer-glow-orb-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
}

.footer-glow-orb-1 {
    top: -50px;
    left: 10%;
    background: #7c4dff;
}

.footer-glow-orb-2 {
    bottom: -50px;
    right: 10%;
    background: #00d2ff;
}

/* Logo white background capsule floating effect */
.footer .footer-brand {
    display: inline-block;
    background: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 25px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.footer .footer-brand:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 35px rgba(255, 255, 255, 0.2);
}

.footer .footer-brand img {
  width: 200px;
}

/* Tagline styling */
.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
    max-width: 420px;
    font-weight: 300;
    text-align: center;
    margin: 0 auto;
}

/* Circular glassmorphism social icons */
.footer-social-icons a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    font-size: 18px;
    text-decoration: none !important;
    backdrop-filter: blur(5px);
}

.footer-social-icons a:hover {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%) !important;
    color: #ffffff !important;
    border-color: rgba(0, 242, 254, 0.5) !important;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4), 0 0 15px rgba(0, 242, 254, 0.2);
    text-decoration: none !important;
}

/* CTA button inside footer */
.footer .footer-btn {
    padding: 12px 28px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

/* Divider line */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.08) !important;
    margin: 25px 0 20px;
    opacity: 0.8;
}

/* Copyright text */
.footer-copyright .copyright-main {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}
.footer-copyright{
    padding-bottom: 20px;
}
.footer-copyright span{
    color: #ffd931;
    font-weight: 600;
}

.footer-copyright .copyright-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    margin-top: 4px;
}
.mobile-cta{
    display: none;
}

@media (max-width: 480px) {
    .footer .footer-btn {
        width: 100%;
        display: block;
        max-width: 100%;
    }

}



/* UTILITIES */
.billed-annually-tag {
    display: block;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
}

/* ==========================================================================
   PREMIUM LEAD CAPTURE FORM TRUST SECTION
   ========================================================================== */

.border-top-glass {
    border-top: 1px solid rgba(124, 77, 255, 0.15);
}

.form-trust-section {
    position: relative;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Header Badges */
.trust-header {
    font-family: 'Outfit', sans-serif;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(124, 77, 255, 0.08);
    color: #7c4dff;
    font-weight: 700;
    font-size: 12px;
    border: 1px solid rgba(124, 77, 255, 0.15);
    box-shadow: 0 4px 12px rgba(124, 77, 255, 0.05);
}

.trust-badge-text {
    font-size: 13px;
    font-weight: 700;
    color: #0072ff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.text-cyan {
    color: #00d2ff !important;
}

/* Trust Graphic Left Side */
.trust-graphic-wrapper {
    flex: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-graphic {
    max-width: 100%;
    height: auto;
    opacity: 0.9;
    
    animation: floatGraphic 6s ease-in-out infinite;
}

@keyframes floatGraphic {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(4deg);
    }
}

/* Right Side Mini Cards */
.trust-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 10px 14px;
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-mini-card:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-3px) scale(1.02);
}

.trust-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-card-info h5 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Outfit', sans-serif;
}

.trust-card-info p {
    margin: 2px 0 0 0;
    font-size: 11px;
    font-weight: 500;
    color: #666688;
    line-height: 1.3;
}

/* Card highlight variants with logo-based colors */
.card-cyan {
    border-left: 3px solid #00d2ff;
}
.card-cyan .trust-card-icon {
    background: rgba(0, 210, 255, 0.1);
    color: #0072ff;
    box-shadow: 0 4px 10px rgba(0, 210, 255, 0.15);
}
.card-cyan:hover {
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.08);
    border-color: rgba(0, 210, 255, 0.3);
}

.card-purple {
    border-left: 3px solid #7c4dff;
}
.card-purple .trust-card-icon {
    background: rgba(124, 77, 255, 0.1);
    color: #7c4dff;
    box-shadow: 0 4px 10px rgba(124, 77, 255, 0.15);
}
.card-purple:hover {
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.08);
    border-color: rgba(124, 77, 255, 0.3);
}

.card-orange {
    border-left: 3px solid #ff9800;
}
.card-orange .trust-card-icon {
    background: rgba(255, 152, 0, 0.1);
    color: #ff5722;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.15);
}
.card-orange:hover {
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.08);
    border-color: rgba(255, 152, 0, 0.3);
}

/* Pulse animation on icon hover */
.trust-mini-card:hover .trust-card-icon i {
    animation: iconPulse 1s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.18);
        text-shadow: 0 0 8px currentColor;
    }
}

/* Bottom Text and Twinkling Stars */
.trust-footer-text p {
    font-size: 11.5px;
    font-weight: 700;
    color: #555577;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.glowing-stars i {
    color: #ffb703;
    font-size: 11px;
    margin: 0 3px;
    filter: drop-shadow(0 0 3px rgba(255, 183, 3, 0.8));
    animation: starTwinkle 3s infinite ease-in-out;
}

.glowing-stars i:nth-child(1) { animation-delay: 0.2s; }
.glowing-stars i:nth-child(2) { animation-delay: 0.6s; }
.glowing-stars i:nth-child(3) { animation-delay: 1.0s; }
.glowing-stars i:nth-child(4) { animation-delay: 0.4s; }
.glowing-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.25);
        filter: drop-shadow(0 0 6px rgba(255, 183, 3, 1));
    }
}

/* RESPONSIVE DESIGN FOR TRUST SECTION */
@media (max-width: 768px) {
    .trust-header {
        justify-content: center !important;
    }
    .trust-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .trust-graphic-wrapper {
        flex: 0 0 auto;
        margin-bottom: 12px;
    }
    .trust-graphic {
        max-width: 70px;
    }
    .trust-cards-wrapper {
        width: 100%;
    }
    .trust-mini-card {
        padding: 8px 12px;
        text-align: left;
    }
}

/* CONTACT SECTION HEADING MOBILE ALIGNMENT */
@media (max-width: 550px) {
    .contact-section h2 {
        text-align: center;
    }
}

/* Helper utility for small button icons */
.btn-icon-xs {
    font-size: 11px !important;
}

/* ============================================
   LEAD SUBMISSION SUCCESS POPUP
   ============================================ */
.lead-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 30, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lead-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lead-popup {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 50px 45px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 30px 80px rgba(124, 77, 255, 0.18),
        0 8px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
    opacity: 0;
    position: relative;
}

.lead-popup-overlay.active .lead-popup {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.lead-popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d2ff 0%, #7c4dff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 30px rgba(124, 77, 255, 0.35);
    animation: popupIconBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes popupIconBounce {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.lead-popup-icon i {
    font-size: 34px;
    color: #ffffff;
}

.lead-popup h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1c1a2e;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.lead-popup p {
    font-size: 15.5px;
    color: #6b6880;
    line-height: 1.7;
    margin-bottom: 30px;
}

.lead-popup p strong {
    color: #7c4dff;
}

.lead-popup-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.lead-popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 600;
}

.lead-popup-badge.cyan {
    background: rgba(0, 210, 255, 0.08);
    color: #0099cc;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.lead-popup-badge.purple {
    background: rgba(124, 77, 255, 0.08);
    color: #7c4dff;
    border: 1px solid rgba(124, 77, 255, 0.2);
}

.lead-popup-close {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 14px 38px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 22px rgba(255, 87, 34, 0.35);
}

.lead-popup-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 87, 34, 0.5);
}

.lead-popup-error .lead-popup-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4e4e 100%);
    box-shadow: 0 10px 30px rgba(255, 78, 78, 0.35);
}

.lead-popup-error .lead-popup-close {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4e4e 100%);
    box-shadow: 0 8px 22px rgba(255, 78, 78, 0.35);
}

.lead-popup-error .lead-popup-close:hover {
    box-shadow: 0 12px 28px rgba(255, 78, 78, 0.5);
}

/* Mobile */
@media (max-width: 480px) {
    .lead-popup {
        padding: 38px 25px;
    }
    .lead-popup h3 {
        font-size: 20px;
    }
    .lead-popup-icon {
        width: 68px;
        height: 68px;
    }
    .lead-popup-icon i {
        font-size: 28px;
    }
}

/* ============================================
   PLAN PRE-FILL — SELECT HIGHLIGHT ANIMATION
   ============================================ */

/* Pulse-ring glow on the select when a plan is auto-chosen */
@keyframes planSelectPulse {
    0%   { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.55), 0 0 0 0 rgba(124, 77, 255, 0.35); }
    50%  { box-shadow: 0 0 0 8px rgba(0, 210, 255, 0.0), 0 0 0 14px rgba(124, 77, 255, 0.0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0), 0 0 0 0 rgba(124, 77, 255, 0); }
}

.form-select.plan-selected,
#hero_plan.plan-selected,
#contact_plan.plan-selected {
    border-color: #00d2ff !important;
    background-color: rgba(0, 210, 255, 0.06) !important;
    color: inherit;
    animation: planSelectPulse 0.75s ease-out forwards;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Floating toast banner — "Plan pre-filled" */
.plan-prefill-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(135deg, #0a0a1e 0%, #1a1040 100%);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99998;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 210, 255, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.plan-prefill-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.plan-prefill-toast .toast-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d2ff, #7c4dff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.plan-prefill-toast .toast-plan-name {
    color: #00d2ff;
    font-weight: 700;
}