/* 
 * Custom Bootstrap Enhancements
 * This file contains custom styles and enhanced Bootstrap classes
 * Keep your custom Bootstrap modifications and extensions here
 */

/* ==========================================================================
   ENHANCED BUTTON STYLES
   ========================================================================== */

/* Enhanced Button Variants */
.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-gradient-outline {
    background: transparent;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    color: #667eea;
    transition: all 0.3s ease;
}

.btn-gradient-outline:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

.btn-shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-shadow-lg:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   ENHANCED CARD STYLES
   ========================================================================== */

/* Glass Card Effect */
.card-glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Floating Card Effect */
.card-floating {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.card-floating:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

/* Gradient Card Header */
.card-header-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: none;
}

/* ==========================================================================
   ENHANCED NAVBAR STYLES
   ========================================================================== */

/* Glassmorphism Navbar */
.navbar-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar-glass.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Animated Navbar Links */
.navbar-nav .nav-link-animated {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link-animated::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: left 0.3s ease;
}

.navbar-nav .nav-link-animated:hover::before,
.navbar-nav .nav-link-animated.active::before {
    left: 0;
}

/* ==========================================================================
   ENHANCED FORM STYLES
   ========================================================================== */

/* Floating Label Forms */
.form-floating-custom {
    position: relative;
}

.form-floating-custom .form-control {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-floating-custom .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Gradient Form Controls */
.form-control-gradient {
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    transition: all 0.3s ease;
}

.form-control-gradient:focus {
    background: white;
    border-color: transparent;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* ==========================================================================
   ENHANCED ALERT STYLES
   ========================================================================== */

/* Gradient Alerts */
.alert-gradient-primary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    color: #4c51bf;
}

.alert-gradient-success {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1) 0%, rgba(56, 178, 172, 0.1) 100%);
    border: 1px solid rgba(72, 187, 120, 0.2);
    color: #38a169;
}

