/* Custom Container - Fluid on small screens, fixed on ultra-wide */
.custom-container {
    width: 95%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 2500px) {
    .custom-container {
        max-width: 2400px;
    }
}

.signup-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #fff9f0 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 106, 0, 0.2);
    padding: 35px;
    padding-top: 55px; /* extra breathing room */
    position: relative !important;
    overflow: visible !important; /* allow badge to escape */
    border: 3px solid #ff6a00;
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: 1;
    margin-top: 40px; /* Space for the badge */
}

.hero-section,
.section,
.container,
.row {
    overflow: visible !important;
}

.hero-top {
    width: 25em;
}

.hero-icons {
    width: 35em;
}
.hero-img{
    width:85%;
}
/* Limited Time Offer Badge - HTML Element */
.limited-time-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6a00 0%, #ff8c00 100%);
    color: #fff;
    padding: 10px 32px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.2px;
    box-shadow: 0 6px 18px rgba(255, 106, 0, 0.4);
    z-index: 10;
    text-transform: uppercase;
    white-space: nowrap;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 6px 18px rgba(255, 106, 0, 0.4);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 106, 0, 0.6);
    }
}

/* optional glow animation, purely visual */
@keyframes pulseGlow {
    0%,100% {
        box-shadow: 0 20px 60px rgba(255, 106, 0, 0.2);
    }

    50% {
        box-shadow: 0 20px 80px rgba(255, 106, 0, 0.4);
    }
}


/* Countdown Timer Badge */
.signup-countdown-timer {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6a00 0%, #ff8c00 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-label {
    font-size: 11px;
    opacity: 0.9;
}

.countdown-time {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.signup-wrapper h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.signup-wrapper > p {
    color: #555;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: center;
    position: relative;
    z-index: 2;
    line-height: 1.1;
}

/* Pricing Alert Box */
.alert-info {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ff6a00;
    border-radius: 12px;
    padding: 6px 0px 10px 0px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.15);
}

    .alert-info strong {
        color: #ff6a00;
        font-size: 16px;
        font-weight: 700;
        display: block;
        margin-bottom: 5px;
    }

    .alert-info #pricingText {
        color: #333;
        font-size: 14px;
        font-weight: 600;
    }

/* Modern Countdown Timer */
.countdown-timer-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

    .countdown-timer-modern .timer-label {
        font-size: 14px;
        font-weight: 700;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.timer-boxes {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 280px;
}

.time-box {
    background: linear-gradient(135deg, #ff6a00 0%, #ff8c00 100%);
    border-radius: 10px;
    padding: 5px 5px;
    flex: 1;
    min-width: 62px;
    max-width: 35px;
    box-shadow: 0 6px 15px rgba(255, 106, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: timeBoxPulse 2s ease-in-out infinite;
}

    .time-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }

    .time-box:hover::before {
        left: 100%;
    }

.time-value {
    display: block;
    font-size: 27px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
    animation: digitFlip 0.6s ease;
}

.time-label {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}

.time-separator {
    font-size: 24px;
    font-weight: 800;
    color: #ff6a00;
    animation: separatorBlink 1s ease-in-out infinite;
    flex-shrink: 0;
}

/* Animations */
@keyframes timeBoxPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 10px 25px rgba(255, 106, 0, 0.5);
    }
}

@keyframes digitFlip {
    0% {
        transform: rotateX(0deg);
    }

    50% {
        transform: rotateX(90deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@keyframes separatorBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Urgent state when time is running out */
.countdown-urgent .time-box {
    background: linear-gradient(135deg, #ff6a00 0%, #ff8c00 100%);
    animation: urgentPulse 0.5s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Form Styling */
.pesco-contact-form {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 18px;
}

.form_control {
    width: 100%;
    height: 52px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

    .form_control:focus {
        border-color: #ff6a00;
        outline: none;
        box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
        transform: translateY(-2px);
    }

    .form_control::placeholder {
        color: #999;
        font-weight: 400;
    }

/* Password Strength Indicator */
#passwordStrength .progress {
    height: 6px;
    border-radius: 10px;
    background: #e0e0e0;
    overflow: hidden;
}

#passwordStrength .progress-bar {
    transition: all 0.3s ease;
    border-radius: 10px;
}

#passwordRequirements {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

    #passwordRequirements div {
        margin-bottom: 5px;
        display: flex;
        align-items: center;
    }

    #passwordRequirements i {
        margin-right: 8px;
        color: #ddd;
        transition: all 0.3s ease;
    }

        #passwordRequirements i.fa-check-circle {
            color: #28a745;
        }



#consentText:hover {
    color: #333;
}


