/* Countdown Timer Bar - Redesigned with Logo and Spots */
.countdown-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-bottom: 2px solid var(--primary-color);
    /* Added subtle Electric Cyan top border for tech look */
    border-top: 1px solid rgba(0, 255, 255, 0.4);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    /* Added cyan accents to the shadow */
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 255, 255, 0.1);
}

.countdown-content {
    display: grid;
    /* Increased first column even more for larger logo */
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    gap: 1.5rem;
}

/* Logo on Left */
.countdown-logo {
    display: flex;
    align-items: center;
    /* Aligned to center for better visual balance */
    align-self: center;
}

.countdown-logo .logo {
    /* Maximized size per user request */
    height: 95px;
    width: auto;
    /* Maintain aspect ratio */
}

/* Countdown in Center */
.countdown-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.countdown-label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 102, 0, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    min-width: 55px;
    position: relative;
    overflow: visible;
    animation: neonGlowOrange 2.5s ease-in-out infinite;
}

.countdown-unit::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
            rgba(255, 102, 0, 0.3) 0%,
            rgba(255, 170, 0, 0.5) 50%,
            rgba(255, 102, 0, 0.3) 100%);
    border-radius: 8px;
    animation: subtleGlow 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0.6;
}

.countdown-unit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 8px;
    z-index: -1;
}

.countdown-number {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.countdown-text {
    color: var(--text-muted);
    font-size: 0.65rem;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.countdown-separator {
    /* Changed to Electric Cyan for tech accent */
    color: #00FFFF;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.6);
    margin-top: -15px;
    /* Visual perfection alignment */
}

/* Spots Counter on Right */
.countdown-spots {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    gap: 0.5rem;
}

/* Pulse animation for visitor indicator */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.spots-display {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    /* Increased gap */
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    /* Increased padding */
    min-width: 80px;
    /* Increased width */
    height: 80px;
    /* Increased height to match logo scale */
    box-sizing: border-box;
    position: relative;
    overflow: visible;
    animation: neonGlowRed 2.5s ease-in-out infinite;
}

.spots-display::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: transparent;
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
}

.spots-display::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    z-index: -1;
}

.spots-number {
    color: #ff0000;
    font-size: 2.5rem;
    /* Standardized large size */
    font-weight: 800;
    line-height: 1;
    transition: color 0.3s ease;
    animation: criticalPulse 1.5s infinite;
}

/* Critical state when <= 3 spots */
.spots-number.critical {
    color: #ff0000 !important;
    animation: criticalPulse 1s infinite;
}

.spots-label {
    color: #ff0000;
    font-size: 0.8rem;
    /* Increased font size */
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Urgency animation when < 24 hours */
.countdown-bar.urgent {
    animation: urgentPulse 2s infinite;
}

/* Animations */
@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes subtleGlow {

    0%,
    100% {
        opacity: 0.4;
        box-shadow: 0 0 8px rgba(255, 102, 0, 0.3);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(255, 170, 0, 0.6);
    }
}

@keyframes neonGlowOrange {

    0%,
    100% {
        box-shadow:
            0 0 5px rgba(255, 102, 0, 0.4),
            0 0 10px rgba(255, 102, 0, 0.3),
            0 0 15px rgba(255, 102, 0, 0.2),
            0 0 20px rgba(255, 102, 0, 0.1);
    }

    50% {
        box-shadow:
            0 0 10px rgba(255, 102, 0, 0.6),
            0 0 20px rgba(255, 102, 0, 0.5),
            0 0 30px rgba(255, 102, 0, 0.4),
            0 0 40px rgba(255, 102, 0, 0.2);
    }
}

@keyframes neonGlowRed {

    0%,
    100% {
        box-shadow:
            0 0 5px rgba(255, 0, 0, 0.4),
            0 0 10px rgba(255, 0, 0, 0.3),
            0 0 15px rgba(255, 0, 0, 0.2),
            0 0 20px rgba(255, 0, 0, 0.1);
    }

    50% {
        box-shadow:
            0 0 10px rgba(255, 0, 0, 0.6),
            0 0 20px rgba(255, 0, 0, 0.5),
            0 0 30px rgba(255, 0, 0, 0.4),
            0 0 40px rgba(255, 0, 0, 0.2);
    }
}

@keyframes urgentPulse {

    0%,
    100% {
        border-bottom-color: var(--primary-color);
    }

    50% {
        border-bottom-color: #ff0000;
    }
}

@keyframes criticalPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes hourglassGlow {
    0% {
        background: linear-gradient(180deg,
                rgba(0, 212, 255, 0.9) 0%,
                rgba(138, 43, 226, 0.4) 50%,
                rgba(255, 20, 147, 0.2) 100%);
        opacity: 0.5;
    }

    50% {
        background: linear-gradient(180deg,
                rgba(255, 20, 147, 0.2) 0%,
                rgba(138, 43, 226, 0.4) 50%,
                rgba(0, 212, 255, 0.9) 100%);
        opacity: 0.7;
    }

    100% {
        background: linear-gradient(180deg,
                rgba(0, 212, 255, 0.9) 0%,
                rgba(138, 43, 226, 0.4) 50%,
                rgba(255, 20, 147, 0.2) 100%);
        opacity: 0.5;
    }
}

/* Updated Urgency Banner with Spots Counter (for banner section) */
.spots-counter {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.spots-available {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.spots-total {
    color: var(--white);
    font-size: 1rem;
}

.spots-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.spots-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #e65c00 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Color changes based on availability */
.spots-available.critical {
    color: #ff0000;
    animation: criticalPulse 1s infinite;
}

/* Objection Handler Section */
.objection-handler {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(255, 102, 0, 0.02) 100%);
}

.objection-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.objection-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e65c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.4);
}

