/* ===== USA eVisa Website Styles ===== */

/* CSS Variables for USA Theme */
:root {
    --usa-red: #B22234;
    --usa-blue: #3C3B6E;
    --usa-white: #FFFFFF;
    --usa-light-blue: #4A90E2;
    --usa-dark-blue: #2C3E50;
    --usa-light-gray: #F8F9FA;
    --usa-medium-gray: #6C757D;
    --usa-dark-gray: #343A40;
    --usa-success: #28A745;
    --usa-warning: #FFC107;
    --usa-danger: #DC3545;
    --usa-info: #17A2B8;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 60px 0;
    --container-padding: 0 15px;

    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--usa-dark-gray);
    background-color: var(--usa-white);
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--usa-dark-blue);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--usa-medium-gray);
}

a {
    color: var(--usa-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--usa-red);
}

/* ===== Container Styles ===== */
.container-fluid {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

/* ===== Top Bar ===== */
.top-bar {
    background: linear-gradient(135deg, var(--usa-dark-blue) 0%, var(--usa-blue) 100%);
    color: var(--usa-white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .contact-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.top-bar .contact-info i {
    margin-right: 5px;
    color: var(--usa-light-blue);
}

.top-bar .top-links a {
    color: var(--usa-white);
    margin-left: 15px;
    font-size: 13px;
    transition: var(--transition-fast);
}

.top-bar .top-links a:hover {
    color: var(--usa-light-blue);
}

.top-bar .top-links i {
    margin-right: 5px;
}

/* ===== Main Header ===== */
.main-header {
    background: var(--usa-white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--usa-dark-blue) !important;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 2rem;
    color: var(--usa-red);
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--usa-dark-blue);
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--usa-medium-gray);
    font-weight: 400;
}

/* Navigation */
.navbar-nav .nav-link {
    color: var(--usa-dark-gray) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    margin: 0 5px;
    border-radius: 5px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    background-color: var(--usa-light-gray);
    color: var(--usa-blue) !important;
}

.navbar-nav .nav-link i {
    margin-right: 5px;
    font-size: 14px;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-medium);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 5px;
}

.dropdown-item {
    padding: 8px 20px;
    color: var(--usa-dark-gray);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--usa-light-gray);
    color: var(--usa-blue);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
}

.header-cta .btn {
    margin-left: 10px;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 25px;
    transition: var(--transition-medium);
}

/* ===== Buttons ===== */
.btn {
    border-radius: 25px;
    font-weight: 500;
    padding: 12px 25px;
    transition: var(--transition-medium);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--usa-blue) 0%, var(--usa-light-blue) 100%);
    color: var(--usa-white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--usa-dark-blue) 0%, var(--usa-blue) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-primary {
    border: 2px solid var(--usa-blue);
    color: var(--usa-blue);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--usa-blue);
    color: var(--usa-white);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, var(--usa-success) 0%, #34CE57 100%);
    color: var(--usa-white);
}

