/* Custom Styles for Bank Account Unfreeze Service */
/* Mobile-First Responsive Design */

:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --gradient-primary: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ===========================
   NAVBAR STYLING
   =========================== */
.navbar {
    padding: 0.75rem 0;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    font-weight: 700;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition-base);
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    background: var(--gradient-primary);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.min-vh-75 {
    min-height: 70vh;
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    font-weight: 600;
    transition: var(--transition-base);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

/* ===========================
   CARDS
   =========================== */
.card {
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition-base);
}

.hover-lift {
    transition: var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
}

.icon-box {
    transition: var(--transition-base);
}

.hover-lift:hover .icon-box {
    transform: scale(1.1);
}

/* ===========================
   PROCESS CARDS
   =========================== */
.process-card {
    padding: 1.5rem;
    transition: var(--transition-base);
}

.process-number {
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: var(--transition-base);
}

.process-card:hover .process-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
}

/* ===========================
   FORMS
   =========================== */
.form-control,
.form-select {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    transition: var(--transition-base);
    font-size: 1rem;
}

.form-control-lg,
.form-select-lg {
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
}

/* ===========================
   ACCORDION
   =========================== */
.accordion-item {
    border-radius: 0.75rem !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-body {
    padding: 1.5rem;
}

/* ===========================
   STEP INDICATOR (Apply Page)
   =========================== */
.step-indicator {
    position: relative;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    opacity: 0.5;
    transition: var(--transition-base);
}

.step-item.active {
    opacity: 1;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    width: 2px;
    height: 100%;
    background-color: #e5e7eb;
    transition: var(--transition-base);
}

.step-item:last-child::before {
    display: none;
}

.step-item.active::before {
    background-color: var(--primary);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: var(--transition-base);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.step-item.active .step-icon {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

.step-content h6 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* ===========================
   FORM STEPS
   =========================== */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item a {
    text-decoration: none;
    transition: var(--transition-base);
}

.breadcrumb-item a:hover {
    opacity: 0.8;
}

/* ===========================
   REVIEW CARDS
   =========================== */
#reviewContent .card {
    border-left: 4px solid var(--primary);
    margin-bottom: 1rem;
}

/* ===========================
   FOOTER
   =========================== */
footer a {
    transition: var(--transition-base);
}

footer a:hover {
    opacity: 0.8;
    transform: translateX(3px);
}

/* ===========================
   ALERTS
   =========================== */
.alert {
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
}

/* ===========================
   BADGES
   =========================== */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

/* ===========================
   MOBILE RESPONSIVE STYLES
   =========================== */

/* Tablets and below (991px) */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0 40px;
        min-height: 500px;
    }

    .display-3 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    /* Adjust button sizes */
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* Stack hero stats vertically on tablets */
    .hero-content .d-flex.gap-4 {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    /* Step indicator horizontal scroll */
    .step-indicator {
        display: flex;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .step-indicator::-webkit-scrollbar {
        height: 6px;
    }

    .step-indicator::-webkit-scrollbar-thumb {
        background-color: rgba(13, 110, 253, 0.3);
        border-radius: 3px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        min-width: 100px;
        margin-right: 1rem;
        margin-bottom: 0;
    }

    .step-item::before {
        display: none;
    }

    .step-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
        width: 45px;
        height: 45px;
    }

    .step-content h6 {
        font-size: 0.8rem;
    }

    .step-content small {
        font-size: 0.7rem;
    }

    /* Adjust card padding */
    .card-body {
        padding: 1.5rem !important;
    }

    /* Process cards */
    .process-card {
        padding: 1.25rem;
    }
}

/* Mobile phones (767px and below) */
@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .hero-section {
        padding: 40px 0 30px;
        min-height: auto;
    }

    .display-3 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .display-4 {
        font-size: 1.5rem;
    }

    .display-5 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1rem;
    }

    /* Navbar adjustments */
    .navbar-brand {
        font-size: 1rem;
    }

    .navbar-brand i {
        font-size: 1.25rem;
    }

    .navbar-collapse {
        margin-top: 1rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: 0.5rem;
    }

    /* Button adjustments */
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* Reduce spacing */
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .mb-4 {
        margin-bottom: 1.5rem !important;
    }

    /* Card adjustments */
    .card-body {
        padding: 1.25rem !important;
    }

    .card-body.p-4,
    .card-body.p-md-5 {
        padding: 1.25rem !important;
    }

    /* Form adjustments */
    .form-control,
    .form-select {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 0.75rem;
    }

    .form-control-lg,
    .form-select-lg {
        padding: 0.875rem 1rem;
        font-size: 16px;
    }

    /* Icon boxes */
    .icon-box {
        width: 60px !important;
        height: 60px !important;
    }

    .icon-box i {
        font-size: 1.5rem !important;
    }

    /* Process numbers */
    .process-number {
        width: 60px !important;
        height: 60px !important;
    }

    .process-number span {
        font-size: 1.5rem !important;
    }

    /* Accordion */
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 1rem;
    }

    /* Footer adjustments */
    footer .col-lg-4,
    footer .col-lg-2,
    footer .col-lg-3,
    footer .col-md-4 {
        margin-bottom: 1.5rem;
    }

    /* Hero stats */
    .hero-content h3 {
        font-size: 1.5rem !important;
    }

    .hero-content small {
        font-size: 0.85rem;
    }

    /* Sticky elements on mobile */
    .sticky-lg-top {
        position: relative !important;
        top: auto !important;
    }
}