.objection-icon i {
    font-size: 3.5rem;
    color: var(--white);
}

.objection-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.objection-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.objection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.objection-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(26, 26, 26, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 102, 0, 0.2);
    text-align: left;
}

.objection-point i {
    color: #00ff88;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.objection-point span {
    color: var(--white);
    font-weight: 600;
}

.objection-stat {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.stat-number {
    color: var(--primary-color);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.stat-text {
    color: var(--white);
    text-align: left;
    max-width: 500px;
    line-height: 1.6;
}

/* Bonuses Section */
.bonuses-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.bonuses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.bonuses-header {
    text-align: center;
    margin-bottom: 3rem;
}

.total-value-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-top: 1rem;
}

.value-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.value-amount {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
}

.value-free {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 2px solid rgba(255, 102, 0, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    animation: neonGlowOrange 2.5s ease-in-out infinite;
}

.bonus-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.3);
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.4);
}

.best-bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bonus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e65c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.bonus-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.bonus-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.bonus-duration {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.bonus-features li {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.bonus-features i {
    color: #00ff88;
    font-size: 1rem;
}

.bonus-value {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 102, 0, 0.2);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.bonuses-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.bonuses-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Mobile Responsive for New Elements */
@media (max-width: 768px) {

    /* Fixed Header for Mobile */
    .countdown-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0.2rem 0;
        /* Reduced padding further */
        background: #0a0a0a;
        /* Solid color for performance (No Blur) */
        z-index: 9999;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
        /* Simplified shadow */
        border-bottom: 2px solid var(--primary-color);
    }

    /* Add spacer for fixed header - specific to mobile */
    body {
        padding-top: 75px;
        /* Space for fixed header - minimized */
    }

    .countdown-content {
        grid-template-columns: 1fr;
        gap: 0.2rem;
        /* Minimized gap */
        text-align: center;
        width: 100%;
        padding: 0 10px;
    }

    .countdown-logo {
        justify-content: center;
        margin-bottom: 0;
        margin-top: 0.2rem;
    }

    .countdown-logo .logo {
        height: 70px;
        /* Kept large as requested */
        width: auto;
    }

    /* Better mobile buttons */
    .btn-lg {
        width: 100%;
        display: block;
        text-align: center;
        margin-top: 1rem;
    }

    /* Timer Container */
    .countdown-center {
        margin: 0.2rem 0;
    }

    .countdown-timer {
        gap: 0.2rem;
        justify-content: center;
    }

    .countdown-unit {
        padding: 0.1rem 0.4rem;
        min-width: 38px;
    }

    .countdown-number {
        font-size: 1rem;
    }

    .countdown-text {
        font-size: 0.5rem;
    }

    .countdown-spots {
        justify-content: center;
        margin-top: 0.1rem;
        margin-bottom: 0.2rem;
    }

    .spots-display {
        padding: 0.2rem 0.8rem;
        height: auto;
    }

    .spots-number {
        font-size: 1.5rem;
    }

    .spots-label {
        font-size: 0.6rem;
    }

    /* Bonuses Grid */
    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    /* Objection Section */
    .objection-grid {
        grid-template-columns: 1fr;
    }

    .objection-stat {
        flex-direction: column;
        text-align: center;
    }

    .stat-text {
        text-align: center;
    }

    .objection-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* Why Now Section */
.why-now-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 68, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.why-now-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.why-now-content {
    text-align: center;
}

.why-now-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: pulse 2s infinite;
}

.why-now-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-now-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    overflow: visible;
    animation: neonGlowOrange 2.5s ease-in-out infinite;
}