#consentText a {
    color: #ff6a00;
    text-decoration: underline;
    font-weight: 600;
}

    #consentText a:hover {
        color: #ff8c00;
    }



/* Loader */
#loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    background: transparent;
}

    #loader .spinner-border {
        width: 3rem;
        height: 3rem;
        border-width: 0.4em;
        color: #ff6a00;
    }


/* Error Messages */
.text-danger {
    font-size: 9px;
    margin-top: 5px;
    font-weight: 600;
    line-height:12px;
}

.text-success {
    font-size: 12px;
    margin-top: 5px;
    font-weight: 600;
    color: #28a745;
}

/* Countdown Timer Effect */
.signup-wrapper .countdown-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6a00 0%, #ff8c00 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
    z-index: 10;
    animation: pulse 1.5s ease-in-out infinite;
}


/* Focus Ring for Accessibility */
.form_control:focus-visible {
    outline: 3px solid rgba(255, 106, 0, 0.5);
    outline-offset: 2px;
}

/* Pricing Strikethrough Styling */
h1.pricing-line {
    display: inline-flex;
    align-items: flex-end;
    gap: 6px;
    line-height: 1.3;
    flex-wrap: wrap;
}

    h1.pricing-line .strike-price {
        text-decoration: line-through;
        color: #d32f2f;
        font-weight: 800;
        font-size: 1.2em;
        display: inline-block;
        line-height: 1;
    }

    h1.pricing-line .month-text {
        font-size: 0.5em;
        font-weight: 500;
        color: #666;
        line-height: 1;
        padding-bottom: 0.1em;
    }

/* Floating Label Effect */
.form-group {
    position: relative;
}

.form_control:focus + .floating-label,
.form_control:not(:placeholder-shown) + .floating-label {
    top: -10px;
    font-size: 12px;
    color: #ff6a00;
    background: white;
    padding: 0 5px;
}

.floating-label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 15px;
    pointer-events: none;
    transition: all 0.3s ease;
}
@media (max-width: 1799px) {
    .hero-content.style-one h1 {
        font-size: 42px;
    }
}
@media (max-width: 1699px) {
    .signup-wrapper h4 {
        font-size: 14px;
    }
.limited-time-badge {
    padding: 10px 16px;
    font-size: 10px;
}
    .theme-btn.style-one {
            font-size: 12px;
        }
        .hero-content.style-one h1 span {
            padding: 0 8px 5px;
            line-height: 1;
            font-size: 70px;
        }

        #sign-up label {
            font-size: 8px;
            line-height: 12px;
            text-align: justify;
        }
    .home .hero-content.style-one h1 span {
        padding: 0 8px 5px;
        line-height: 1;
        font-size: 42px;
    }
    }
@media (max-width: 1450px) {
    .hero-content.style-one h1 {
        font-size: 36px;
    }
}
@media (max-width: 999px) {
    .signup-wrapper h4 {
        font-size: 28px;
    }
    .hero-top {
        margin: auto;
    }
    .hero-icons {
        margin: auto;
    }
}
@media (max-width: 599px) {
    .signup-wrapper h4 {
        font-size: 16px;
    }
    .theme-btn.style-one {
        padding: 15px 20px;
    }
    .hero-content.style-one h1 span {
        font-size: 25px;
    }
    .time-box {
        max-width: 50px;
        min-width: 60px;
    }
    .hero-img{
width:50%;
margin:auto;
    }
    .animated-headline-area .section-title h2 {
        font-size: 18px;
        line-height: 40px;
    }
    h1.pricing-line {
        gap: 6px;
        align-items: center;
    }
    }