.alert-gradient-warning {
    background: linear-gradient(135deg, rgba(237, 137, 54, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 1px solid rgba(237, 137, 54, 0.2);
    color: #d69e2e;
}

.alert-gradient-danger {
    background: linear-gradient(135deg, rgba(245, 101, 101, 0.1) 0%, rgba(229, 62, 62, 0.1) 100%);
    border: 1px solid rgba(245, 101, 101, 0.2);
    color: #e53e3e;
}

/* ==========================================================================
   ENHANCED BADGE STYLES
   ========================================================================== */

/* Gradient Badges */
.badge-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.badge-outline-gradient {
    background: transparent;
    border: 1px solid #667eea;
    color: #667eea;
}

.badge-pulse {
    animation: pulse-gradient 2s infinite;
}

@keyframes pulse-gradient {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

/* ==========================================================================
   ENHANCED UTILITY CLASSES
   ========================================================================== */

/* Text Gradients */
.text-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-gradient-success {
    background: linear-gradient(135deg, #48bb78 0%, #38b2ac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Shadow Utilities */
.shadow-gradient {
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.shadow-soft {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.shadow-inner-soft {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

/* Border Gradients */
.border-gradient {
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

/* Animation Classes */
.animate-fadeIn {
    animation: fadeIn 0.5s ease-in;
}

.animate-slideUp {
    animation: slideUp 0.5s ease-out;
}

.animate-bounce-in {
    animation: bounceIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   DARK MODE ENHANCEMENTS
   ========================================================================== */

[data-theme="dark"] .card-glass {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .navbar-glass {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .form-control-gradient {
    background-image: linear-gradient(#2d3748, #2d3748), linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* ==========================================================================
   RESPONSIVE ENHANCEMENTS
   ========================================================================== */

@media (max-width: 768px) {
    .btn-gradient,
    .btn-gradient-outline {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .card-floating:hover {
        transform: translateY(-4px);
    }
    
    .shadow-gradient {
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
    }
}


/* ==========================================================================
   LOGO STYLES
   ========================================================================== */

/* Navbar Logo */
.navbar-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-logo:hover {
    /* transform: scale(1.05); */
}

/* Responsive Logo Sizing */
@media (max-width: 768px) {
    .navbar-logo {
        height: 50px;
        margin-right: 8px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 40px;
        margin-right: 6px;
    }
}

/* ==========================================================================
   NAVBAR CONTACT INFO STYLES
   ========================================================================== */

/* Contact Info Container */
.navbar-contact-info {
    /* border-left: 1px solid rgba(255, 255, 255, 0.2); */
    padding-left: 1rem;
}

/* Contact Item Styling */
.contact-item {
    flex-direction: column;
    align-items: flex-start !important;
}

.contact-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-bottom: 2px;
    display: flex;
width: 32px;
height: 32px;
padding: 1.667px;
justify-content: center;
align-items: center;
aspect-ratio: 1/1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-header {
    color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    /* margin-bottom: 2px; */
    line-height: 24px;
}

.contact-email {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1.2;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--Link-link-oncolor, #FFF) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email:hover {
    text-decoration: underline;
    color: #fff;
    opacity: 1;
}

/* Vertical Divider */
.hr-vr {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    height: 45px;
    width: 1px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Responsive Contact Info */
@media (max-width: 768px) {
    .navbar-contact-info {
        flex-direction: column;
        align-items: flex-start !important;
        margin-top: 1rem;
    }
    
    .contact-item {
        margin-bottom: 0.5rem;
        margin-right: 0 !important;
    }
    
    .hr-vr {
        display: none;
    }
}

@media (min-width: 769px) {
    .contact-item {
        flex-direction: row !important;
        align-items: center !important;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .nav-header {
        font-size: 16px;
    }
    
    .contact-email {
        font-size: 16px;
    }
}

/* ==========================================================================
   VERIFICATION SECTION STYLES (2-Card Layout)
   ========================================================================== */

.verification-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -6rem !important;
}

/* Responsive verification section */
@media (max-width: 991.98px) {
    .verification-section {
        margin-top: -4rem !important;
    }
}

@media (max-width: 767.98px) {
    .verification-section {
        margin-top: -3rem !important;
    }
}

@media (max-width: 575.98px) {
    .verification-section {
        margin-top: -2rem !important;
        padding: 2rem 0 !important;
    }
}

.verification-cards-section {
    margin-top: 4rem;
    padding-bottom: 2rem;
}

/* Verification Form Card (Green) */
.verification-card {
    background: #2c7b5b;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(44, 123, 91, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px 0;
    background: var(--Background-background-primary, #1B8354);
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.verification-card .card-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--Text-text-oncolor-primary, #FFF);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.verification-input {
    background: white;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #333;
    width: 100%;
}

.verification-input::placeholder {
    color: #999;
    font-size: 0.9rem;
}

.verification-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.verify-btn {
    background: white;
    color: #2c7b5b;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    align-self: flex-start;
    transition: all 0.3s ease;
    display: flex;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: var(--Global-spacing-none, 0) var(--Button-buttons-lg-padding, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-lg-gap, 4px);
    border-radius: var(--Radius-radius-sm, 4px);
    background: var(--Button-button-background-transparent-hovered, rgba(255, 255, 255, 0.20));
    color: var(--Text-text-oncolor-primary, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.verify-btn:hover {
    background: #f8f9fa;
    color: #2c7b5b;
    transform: translateY(-1px);
}

/* Information Card (Light) */
.info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 24px 0;
    background: var(--Background-background-white, #FFF);
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.info-content {
    width: 100%;
}

.info-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    color: var(--Text-text-primary-paragraph, #384250);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

/* Responsive Design for Verification Cards */
@media (max-width: 991px) {
    .verification-cards-section {
        margin-top: 3rem;
    }
    
    .verification-card,
    .info-card {
        margin-bottom: 1.5rem;
        padding: 2rem;
    }
    
    .verification-card .card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .verification-cards-section {
        margin-top: 2rem;
    }
    
    .verification-card,
    .info-card {
        padding: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .verification-card .card-title {
        font-size: 1.2rem;
    }
    
    .verification-input {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .verify-btn {
        padding: 0.7rem 1.5rem;
    }
    
    .info-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .verification-cards-section {
        margin-top: 1.5rem;
    }
    
    .verification-card,
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .verification-card .card-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .verification-input {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .verify-btn {
        padding: 0.6rem 1.25rem;
        width: 100%;
    }
    
    .info-text {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   FAQ SECTION STYLES
   ========================================================================== */

.faq-section {
    background: #f8f9fa;
}

.faq-header {
    text-align: left;
}

.faq-subtitle {
    color: #1B8354;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-title {
    color: #333;
    font-weight: 600;
    font-size: 2rem;
}

/* Custom Accordion Styling */
.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-item:not(:last-child) {
    margin-bottom: 1rem;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--Text-text-default, #161616);
    border-radius: 12px !important;
    box-shadow: none;
    position: relative;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.accordion-button:not(.collapsed) {
    background: white;
    color: #333;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-body {
    /* padding: 0 1.5rem 1.5rem 1.5rem; */
    background: white;
}

/* FAQ Option Cards */
.faq-option-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.faq-option-card-primary {
    border-radius: 16px;
    border: 1px solid var(--Border-border-success-light, #ABEFC6);
    background: var(--Background-background-primary-25, #F7FDF9);
    transition: all 0.3s ease;
    height: 100%;
}

.faq-option-card-primary:hover {
    border-color: #F7FDF9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* transform: translateY(-2px); */
}

.faq-option-card-danger {
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 16px;
    border: 1px solid var(--Border-border-warning-light, #FEDF89);
    background: var(--Background-background-secondary-50, #FFFEF2);
}

.faq-option-card-danger:hover {
    border-color: #FFFEF2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* transform: translateY(-2px); */
}

.faq-option-card-secondary {
    border-radius: 16px;
    border: 1px solid var(--Border-border-info-light, #B2DDFF);
    background: var(--Background-background-info-25, #F5FAFF);
    transition: all 0.3s ease;
    height: 100%;
}

.faq-option-card-secondary:hover {
    border-color: #F5FAFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* transform: translateY(-2px); */
}

.option-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 60px;
    height: 60px;
}

.option-logo {
    height: 34px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}
.option-title {
    color: #333;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
}

.option-text {
    color: #666;
    line-height: 1.4;
    margin: 0;
    text-align: left;
    font-size: 16px;
}

/* Responsive FAQ Styling */
@media (max-width: 768px) {
    .faq-title {
        font-size: 1.5rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-option-card {
        margin-bottom: 1rem;
    }
    
    .option-icon {
        width: 50px;
        height: 50px;
    }
    
    .option-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .faq-subtitle {
        font-size: 0.8rem;
    }
    
    .faq-title {
        font-size: 1.25rem;
    }
    
    .accordion-button {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   VISA STEPS STYLING
   ========================================================================== */

.visa-steps {
    margin-top: 1rem;
}

.visa-step {
    padding: 0.5rem 0;
}

.step-header {
    align-items: flex-start;
}

.step-check {
    margin-top: 2px;
}

.step-title {
    color: var(--Text-text-default, #161616);
    /* font-size: 24px; */
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.step-description {
    color: var(--Text-text-display, #1F2A37);
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

/* ==========================================================================
   TIMELINE CARDS STYLING
   ========================================================================== */

.timeline-cards {
    margin-top: 1rem;
}

.timeline-card-primary {
    border-radius: 16px;
    border: 1px solid var(--Border-border-success-light, #ABEFC6);
    background: var(--Background-background-primary-25, #F7FDF9);
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.timeline-card-primary:hover {
    /* background: white; */
    border-color: #dee2e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-card-secondary {
    border-radius: 16px;
    border: 1px solid var(--Border-border-info-light, #B2DDFF);
    background: var(--Background-background-info-25, #F5FAFF);
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.timeline-card-secondary:hover {
    /* background: white; */
    border-color: #B2DDFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-card-section {
    background: white;
    border-color: #dee2e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.timeline-logo {
    width: 25.833px;
    height: 25.833px;;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* ==========================================================================
   DELAY STEP CARDS STYLING
   ========================================================================== */

.delay-step-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--Radius-radius-lg, 16px);
    border: 1px solid var(--Border-border-background-neutral, #D2D6DB);
    background: var(--Background-background-white, #FFF);
}

.font-small {
    font-size: 16px;
    color: var(--Text-text-primary-paragraph, #384250);
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.delay-step-card:hover {
    background: white;
    border-color: #dee2e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* transform: translateY(-2px); */
}

.delay-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    /* background: white;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.delay-description {
    color: #000;
    line-height: 1.4;
    text-align: left;
}

.phone {
    color: var(--Text-text-primary, #1B8354);
    font-style: normal;
    font-weight: 400;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* Responsive Styling for New Elements */
@media (max-width: 767.98px) {
    .timeline-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1rem !important;
    }
    
    .timeline-icon {
        margin: 0 auto 1rem auto !important;
    }
    
    .delay-step-card {
        margin-bottom: 1rem !important;
    }
    
    .delay-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .step-description {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
}

@media (max-width: 575.98px) {
    .timeline-title {
        font-size: 1rem !important;
    }
    
    .timeline-description {
        font-size: 0.9rem !important;
    }
    
    .delay-description {
        font-size: 0.85rem !important;
    }
    
    .visa-step {
        padding: 0.25rem 0 !important;
    }
    
    .step-title {
        font-size: 0.95rem !important;
    }
    
    .step-description {
        font-size: 0.9rem !important;
    }
}

/* ==========================================================================
   SAUDI DESTINATIONS SECTION STYLES
   ========================================================================== */

.destinations-section {
    background: #fff;
}

.destinations-header {
    text-align: left;
}

.destinations-subtitle {
    color: #1B8354;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destinations-title {
    color: #333;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.3;
}

.destinations-description {
    color: var(--Text-text-default, #161616);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    align-self: stretch;
}

.destinations-cards-title {
    color: var(--Text-text-default, #161616);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}

/* Destination Cards */
.destination-card {
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--Border-border-background-neutral, #D2D6DB);
    background: var(--Background-background-body, #F9FAFB);
}

/* Removed hover effects */

.destination-image {
    position: relative;
    height: 180px;
    margin: 20px 20px 0 20px;
    overflow: hidden;
    border-radius: 25px;
    justify-self: center;
    /* Custom curved shape using clip-path */
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 70%, 
        85% 80%, 
        70% 85%, 
        50% 90%, 
        30% 85%, 
        15% 80%, 
        0% 70%
    );
}

.destination-image img {
    /* width: 190px; */
    height: 175px !important;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.15) 100%);
    z-index: 1;
}

.destination-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 4;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.destination-info {
    padding: 0 2rem 2rem 2rem;
    text-align: center;
    background: #f8f9fa;
    position: relative;
}

.destination-info::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: #f8f9fa;
    border-radius: 20px 20px 0 0;
}

.destination-name {
    color: #1B8354;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.destination-tags {
    color: var(--Text-text-display, #1F2A37);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    align-self: stretch;
}

/* Carousel Navigation */
.carousel-navigation {
    margin-top: 2rem;
    gap: 1rem;
}

.carousel-dots {
    gap: 0.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #dee2e6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: #1B8354;
    transform: scale(1.2);
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #dee2e6;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: static;
}

.carousel-arrow:hover {
    background: #1B8354;
    color: white;
    border-color: #1B8354;
    transform: scale(1.1);
}

.carousel-arrow i {
    font-size: 1.1rem;
}

/* Responsive Design for Destinations */
@media (max-width: 991.98px) {
    .destinations-title {
        font-size: 1.75rem;
    }
    
    .destinations-cards-title {
        font-size: 1.25rem;
    }
    
    .destination-image {
        height: 240px;
        margin: 15px 15px 0 15px;
    }
    
    .destination-image::before {
        width: 50px;
        height: 25px;
        top: 8px;
        right: 12px;
    }
    
    .destination-image::after {
        width: 35px;
        height: 18px;
        top: 12px;
        right: 8px;
    }
    
    .destination-flag {
        width: 45px;
        height: 45px;
        top: 12px;
        right: 12px;
    }
    
    .flag-icon {
        width: 25px;
        height: 25px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow i {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .destinations-header {
        text-align: center !important;
        margin-bottom: 3rem !important;
    }
    
    .destinations-title {
        font-size: 1.5rem !important;
    }
    
    .destinations-description {
        font-size: 0.95rem !important;
    }
    
    .destinations-cards-title {
        font-size: 1.15rem !important;
        text-align: center !important;
    }
    
    .destination-image {
        height: 220px;
        margin: 12px 12px 0 12px;
    }
    
    .destination-image::before {
        width: 45px;
        height: 22px;
        top: 6px;
        right: 10px;
    }
    
    .destination-image::after {
        width: 30px;
        height: 15px;
        top: 10px;
        right: 6px;
    }
    
    .destination-flag {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
        padding: 6px;
    }
    
    .flag-icon {
        width: 22px;
        height: 22px;
    }
    
    .destination-info {
        padding: 1.25rem;
    }
    
    .destination-name {
        font-size: 1.1rem;
    }
    
    .destination-tags {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .destinations-subtitle {
        font-size: 0.8rem;
    }
    
    .destinations-title {
        font-size: 1.25rem;
    }
    
    .destinations-description {
        font-size: 0.9rem;
    }
    
    .destinations-cards-title {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .destination-image {
        height: 200px;
        margin: 10px 10px 0 10px;
    }
    
    .destination-image::before {
        width: 40px;
        height: 20px;
        top: 5px;
        right: 8px;
    }
    
    .destination-image::after {
        width: 25px;
        height: 12px;
        top: 8px;
        right: 5px;
    }
    
    .destination-flag {
        width: 35px;
        height: 35px;
        top: 8px;
        right: 8px;
        padding: 4px;
    }
    
    .flag-icon {
        width: 20px;
        height: 20px;
    }
    
    .destination-info {
        padding: 1rem;
    }
    
    .destination-name {
        font-size: 1rem;
    }
    
    .destination-tags {
        font-size: 1.1rem !important;
    }
    
    .flag-icon {
        width: 25px;
        height: 25px;
    }
    
    .carousel-navigation {
        gap: 0.5rem;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
    
    .carousel-arrow i {
        font-size: 0.9rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* ==========================================================================
   ADDITIONAL RESPONSIVE IMPROVEMENTS
   ========================================================================== */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Container padding adjustments */
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hero section improvements */
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-section p {
        font-size: 0.9rem;
        /* margin-bottom: 1.5rem; */
    }
    
    /* Verification cards ultra-mobile */
    .verification-cards-section {
        margin-top: 1rem;
    }
    
    .verification-card,
    .info-card {
        min-height: 160px;
        padding: 1.25rem !important;
        margin-bottom: 0.75rem;
    }
    
    .verification-card .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .verification-input {
        padding: 0.625rem;
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }
    
    .verify-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .info-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* FAQ section ultra-mobile */
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-header {
        margin-bottom: 2rem;
    }
    
    .faq-subtitle {
        font-size: 0.75rem;
    }
    
    .faq-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .accordion-button {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 0 0.75rem 0.75rem 0.75rem;
    }
    
    /* Destinations ultra-mobile */
    .destinations-section {
        padding: 2rem 0;
    }
    
    .destinations-header {
        margin-bottom: 2rem;
    }
    
    .destinations-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .destinations-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .destinations-cards-title {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    /* Navigation ultra-mobile */
    .navbar-contact-info {
        display: none !important;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
    }
    
    .navbar-logo {
        height: 35px !important;
    }
    
    /* Force mobile layout */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .col-lg-4, .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    /* Container adjustments */
    .container, .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Medium devices improvements (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .verification-cards-section {
        margin-top: 2.5rem;
    }
    
    .destinations-carousel .row {
        justify-content: center;
    }
    
    /* Show 2 cards per row on tablets */
    .destinations-carousel .col-lg-4 {
        flex: 0 0 auto;
        width: 45%;
        max-width: 300px;
    }
}

/* Large devices improvements (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-section {
        padding: 5rem 0;
        min-height: 60vh;
        display: flex;
        align-items: center;
    }
    
    .verification-cards-section {
        margin-top: 3rem;
    }
    
    /* Ensure proper spacing on large screens */
    .destinations-carousel .col-lg-4 {
        max-width: 350px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .destinations-title {
        font-size: 2.25rem;
    }
    
    .faq-title {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   RESPONSIVE HEADER AND HERO STYLES
   ========================================================================== */

/* Hide mobile elements by default (show on desktop) */
.mobile-header {
    display: none;
}

.mobile-hero {
    display: none;
}

/* Show desktop elements by default */
.desktop-header {
    display: block;
}

.desktop-hero {
    display: block;
    padding-top: 5rem;
}

/* Mobile-only styles (tablets and below) */
@media screen and (max-width: 991.98px) {
    /* Hide desktop elements */
    .desktop-header {
        display: none !important;
    }
    
    .desktop-hero {
        display: none !important;
    }
    
    /* Show mobile elements */
    .mobile-header {
        display: block !important;
        background: #1B8354;
        padding: 0;
    }
    
    .mobile-hero {
        display: flex !important;
        position: relative;
        min-height: 57vh;
        align-items: center;
        overflow: hidden;
    }
}

/* iPad Pro specific fixes */
@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .mobile-hero {
        min-height: 80vh !important;
        padding: 2rem 0 !important;
    }
    
    .hero-quote-box {
        max-width: 500px !important;
        padding: 0 !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .verification-cards-section {
        margin-top: -3rem !important;
    }
    
    /* Footer fixes for iPad */
    .footer-contact-info {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .footer-contact-item {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .hr-vr {
        display: none !important;
    }
}

/* iPad Mini specific fixes */
@media screen and (min-width: 768px) and (max-width: 820px) {
    /* Footer adjustments for iPad Mini */
    footer {
        padding: 1rem 0 !important;
    }
    
    .footer-contact-info {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }
    
    .footer-contact-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.25rem !important;
    }
    
    .footer-p, .footer-p-2 {
        font-size: 14px !important;
        line-height: 20px !important;
    }
    
    .contact-icon {
        width: 20px !important;
        height: 20px !important;
    }
    
    /* Copyright text */
    footer .col-md-6 p {
        font-size: 14px !important;
        line-height: 20px !important;
        text-align: center !important;
    }
}
    
    /* Mobile Header Styles */
    .mobile-header .navbar {
        padding: 0.75rem 0;
    }

    .mobile-header .navbar-logo {
        height: 40px;
        width: auto;
    }

    .header-icons {
        gap: 1rem;
    }

    .header-icon {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        display: flex;
padding: 8px;
justify-content: center;
align-items: center;
gap: var(--Button-buttons-lg-gap, 4px);
border-radius: var(--Radius-radius-sm, 4px);
background: var(--Button-button-background-transparent-hovered, rgba(255, 255, 255, 0.20));
    }

    .header-icon:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }
    
    /* Mobile Hero Styles */
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .mobile-hero .container {
        position: relative;
        z-index: 2;
    }

    .hero-quote-box {
        /* background: rgba(255, 255, 255, 0.95); */
        /* backdrop-filter: blur(10px); */
        /* border-radius: 20px; */
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 400px;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        /* padding: 20px 20px 0 20px; */
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        border-radius: 0 32px;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(8px);
        text-align: left;
        padding-bottom: 1px !important;
    }

    .quote-mark-left,
    .quote-mark-right {
        font-size: 3rem;
        font-weight: bold;
        color: #1B8354;
        position: absolute;
        font-family: serif;
    }

    .quote-mark-left {
        top: -10px;
        left: 15px;
    }

    .quote-mark-right {
        bottom: -30px;
        right: 15px;
    }

    .hero-title {
        color: #1B8354;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        text-align: left;
        line-height: 1.3;
    }

    .hero-subtitle {
        color: #333;
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0;
        text-align: left;
    }
}

/* Mobile-only styles (small phones) */
@media screen and (max-width: 575.98px) {
    .mobile-header .navbar-logo {
        height: 35px;
    }
    
    .header-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
    
    .hero-quote-box {
        padding: 1.5rem 1rem !important;
        max-width: 350px !important;
    }
    
    .hero-title {
        font-size: 1.3rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
    
    .quote-mark-left,
    .quote-mark-right {
        font-size: 2.5rem !important;
    }
}

/* ==========================================================================
   HERO SECTION POSITIONING CONTROLS
   ========================================================================== */

/* Main hero section positioning */
.hero-positioning {
    display: flex;
    height: 725px; /* You can adjust this value */
    align-items: center; /* Options: flex-start, center, flex-end */
    justify-content: center; /* Options: flex-start, center, flex-end */
    gap: 32px;
    width: 100%;
}

/* Hero content positioning */
.hero-content-positioning {
    display: flex;
    width: 1304px; /* You can adjust this value */
    max-width: 100%;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start; /* Options: flex-start, center, flex-end */
    gap: 16px;
    text-align: left; /* Options: left, center, right */
}

/* Responsive adjustments for positioning */
@media screen and (max-width: 1400px) {
    .hero-content-positioning {
        width: 100%;
        max-width: 1200px;
    }
}

@media screen and (max-width: 991.98px) {
    .hero-positioning {
        height: auto;
        min-height: 500px;
        padding: 2rem 0;
    }
    
    .hero-content-positioning {
        width: 100%;
        padding: 1rem;
        text-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 575.98px) {
    .hero-positioning {
        min-height: 400px;
        padding: 1rem 0;
    }
}

/* ==========================================================================
   VERIFICATION SECTION POSITIONING
   ========================================================================== */

/* Default positioning for desktop */
.verification-cards-section {
    margin-top: -6rem;
    position: relative;
    z-index: 10;
}

/* Mobile positioning adjustments */
@media screen and (max-width: 991.98px) {
    .verification-cards-section {
        margin-top: -4rem !important;
    }
}

@media screen and (max-width: 575.98px) {
    .verification-cards-section {
        margin-top: -2rem !important;
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN - ALL DEVICES
   ========================================================================== */

/* Base responsive improvements */
* {
    box-sizing: border-box !important;
}

/* Fix viewport and body issues for tablets/iPad */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden !important;
    min-height: 100vh;
}

/* Prevent extra white space on iPad Pro */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        min-height: auto !important;
    }
    
    .hero-section {
        max-height: 70vh;
        overflow: hidden;
    }
    
    main {
        min-height: auto;
    }
}

img {
    max-width: 100% !important;
    height: auto !important;
}

/* EMERGENCY RESPONSIVE FIXES */
@media screen and (max-width: 576px) {
    /* Mobile responsive activated */
    /* Force everything to be responsive */
    * {
        max-width: 100vw !important;
    }
    
    /* Prevent any overflow */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Force containers */
    .container, .container-fluid {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Force rows */
    .row {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Force columns to be full width */
    [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* ==========================================================================
   FORCE RESPONSIVE OVERRIDES
   ========================================================================== */

/* MOBILE DEVICES (Extra Small) - < 576px */
@media screen and (max-width: 575.98px) {
    /* Force single column layout */
    .row > * {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 1rem !important;
    }
    
    /* Force container padding */
    .container,
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }
    
    /* Force text sizes */
    h1 { font-size: 1.5rem !important; line-height: 1.2 !important; }
    h2 { font-size: 1.3rem !important; line-height: 1.3 !important; }
    h3 { font-size: 1.2rem !important; line-height: 1.3 !important; }
    h4 { font-size: 2.1rem !important; line-height: 1.4 !important; }
    /* h5 { font-size: 1rem !important; line-height: 1.4 !important; } */
    h5 { line-height: 1.4 !important; } 
    h6 { font-size: 0.9rem !important; line-height: 1.4 !important; }
    
    p { font-size: 0.9rem !important; line-height: 1.5 !important; text-align: left !important; }
    
    /* Force section padding */
    section {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    /* Navigation mobile */
    .navbar {
        padding: 0.5rem 10px !important;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
    }
    
    .navbar-logo {
        height: 35px !important;
    }
    
    .navbar-contact-info {
        display: none !important;
    }
    
    /* Hero section mobile */
    .hero-section {
        padding: 2rem 0 !important;
        text-align: center !important;
    }
    
    .hero-section h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-section p {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Verification cards mobile */
    .verification-cards-section {
        margin-top: -8rem !important;
        padding: 0 !important;
    }
    
    .verification-card,
    .info-card {
        margin-bottom: 1rem !important;
        width: 100% !important;
        min-height: 150px !important;
        padding: 1rem !important;
    }
    
    .verification-card .card-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .verification-input {
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    .verify-btn {
        width: 100% !important;
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
    }
    
    .info-card p {
        color: var(--Text-text-primary-paragraph, #384250);
        font-size: 16px !important;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
    }
    
    /* FAQ mobile */
    .faq-section {
        padding: 1.5rem 0 !important;
    }
    
    .faq-title {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    
    .faq-subtitle {
        font-size: 0.8rem !important;
    }
    
    .accordion-button {
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
    }
    
    .accordion-body {
        padding: 0.75rem !important;
    }
    
    .faq-option-card-primary,
    .faq-option-card-danger,
    .faq-option-card-secondary {
        margin-bottom: 0.75rem !important;
        padding: 1rem !important;
    }
    
    /* Destinations mobile */
    .destinations-section {
        padding: 1.5rem 0 !important;
    }
    
    .destinations-title {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .destinations-description {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    .destinations-cards-title {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    .destination-card {
        margin-bottom: 1rem !important;
        border-radius: 12px !important;
    }
    
    .destination-image {
        height: 200px !important;
        margin: 10px !important;
    }
    
    .destination-info {
        padding: 1rem !important;
    }
    
    .destination-name {
        font-size: 1.1rem !important;
    }
    
    .destination-tags {
        font-size: 1.1rem !important;
    }
    
    /* Carousel mobile */
    .carousel-navigation {
        gap: 0.5rem !important;
        margin-top: 1rem !important;
    }
    
    .carousel-arrow {
        width: 35px !important;
        height: 35px !important;
        min-width: 35px !important;
        min-height: 35px !important;
    }
    
    .carousel-dot {
        width: 8px !important;
        height: 8px !important;
        min-width: 8px !important;
        min-height: 8px !important;
    }
    
    /* Footer mobile */
    footer {
        padding: 1rem 0 !important;
    }
    
    .footer-contact-info {
        flex-direction: column !important;
        text-align: left !important;
        gap: 0.5rem !important;
    }
    
    .hr-vr {
        display: none !important;
    }
    
    .footer-p,
    .footer-p-2 {
        font-size: 0.8rem !important;
    }
}

/* TABLET DEVICES (Small to Medium) - 576px to 991px */
@media screen and (min-width: 576px) and (max-width: 991.98px) {
    /* Container adjustments */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Typography */
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.75rem !important; }
    h3 { font-size: 1.5rem !important; }
    
    /* Navigation tablet */
    .navbar-logo {
        height: 53px !important;
    }
    
    .navbar-contact-info {
        display: flex !important;
    }
    
    /* Hero section tablet */
    .hero-section {
        padding: 3rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
    }
    
    /* Verification cards tablet */
    .verification-cards-section {
        margin-top: -8rem !important;
    }
    
    .verification-card,
    .info-card {
        min-height: 200px !important;
        padding: 1.5rem !important;
    }
    
    /* Two column layout for medium screens */
    .col-md-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
    }
    
    /* Destinations tablet */
    .destinations-carousel .col-lg-4 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 350px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .destination-image {
        height: 220px !important;
        margin: 15px !important;
    }
    
    /* FAQ tablet */
    .faq-section {
        padding: 3rem !important;
    }
    
    .accordion-button {
        padding: 1rem !important;
        font-size: 1rem !important;
    }
    
    .accordion-body {
        padding: 1rem !important;
    }
    
    /* Carousel tablet */
    .carousel-arrow {
        width: 40px !important;
        height: 40px !important;
    }
    
    .carousel-dot {
        width: 10px !important;
        height: 10px !important;
    }
    
    /* Footer tablet */
    .footer-contact-info {
        justify-content: flex-end !important;
    }
}

/* DESKTOP DEVICES (Large) - 992px and up */
@media screen and (min-width: 992px) {
    /* Container adjustments */
    .container {
        max-width: 1140px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Typography desktop */
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
    h3 { font-size: 24px !important; }
    
    /* Navigation desktop */
    .navbar-logo {
        height: 81px !important;
    }
    
    .navbar-contact-info {
        display: flex !important;
    }
    
    /* Hero section desktop */
    .hero-section {
        padding: 4rem 0 !important;
        min-height: 60vh !important;
    }
    
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    
    /* Verification cards desktop */
    .verification-cards-section {
        /* margin-top: 3rem !important; */
    }
    
    .verification-card,
    .info-card {
        min-height: 250px !important;
        padding: 2rem !important;
    }
    
    /* Three column layout for desktop */
    .destinations-carousel .col-lg-4 {
        width: 33.333333% !important;
        flex: 0 0 33.333333% !important;
        max-width: 350px !important;
    }
    
    .destination-image {
        height: 200px !important;
        /* margin: 20px !important; */
    }
    
    /* FAQ desktop */
    .faq-section {
        padding: 4rem 0 !important;
    }
    
    .faq-title {
        font-size: 2rem !important;
    }
    
    .accordion-button {
        padding: 1.25rem !important;
        font-size: 1.1rem !important;
    }
    
    .accordion-body {
        padding: 1.25rem !important;
    }
    
    /* Carousel desktop */
    .carousel-arrow {
        width: 45px !important;
        height: 45px !important;
    }
    
    .carousel-dot {
        width: 12px !important;
        height: 12px !important;
    }
    
    /* Footer desktop */
    .footer-contact-info {
        justify-content: flex-end !important;
    }
}

/* EXTRA LARGE DESKTOP - 1200px and up */
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1360px !important;
    }
    
    h1 { font-size: 3rem !important; }
    h2 { font-size: 2.25rem !important; }
    
    .hero-section {
        padding: 5rem 0 !important;
    }
    
    .hero-section h1 {
        color: var(--Background-background-primary, #1B8354);
        font-size: 30px !important;
        font-style: normal;
        font-weight: 500 !important;
        line-height: 38px;
        margin: 0 !important;
    }

    .hero-section p {
        color: var(--Text-text-default, #161616);
        font-size: 20px !important;
        font-style: normal;
        font-weight: 400 !important;
        line-height: 30px;
        margin: 0 !important;
    }
    
    .destinations-title {
        font-size: 2.25rem !important;
    }
    
    .faq-title {
        font-size: 30px !important;
        color: var(--Text-text-default, #161616);
        font-style: normal;
        font-weight: 400;
        line-height: 38px;
    }
}

/* ==========================================================================
   FINAL RESPONSIVE OVERRIDES - HIGHEST PRIORITY
   ========================================================================== */

/* CRITICAL MOBILE FIXES */
@media only screen and (max-width: 575.98px) {
    /* Force responsive layout */
    html {
        font-size: 14px !important;
    }
    
    body {
        font-size: 14px !important;
        overflow-x: hidden !important;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
    }
    
    .row {
        margin: 0 !important;
    }
    
    .col-lg-6, .col-md-6, .col-lg-4, .col-md-4, .col-sm-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        margin-bottom: 0 !important;
        text-align: left !important;
        margin-top: 0 !important;
    }
    
    /* Force card responsiveness */
    .verification-card, .info-card, .destination-card {
        width: 100% !important;
        margin: 0 0 1rem 0 !important;
        padding: 1rem !important;
    }
    
    /* Force text sizes */
    h1 { font-size: 1.5rem !important; }
    h2 { font-size: 1.3rem !important; }
    h3 { font-size: 1.2rem !important; }
    
    /* Force button sizes */
    .btn {
        width: 100% !important;
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Hide non-essential elements */
    .navbar-contact-info {
        display: none !important;
    }
    
    /* Force section padding */
    section {
        padding: 1.5rem 0 !important;
    }
    
    /* Force hero section */
    .hero-section {
        padding: 2rem 0 !important;
        text-align: center !important;
    }
    
    .hero-section h1 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-section p {
        font-size: 0.9rem !important;
    }
}

/* TABLET RESPONSIVE */
@media only screen and (min-width: 576px) and (max-width: 991.98px) {
    .col-lg-4 {
        width: 50% !important;
        flex: 0 0 50% !important;
    }
    
    .verification-card, .info-card {
        min-height: 200px !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .carousel-navigation,
    .btn,
    footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}