.why-now-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.why-now-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e65c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

.why-now-text {
    flex: 1;
    text-align: left;
}

.why-now-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.why-now-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 600;
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.trust-badge.secure {
    border-color: #00ff88;
}

.trust-badge.secure i {
    color: #00ff88;
}

.spots-remaining {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 0, 0.15);
    border: 2px solid #ff0000;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    color: #ff0000;
    animation: neonGlowRed 2.5s ease-in-out infinite;
    margin-top: 1rem;
}

.spots-remaining .number {
    font-size: 1.5rem;
    font-weight: 900;
}

/* Guarantees Section */
.guarantees-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.guarantees-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.guarantees-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.guarantees-section .section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.guarantees-section .section-title i {
    color: var(--primary-color);
    margin-right: 1rem;
    animation: neonGlowOrange 2s ease-in-out infinite;
}

.guarantees-section .section-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.guarantee-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 102, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.guarantee-card:hover::before {
    opacity: 0.1;
}

.guarantee-card.featured {
    border-color: var(--primary-color);
    animation: neonGlowOrange 2.5s ease-in-out infinite;
}

.guarantee-card.featured .guarantee-icon {
    /* Standardizing style: same transparent background as others */
    border-color: var(--primary-color);
    box-shadow:
        0 0 20px rgba(255, 102, 0, 0.5),
        0 0 40px rgba(255, 102, 0, 0.3),
        inset 0 0 20px rgba(255, 102, 0, 0.2);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    box-shadow:
        0 0 15px rgba(255, 102, 0, 0.3),
        0 0 30px rgba(255, 102, 0, 0.1),
        inset 0 0 10px rgba(255, 102, 0, 0.1);
    animation: neonGlowPulse 3s ease-in-out infinite;
}

@keyframes neonGlowPulse {

    0%,
    100% {
        box-shadow:
            0 0 15px rgba(255, 102, 0, 0.3),
            0 0 30px rgba(255, 102, 0, 0.1),
            inset 0 0 10px rgba(255, 102, 0, 0.1);
        border-color: rgba(255, 102, 0, 0.8);
    }

    50% {
        box-shadow:
            0 0 25px rgba(255, 102, 0, 0.5),
            0 0 50px rgba(255, 102, 0, 0.2),
            0 0 70px rgba(255, 102, 0, 0.05),
            inset 0 0 20px rgba(255, 102, 0, 0.2);
        border-color: rgba(255, 102, 0, 1);
    }
}

.guarantee-card:hover .guarantee-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 102, 0, 0.1);
    box-shadow:
        0 0 30px rgba(255, 102, 0, 0.6),
        0 0 60px rgba(255, 102, 0, 0.4),
        0 0 90px rgba(255, 102, 0, 0.2),
        inset 0 0 30px rgba(255, 102, 0, 0.2);
    border-color: var(--primary-color);
}

.guarantee-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Vertical alignment correction for car icon */
.guarantee-icon i.fa-car {
    margin-top: 5px;
}