/* Small mobile phones (575px and below) */
@media (max-width: 575px) {
    .display-3 {
        font-size: 1.5rem;
    }

    .display-4 {
        font-size: 1.35rem;
    }

    .display-5 {
        font-size: 1.35rem;
    }

    /* Full width buttons on small screens */
    .btn-lg.px-5 {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .d-flex.gap-3 {
        flex-direction: column !important;
    }

    /* Form buttons */
    .d-flex.justify-content-between .btn,
    .d-flex.justify-content-end .btn {
        flex: 1;
        min-width: 120px;
    }

    /* Badge adjustments */
    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Social icons */
    footer .btn-sm {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem;
    }
}

/* ===========================
   TOUCH IMPROVEMENTS
   =========================== */
@media (hover: none) and (pointer: coarse) {

    /* Increase touch targets */
    .btn {
        min-height: 44px;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }

    .form-check-input {
        width: 1.25rem;
        height: 1.25rem;
    }

    /* Remove hover effects on touch devices */
    .hover-lift:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* ===========================
   MODERN FOOTER STYLING
   =========================== */
.footer-modern {
    position: relative;
    overflow: hidden;
}

.footer-gradient {
    background: linear-gradient(135deg, #1a1f36 0%, #0d1117 50%, #1a1f36 100%);
    position: relative;
}

.footer-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-brand h4 {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Trust Badges */
.trust-badges .badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
}

.trust-badges .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Social Icons */
.social-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

.social-icon i {
    font-size: 1.1rem;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 0.75rem;
    transition: var(--transition-base);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.7rem;
    transition: var(--transition-base);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Contact Information */
.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-contact span {
    line-height: 1.6;
}

/* Newsletter Box */
.newsletter-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter-box .input-group {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-box .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1rem;
}

.newsletter-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-box .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.newsletter-box .btn-warning {
    padding: 0.75rem 1.25rem;
    font-weight: 600;
}

.newsletter-box .btn-warning:hover {
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
}

.footer-legal li {
    margin: 0 0.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: white;
}

/* Testimonials Section */
.card .bi-star-fill {
    font-size: 1rem;
    margin-right: 0.25rem;
}

/* Call to Action Section */
.bg-primary.text-white {
    background: var(--gradient-primary) !important;
}

/* ===========================
   FOOTER RESPONSIVE STYLES
   =========================== */
@media (max-width: 991px) {
    .footer-brand h4 {
        font-size: 1.25rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .newsletter-box {
        padding: 1.25rem;
    }
}

@media (max-width: 767px) {
    .footer-gradient {
        padding-top: 1rem;
    }

    .footer-brand {
        text-align: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .social-links {
        text-align: center;
    }

    .social-links .d-flex {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        margin-bottom: 2rem;
    }

    .newsletter-box {
        margin-top: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal li {
        margin: 0.25rem 0;
    }
}

@media (max-width: 575px) {
    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon i {
        font-size: 1rem;
    }

    .trust-badges .badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }

    .newsletter-box .form-control,
    .newsletter-box .btn {
        font-size: 0.9rem;
    }
}

/* ===========================
   PRINT STYLES
   =========================== */
/* ===========================
   PREMIUM BADGE STYLING
   =========================== */
.glass-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.glass-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.glass-badge i {
    font-size: 2rem;
    color: #00ff88;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
}

.glass-badge-text {
    text-align: left;
}

.glass-badge-text h6 {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.glass-badge-text small {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media print {

    .navbar,
    footer,
    .btn,
    .alert {
        display: none !important;
    }

    .hero-section {
        background: white !important;
        color: black !important;
    }

    .card {
        border: 1px solid #dee2e6 !important;
        page-break-inside: avoid;
    }
}