.btn-warning {
    background: linear-gradient(135deg, var(--usa-warning) 0%, #FFD93D 100%);
    color: var(--usa-dark-gray);
}

.btn-danger {
    background: linear-gradient(135deg, var(--usa-danger) 0%, #FF6B6B 100%);
    color: var(--usa-white);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* ===== Breadcrumb ===== */
.breadcrumb-nav {
    background: var(--usa-light-gray);
    padding: 10px 0;
}

.breadcrumb {
    background: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--usa-blue);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--usa-medium-gray);
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, var(--usa-blue) 0%, var(--usa-dark-blue) 100%);
    color: var(--usa-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/usa_landmarks_collage.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--usa-white);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.hero-features i {
    color: var(--usa-success);
    margin-right: 10px;
    font-size: 1.2rem;
}

.hero-cta {
    margin-top: 40px;
}

.hero-cta .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

/* ===== Cards ===== */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-header {
    background: linear-gradient(135deg, var(--usa-light-gray) 0%, #E9ECEF 100%);
    border-bottom: 3px solid var(--usa-blue);
    padding: 20px;
}

.card-body {
    padding: 25px;
}

.card-title {
    color: var(--usa-dark-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.card-text {
    color: var(--usa-medium-gray);
    line-height: 1.6;
}

/* ===== Process Steps ===== */
.process-steps {
    padding: var(--section-padding);
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, var(--usa-blue), var(--usa-light-blue));
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--usa-blue), var(--usa-light-blue));
    color: var(--usa-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 30px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-light);
}

.step-content {
    flex: 1;
    background: var(--usa-light-gray);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--usa-blue);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--usa-dark-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.step-title i {
    margin-right: 10px;
    color: var(--usa-blue);
}

/* ===== Processing Options ===== */
.processing-options {
    /* background: var(--usa-light-gray); */
    padding: 50px 0;
}

.option-card {
    background: var(--usa-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    border-top: 5px solid var(--usa-blue);
    height: 100%;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.option-card.urgent {
    border-top-color: var(--usa-warning);
}

.option-card.super-urgent {
    border-top-color: var(--usa-red);
}

.option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--usa-blue);
    color: var(--usa-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.option-card.urgent .option-icon {
    background: var(--usa-warning);
}

.option-card.super-urgent .option-icon {
    background: var(--usa-red);
}

/* ===== Statistics Section ===== */
.stats-section {
    background: linear-gradient(135deg, var(--usa-dark-blue) 0%, var(--usa-blue) 100%);
    color: var(--usa-white);
    padding: var(--section-padding);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    /* color: var(--usa-white); */
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 10px;
}

/* ===== Footer ===== */
.main-footer {
    background: var(--usa-dark-blue);
    color: var(--usa-white);
}

.footer-cta {
    background: linear-gradient(135deg, var(--usa-red) 0%, #D32F2F 100%);
    padding: 40px 0;

}

.footer-cta h3 {
    color: var(--usa-white);
    margin-bottom: 10px;
}

.footer-cta p {
    color: var(--usa-white);
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-content {
    padding: 50px 0 30px;
}

.footer-section h5 {
    color: var(--usa-white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h5 i {
    margin-right: 8px;
    color: var(--usa-light-blue);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--usa-red);
    margin-right: 10px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--usa-light-blue);
}

.processing-option {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.processing-option .option-icon {
    width: 40px;
    height: 40px;
    margin: 0 15px 0 0;
    font-size: 1rem;
}

.processing-option .option-details h6 {
    color: var(--usa-white);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.processing-option .option-details p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.8rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 20px;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--usa-light-blue);
}

.security-badges {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}

.badges-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.badge-item {
    display: flex;
    align-items: center;
    color: var(--usa-white);
    font-size: 14px;
}

.badge-item i {
    margin-right: 8px;
    color: var(--usa-success);
    font-size: 16px;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--usa-blue);
    color: var(--usa-white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--usa-red);
    transform: translateY(-3px);
}

/* ===== Responsive Design ===== */

/* Large screens */
@media (min-width: 1400px) {
    .container-fluid {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Medium screens */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-item:not(:last-child)::after {
        display: none;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .header-cta {
        margin-top: 15px;
        justify-content: center;
    }

    .footer-cta .cta-buttons {
        text-align: center;
        margin-top: 20px;
    }
}

/* Small screens */
@media (max-width: 767.98px) {
    :root {
        --section-padding: 40px 0;
        --container-padding: 0 10px;
    }

    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .top-bar {
        font-size: 12px;
    }

    .top-bar .contact-info span {
        margin-right: 10px;
        display: block;
        margin-bottom: 5px;
    }

    .top-bar .top-links {
        text-align: center;
        margin-top: 10px;
    }

    .main-header .navbar {
        padding: 10px 0;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px !important;
        margin: 2px 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 12px 25px;
        font-size: 16px;
    }

    .card-body {
        padding: 20px;
    }

    .step-content {
        padding: 20px;
    }

    .option-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .footer-content {
        padding: 30px 0 20px;
    }

    .footer-cta {
        padding: 30px 0;
        text-align: center;
    }

    .footer-cta .cta-buttons {
        margin-top: 20px;
    }

    .footer-cta .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }

    .badges-container {
        gap: 15px;
    }

    .badge-item {
        font-size: 12px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }

    .processing-option {
        flex-direction: column;
        text-align: center;
    }

    .processing-option .option-icon {
        margin: 0 0 10px 0;
    }
}

/* ===== Utility Classes ===== */
.text-usa-blue {
    color: var(--usa-blue) !important;
}

.text-usa-red {
    color: var(--usa-red) !important;
}

.bg-usa-blue {
    background-color: var(--usa-blue) !important;
}

.bg-usa-red {
    background-color: var(--usa-red) !important;
}

.bg-usa-light {
    background-color: var(--usa-light-gray) !important;
}

.section-padding {
    padding: var(--section-padding);
}

.shadow-light {
    box-shadow: var(--shadow-light);
}

.shadow-medium {
    box-shadow: var(--shadow-medium);
}

.shadow-heavy {
    box-shadow: var(--shadow-heavy);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Animation Classes ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* ===== Print Styles ===== */
@media print {

    .top-bar,
    .main-header,
    .footer-cta,
    .back-to-top,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero-section {
        background: none !important;
        color: black !important;
    }
}


/* ===== Search Functionality Styles ===== */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 300px;
}

.search-input {
    border-radius: 25px;
    padding: 8px 40px 8px 15px;
    border: 2px solid var(--usa-light-blue);
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--usa-blue);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    outline: none;
}

.search-btn {
    position: absolute;
    right: 5px;
    background: var(--usa-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--usa-dark-blue);
    transform: scale(1.1);
}

/* ===== Enhanced Product Cards ===== */
.visa-product-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.visa-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--usa-light-blue);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.product-icon i {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.product-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 10;
}

.product-features {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #495057;
}

.feature-item i {
    font-size: 1rem;
    width: 16px;
}

.product-price {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid #dee2e6;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--usa-blue);
    line-height: 1;
}

.price-currency {
    font-size: 1.2rem;
    color: #6c757d;
    margin-left: 5px;
}

.product-actions {
    margin: 25px 0;
}

.product-actions .btn {
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.product-actions .btn-block {
    width: 100%;
    margin-bottom: 15px;
}

.product-actions .btn-primary {
    background: linear-gradient(135deg, var(--usa-blue) 0%, var(--usa-light-blue) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.product-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.product-rating {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.stars {
    margin-bottom: 8px;
}

.stars i {
    font-size: 1.1rem;
    margin: 0 1px;
}

.rating-text {
    font-size: 0.9rem;
    color: #6c757d;
}

/* ===== Enhanced Analytics Styles ===== */
.analytics-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.analytics-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 35px;
    background: linear-gradient(135deg, var(--usa-blue) 0%, var(--usa-light-blue) 100%);
    color: white;
    position: relative;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--usa-red) 0%, white 50%, var(--usa-blue) 100%);
}

.card-header h4 {
    margin-bottom: 12px;
    font-weight: 700;
}

.card-header p {
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 1.05rem;
}

.card-insights {
    padding: 35px;
    background: #f8f9fa;
}

.insight-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.insight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--usa-light-blue);
}

.insight-item h6 {
    color: var(--usa-blue);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-item p {
    color: #495057;
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== Responsive Enhancements ===== */
@media (max-width: 768px) {
    .search-container {
        max-width: 200px;
        margin-bottom: 10px;
    }

    .visa-product-card {
        margin-bottom: 30px;
    }

    .product-icon i {
        font-size: 2.5rem;
    }

    .price-amount {
        font-size: 2.2rem;
    }

    .card-header {
        padding: 25px;
    }

    .card-insights {
        padding: 25px;
    }

    .insight-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .section {
        padding: 2rem 0;
    }

    .card-body {
        padding: 1rem;
    }

    .feature-item {
        padding: 1.5rem 0.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

}

@media (max-width: 576px) {
    .search-container {
        max-width: 150px;
    }

    .product-actions .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .section {
        padding: 1.5rem 0;
    }

    .card-body {
        padding: 0.75rem;
    }

    .feature-item {
        padding: 1rem 0.25rem;
    }
}

/* ===== CARD STYLES ===== */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
}

.card-header {
    background-color: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.25rem;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* ===== FEATURE STYLES ===== */
.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.feature-item:hover {
    background-color: white;
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* ===== STATS STYLES ===== */
.stats-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: white;
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== FORM STYLES ===== */
.form-control {
    border: 2px solid var(--gray-200);
    /* border-radius: var(--border-radius); */
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid #dbe2e9;
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}