.guarantee-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.guarantee-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive for Why Now */
@media (max-width: 768px) {
    .why-now-title {
        font-size: 1.5rem;
    }

    .why-now-grid {
        grid-template-columns: 1fr;
    }

    .why-now-item {
        flex-direction: column;
        text-align: center;
    }

    .why-now-text {
        text-align: center;
    }

    .guarantees-section {
        padding: 3rem 0;
    }

    .guarantees-section .section-title {
        font-size: 1.8rem;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guarantee-icon {
        width: 60px;
        height: 60px;
    }

    .guarantee-icon i {
        font-size: 1.5rem;
    }

    .guarantee-card h3 {
        font-size: 1.1rem;
    }
}

/* =========================================
   Form Styling Updates - Dark & Cyan Tech
   ========================================= */
.form-group input,
.form-group select {
    background-color: #1a1a1a !important;
    /* Dark background matching theme */
    border: 1px solid #333 !important;
    color: #ffffff !important;
    border-radius: 6px;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00FFFF !important;
    /* Electric Cyan Focus */
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2) !important;
    /* Cyan Glow */
    background-color: #0a0a0a !important;
    /* Slightly darker on focus */
}

/* Placeholder styling */
.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Specific fix for select dropdown arrow in some browsers */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300FFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

/* Force Dark Background on Autocomplete/Autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #1a1a1a inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: white;
} 
 / *   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  
       P E R F O R M A N C E   O P T I M I Z A T I O N   F O R   M O B I L E  
       D i s a b l e s   h e a v y   a n i m a t i o n s   o n   s c r e e n s   <   7 6 8 p x  
       t o   i m p r o v e   s c r o l l   f l u i d i t y   ( F P S ) .  
       - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         / *   S t o p   P u l s e / G l o w   A n i m a t i o n s   * /  
         . c o u n t d o w n - u n i t ,  
         . s p o t s - d i s p l a y ,  
         . b t n - p r i m a r y ,  
         . i n f o - c a r d ,  
         . b o n u s - c a r d ,  
         . p r i c i n g - c a r d ,  
         . u r g e n c y - d a t e ,  
         . o b j e c t i o n - i c o n ,  
         . t r u s t - i c o n ,  
         . g a l l e r y - o v e r l a y   i ,  
         . s p o t s - a v a i l a b l e . c r i t i c a l ,  
         . s p o t s - n u m b e r . c r i t i c a l   {  
                 a n i m a t i o n :   n o n e   ! i m p o r t a n t ;  
                 t r a n s i t i o n :   n o n e   ! i m p o r t a n t ;   / *   D i s a b l e   t r a n s i t i o n   l a g   * /  
         }  
  
         / *   A p p l y   S t a t i c   " M i d - G l o w "   S t a t e   f o r   A e s t h e t i c s   * /  
         . c o u n t d o w n - u n i t   {  
                 b o x - s h a d o w :   0   0   1 0 p x   r g b a ( 2 5 5 ,   1 0 2 ,   0 ,   0 . 2 )   ! i m p o r t a n t ;  
                 b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r )   ! i m p o r t a n t ;  
         }  
  
         . s p o t s - d i s p l a y   {  
                 b o x - s h a d o w :   0   0   1 0 p x   r g b a ( 2 5 5 ,   0 ,   0 ,   0 . 2 )   ! i m p o r t a n t ;  
                 b o r d e r - c o l o r :   # f f 0 0 0 0   ! i m p o r t a n t ;  
         }  
  
         . b t n - p r i m a r y   {  
                   b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 2 5 5 ,   1 0 2 ,   0 ,   0 . 4 )   ! i m p o r t a n t ;  
         }  
  
         . i n f o - c a r d ,  
         . b o n u s - c a r d ,  
         . p r i c i n g - c a r d   {  
                 b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 5 )   ! i m p o r t a n t ;  
                 b o r d e r - c o l o r :   r g b a ( 2 5 5 ,   1 0 2 ,   0 ,   0 . 3 )   ! i m p o r t a n t ;  
         }  
  
         . u r g e n c y - d a t e   {  
                   b o x - s h a d o w :   0   0   1 0 p x   r g b a ( 2 5 5 ,   1 0 2 ,   0 ,   0 . 3 )   ! i m p o r t a n t ;  
         }  
 }  
 