/* ============= HERO SECTION STYLES ============= */
.hero-section {
    min-height: auto;
    position: relative;
    overflow: hidden;
}

/* Ensure hero flex sizing includes padding (prevents right-side clipping/overflow) */
.hero-content,
.hero-content *,
.hero-content *::before,
.hero-content *::after {
    box-sizing: border-box;
}

.hero-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: auto;
    position: relative;
    display: flex;
    align-items: center;
    padding: 85px 0 54px 0;
}

.hero-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 108, 44, 0.65);
    z-index: 1;
}


/* Remove the skyline effect since using actual background image */

.hero-background .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
    gap: 0;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* ============= VISA FORM CARD STYLES ============= */
.visa-form-card {
    background: white;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 24px 26px;
    box-shadow: none;
    flex: 1 1 60%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.form-header {
    margin-bottom: 18px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.green-border {
    width: 6px;
    height: 30px;
    background: var(--primary-color);
    position: relative;
    left: 0;
    top: 0;
    border-radius: 2px;
    flex-shrink: 0;
}

.form-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.form-content {
    width: 100%;
}

.form-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 0;
    align-items: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.apply-now-btn {
    background: var(--primary-color);
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 0 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: none;
    flex-shrink: 0;
    height: 46px;
    min-width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.apply-now-btn i {
    display: none;
}

.form-label {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 0;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.form-select {
    width: 100%;
    padding: 12px 14px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #111827;
    background: white;
    border: 1px solid #d1d5db;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-right: 14px;
    height: 46px;
    border-right: none;
}

.form-select:focus {
    outline: none;
    border-color: #d1d5db;
    background: white;
    box-shadow: none;
}

.form-select option {
    padding: 10px;
    font-family: "Poppins", sans-serif;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 44px;
    background: var(--primary-color);
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    pointer-events: none;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 12px;
    pointer-events: none;
    z-index: 1;
}

.select-wrapper:hover .select-arrow {
    color: white;
}

/* ============= APPLY NOW BUTTON ============= */
/* Button styles moved to form-row section above */

.apply-now-btn:hover {
    background: #005523;
    transform: none;
    box-shadow: none;
}

.apply-now-btn:active {
    transform: none;
    box-shadow: none;
}

/* ============= SECURITY SECTION ============= */
.security-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
    margin-top: 8px;
}

.security-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
}

.security-icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.security-text {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    color: #6b7280;
    line-height: 1.6;
    flex: 1;
}

.security-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============= HERO TEXT CONTENT ============= */
.hero-text-content {
    color: #111827;
    padding: 6px 22px;
    background: #E2E8E4;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    backdrop-filter: none;
    position: relative;
    margin-left: 0;
    flex: 1 1 37%;
    min-width: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.3;
    margin: 0 0 8px 0;
    color: #111827;
    text-shadow: none;
}

.hero-title em {
    font-style: italic;
    color: #111827;
}

.hero-description {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
    text-shadow: none;
    opacity: 1;
}

/* Disable hero animations for exact visual match */
.visa-form-card,
.hero-text-content {
    animation: none !important;
}

/* ============= RESPONSIVE DESIGN ============= */

/* Large Desktop */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 28px;
    }

    .visa-form-card {
        padding: 22px 24px;
    }

    .hero-text-content {
        padding: 16px 20px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 26px;
    }

    .visa-form-card {
        padding: 20px 22px;
    }

    .hero-text-content {
        padding: 14px 18px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-section {
        min-height: auto;
    }

    .hero-background {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-content {
        width: 95%;
        flex-direction: column;
        align-items: stretch;
        border-radius: 10px;
    }

    .visa-form-card {
        flex: 1 1 auto;
        border-radius: 10px 10px 0 0;
        padding: 26px 24px;
        order: 1;
    }

    .hero-text-content {
        flex: 1 1 auto;
        border-radius: 0 0 10px 10px;
        padding: 26px 24px;
        order: 2;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 12px;
    }

    .security-info {
        margin-top: 16px;
    }

    .hero-background .container {
        padding: 0 30px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .hero-background {
        min-height: auto;
        padding: 30px 0;
    }

    .hero-content {
        width: 100%;
        border-radius: 13px;
    }

    .visa-form-card {
        padding: 24px 20px;
        border-radius: 10px 10px 0 0;
    }

    .hero-text-content {
        padding: 24px 20px;
        border-radius: 0 0 10px 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .green-border {
        height: 40px;
    }

    .form-title {
        font-size: 18px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .form-group {
        width: 100%;
    }

    .apply-now-btn {
        width: 100%;
        height: 46px;
        font-size: 14px;
    }

    .form-select {
        padding: 12px 14px;
        font-size: 13px;
        height: 46px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 12px;
    }

    .security-info {
        margin-top: 14px;
        gap: 10px;
    }

    .security-icon {
        width: 30px;
        height: 30px;
    }

    .security-icon i {
        font-size: 13px;
    }

    .security-text {
        font-size: 10px;
    }

    .hero-background .container {
        padding: 0 20px;
    }
}

/* Mobile Medium */
@media (max-width: 480px) {
    .hero-background .container {
        padding: 0 15px;
    }

    .hero-content {
        width: 100%;
    }

    .visa-form-card {
        padding: 22px 18px;
        border-radius: 13px 13px 0 0;
    }

    .hero-text-content {
        padding: 22px 18px;
        border-radius: 0 0 13px 13px;
    }

    .form-title {
        font-size: 17px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .form-select {
        padding: 11px 12px;
        font-size: 13px;
        height: 46px;
    }

    .apply-now-btn {
        width: 100%;
        height: 46px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 11px;
    }

    .security-info {
        gap: 10px;
        margin-top: 12px;
    }

    .security-icon {
        width: 28px;
        height: 28px;
    }

    .security-icon i {
        font-size: 12px;
    }

    .security-text {
        font-size: 10px;
    }

    .green-border {
        height: 38px;
        width: 4px;
    }
}

/* Mobile Small */
@media (max-width: 360px) {
    .hero-background .container {
        padding: 0 12px;
    }

    .hero-content {
        width: 100%;
    }

    .visa-form-card {
        padding: 20px 16px;
        border-radius: 13px 13px 0 0;
    }

    .hero-text-content {
        padding: 20px 16px;
        border-radius: 0 0 13px 13px;
    }

    .form-title {
        font-size: 16px;
    }

    .form-label {
        font-size: 12px;
    }

    .hero-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 10px;
    }

    .form-select {
        padding: 10px 12px;
        font-size: 12px;
        height: 44px;
    }

    .apply-now-btn {
        padding: 10px 20px;
        font-size: 13px;
        height: 44px;
    }

    .security-icon {
        width: 26px;
        height: 26px;
    }

    .security-icon i {
        font-size: 11px;
    }

    .security-text {
        font-size: 9px;
    }

    .green-border {
        height: 36px;
    }
}

/* ============= HOVER EFFECTS ============= */
.visa-form-card {
    transition: all 0.3s ease;
}

/* .visa-form-card:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
} */

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.visa-form-card {
    animation: fadeInUp 0.8s ease-out;
}

.hero-text-content {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* ============= ACCESSIBILITY ============= */
/* .form-select:focus,
.apply-now-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
} */

.apply-now-btn:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* ============= PRINT STYLES ============= */
@media print {
    .hero-section {
        background: white !important;
        color: black !important;
        min-height: auto;
    }

    .hero-background {
        background: white !important;
    }

    .hero-text-content {
        color: black !important;
    }
}

/* ============= 4 EASY STEPS SECTION ============= */
.steps-section {
    padding: 40px 0 30px 0;
    background: #f9fafb;
    position: relative;
}

.steps-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.steps-header {
    text-align: center;
    margin-bottom: 30px;
}

.steps-title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.steps-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Horizontal scroll for mobile */
@media (max-width: 768px) {
    .steps-grid.horizontal-scroll {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        gap: 20px;
        padding: 10px 0 20px;
        margin: 0 0 0 15px;
        padding-right: 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior-x: contain;
        cursor: grab;
    }

    .steps-grid.horizontal-scroll::-webkit-scrollbar {
        display: none;
    }

    .steps-grid.horizontal-scroll .step-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 280px;
        max-width: 320px;
    }

    /* Active scrolling state */
    .steps-grid.horizontal-scroll:active {
        cursor: grabbing;
    }
}

.step-card {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 108, 44, 0.06);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 108, 44, 0.15);
    border-color: #005a24;
}

.step-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #e8f5ed;
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 16px auto;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.step-card:hover .step-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
    border-color: #005a24;
}

.step-icon {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-icon {
    color: white;
    transform: scale(1.05);
}

.step-description {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
    padding: 0 18px 16px 18px;
    text-align: center;
}

.step-footer {
    margin-top: auto;
    padding: 12px 16px;
    background: var(--primary-color);
    border-radius: 0 0 14px 14px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-footer {
    background: #005a24;
}

.step-badge {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    margin-left: 13px;
}

.step-number {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.step-label {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    letter-spacing: 0.2px;
    flex: 1;
    margin-right: 21px;
}

/* Steps Section Responsive */
@media (max-width: 1400px) {
    .steps-section {
        padding: 35px 0 45px 0;
    }

    .steps-title {
        font-size: 26px;
    }

    .steps-subtitle {
        font-size: 13px;
    }

    .steps-grid {
        gap: 20px;
    }

    .step-card {
        min-height: 210px;
    }

    .step-icon-wrapper {
        width: 56px;
        height: 56px;
        margin: 18px auto 14px auto;
    }

    .step-icon {
        font-size: 26px;
    }
}

@media (max-width: 1200px) {
    .steps-section {
        padding: 30px 0 40px 0;
    }

    .steps-header {
        margin-bottom: 25px;
    }

    .steps-title {
        font-size: 24px;
    }

    .steps-subtitle {
        font-size: 13px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 700px;
    }

    .step-card {
        min-height: 240px;
    }

    .step-icon-wrapper {
        width: 65px;
        height: 65px;
        margin: 24px auto 18px auto;
    }

    .step-icon {
        font-size: 30px;
    }

    .step-description {
        font-size: 13px;
        padding: 0 20px 18px 20px;
    }

    .step-footer {
        padding: 16px 20px;
    }

    .step-badge {
        width: 30px;
        height: 30px;
    }

    .step-number {
        font-size: 15px;
    }

    .step-label {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .steps-section {
        padding: 30px 0 40px 0;
    }

    .steps-header {
        margin-bottom: 25px;
    }

    .steps-title {
        font-size: 24px;
    }

    .step-card {
        min-height: 230px;
        border-radius: 16px;
    }

    .step-footer {
        border-radius: 0 0 14px 14px;
    }

    .step-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .step-icon {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 30px 0 40px 0;
    }

    .steps-header {
        margin-bottom: 25px;
    }

    .steps-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .steps-subtitle {
        font-size: 12px;
    }

    .steps-grid:not(.horizontal-scroll) {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 450px;
    }

    .step-card {
        min-height: auto;
        border-radius: 14px;
    }

    .step-footer {
        border-radius: 0 0 12px 12px;
    }

    .step-icon-wrapper {
        width: 65px;
        height: 65px;
        margin: 24px auto 18px auto;
    }

    .step-icon {
        font-size: 30px;
    }

    .step-description {
        font-size: 13px;
        padding: 0 20px 18px 20px;
        line-height: 1.6;
    }

    .step-footer {
        padding: 16px 20px;
    }

    .step-badge {
        width: 30px;
        height: 30px;
    }

    .step-number {
        font-size: 15px;
    }

    .step-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .steps-section {
        padding: 25px 0 35px 0;
    }

    .steps-header {
        margin-bottom: 22px;
    }

    .steps-title {
        font-size: 20px;
    }

    .steps-subtitle {
        font-size: 11px;
    }

    .step-card {
        border-width: 2px;
        border-radius: 12px;
    }

    .step-footer {
        border-radius: 0 0 10px 10px;
    }

    .step-icon-wrapper {
        width: 58px;
        height: 58px;
        margin: 20px auto 14px auto;
    }

    .step-icon {
        font-size: 26px;
    }

    .step-description {
        font-size: 12px;
        padding: 0 16px 16px 16px;
    }

    .step-footer {
        padding: 14px 16px;
    }

    .step-badge {
        width: 26px;
        height: 26px;
    }

    .step-number {
        font-size: 13px;
    }

    .step-label {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .steps-section {
        padding: 22px 0 32px 0;
    }

    .steps-header {
        margin-bottom: 20px;
    }

    .steps-title {
        font-size: 18px;
    }

    .steps-subtitle {
        font-size: 10px;
    }

    .step-card {
        border-width: 2px;
        border-radius: 10px;
    }

    .step-footer {
        border-radius: 0 0 8px 8px;
    }

    .step-icon-wrapper {
        width: 54px;
        height: 54px;
        margin: 18px auto 12px auto;
    }

    .step-icon {
        font-size: 24px;
    }

    .step-description {
        font-size: 11px;
        padding: 0 14px 14px 14px;
    }

    .step-footer {
        padding: 12px 14px;
        gap: 8px;
    }

    .step-badge {
        width: 24px;
        height: 24px;
    }

    .step-number {
        font-size: 12px;
    }

    .step-label {
        font-size: 11px;
    }
}

/* ============= HORIZONTAL SCROLL NAVIGATION BUTTONS ============= */
.scroll-prev-btn,
.scroll-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.scroll-prev-btn:hover,
.scroll-next-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
    background: #005a24;
}

.scroll-prev-btn {
    left: 5px;
}

.scroll-next-btn {
    right: 5px;
}

.scroll-prev-btn i,
.scroll-next-btn i {
    font-size: 16px;
}

@media (max-width: 768px) {

    .scroll-prev-btn,
    .scroll-next-btn {
        width: 36px;
        height: 36px;
    }

    .scroll-prev-btn i,
    .scroll-next-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .scroll-prev-btn,
    .scroll-next-btn {
        width: 32px;
        height: 32px;
    }

    .scroll-prev-btn i,
    .scroll-next-btn i {
        font-size: 12px;
    }
}

/* ============= WHY CHOOSE US SECTION ============= */
.why-choose-section {
    padding: 48px 0;
    background: #eef1ef;
    position: relative;
}

/* Contain sizing/overflow to avoid layout breaking on small screens */
.why-choose-section,
.why-choose-section * {
    box-sizing: border-box;
}

.why-choose-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-content {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

/* ============= LEFT SIDE - HEADING & FEATURES ============= */
.why-choose-left {
    flex: 0 0 360px;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: auto;
    min-width: 0;
}

.why-choose-title {
    font-family: "Poppins", sans-serif;
    margin: 0 0 24px 0;
    padding-left: 14px;
    border-left: 6px solid var(--primary-color);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.12;
    color: #111111;
    letter-spacing: -0.2px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-flag {
    width: 28px;
    height: 21px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.feature-text {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    line-height: 1.35;
}

/* ============= RIGHT SIDE - VISA INFO ============= */
.why-choose-right {
    flex: 1;
    background: #eef1ef;
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    min-height: 340px;
    max-width: 100%;
    min-width: 0;
}

.visa-content-wrapper {
    display: flex;
    gap: 18px;
    height: 100%;
    /* padding: 14px; */
    box-sizing: border-box;
    min-width: 0;
}

.visa-types-tabs {
    display: flex;
    flex-direction: column;
    background: transparent;
    border-right: none;
    min-width: 175px;
    padding: 0;
    height: auto;
    overflow: visible;
    gap: 12px;
    min-width: 0;
    padding: 18px 2px 0px 10px;
}

.visa-tab {
    padding: 12px 12px;
    background: #ffffff;
    border: 1px solid #e3e6e3;
    border-left: 5px solid var(--primary-color);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    text-align: center;
    line-height: 1.15;
    border-radius: 10px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.visa-tab span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 4px;
}

.visa-tab.active {
    background: var(--primary-color);
    color: #ffffff;
    border-left: 5px solid #000000;

    box-shadow: 0 8px 18px rgba(0, 108, 44, 0.28);
}

.visa-tab.active span {
    color: rgba(255, 255, 255, 0.92);
}

.visa-tab:hover:not(.active) {
    background: #f5faf7;
    transform: translateY(-1px);
}

.visa-info-content {
    flex: 1;
    padding: 16px;
    position: relative;
    overflow: visible;
    height: auto;
    min-width: 0;
    background: white;
}

.visa-tab-content {
    display: none;
}

.visa-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.visa-tab-content,
.visa-tab-content p,
.visa-tab-content li {
    font-family: "Poppins", sans-serif;
    color: #2b2b2b;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.visa-tab-content p {
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 10px 0;
}

.visa-tab-content ul {
    margin: 8px 0 14px 22px;
    padding: 0;
    list-style: disc;
}

.visa-tab-content ul li {
    font-size: 14px;
    line-height: 1.6;
    padding: 3px 0;
}

.visa-info-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e7ebe7;
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.uae-emirates-info {
    display: flex;
    align-items: flex-start;
    width: 55%;
    gap: 10px;
    padding: 12px 12px;
    background: #eaf8ef;
    border-radius: 10px;
    margin-bottom: 0;
    border-left: 4px solid var(--primary-color);
}

.info-icon {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.emirates-text {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #2b2b2b;
    line-height: 1.45;
}

.visa-action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 45%;
}

.apply-visa-btn {
    background: var(--primary-color);
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 22px rgba(0, 108, 44, 0.22);
    width: 100%;
    text-align: center;
}

.apply-visa-btn:hover {
    background: #005523;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0, 108, 44, 0.28);
}

.more-info-link {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 600;
    text-align: center;
}

.more-info-link:hover {
    color: #005523;
    text-decoration: underline;
}

/* ============= WHY CHOOSE RESPONSIVE ============= */
@media (max-width: 1200px) {
    .why-choose-content {
        gap: 28px;
    }

    .why-choose-left {
        flex: 0 0 340px;
    }

    .why-choose-title {
        font-size: 32px;
        margin-bottom: 22px;
    }

    .visa-types-tabs {
        min-width: 165px;
    }

    .visa-info-content {
        padding: 6px 6px 6px 0;
    }
}

@media (max-width: 1024px) {
    .why-choose-section {
        padding: 44px 0;
    }

    .why-choose-content {
        flex-direction: column;
        gap: 26px;
    }

    .why-choose-left {
        flex: 1;
        width: 100%;
        max-width: 100%;
        min-height: auto;
    }

    .why-choose-title {
        font-size: 30px;
    }

    .visa-content-wrapper {
        min-height: auto;
        flex-direction: column;
        gap: 16px;
        padding: 14px;
    }

    .visa-types-tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        min-width: 0;
        overflow: visible;
        padding: 0;
        gap: 10px;
    }

    .visa-tab {
        width: 100%;
        min-width: 0;
        font-size: 14px;
        padding: 12px 8px;
        text-align: center;
        border-left: 0;
        border: 1px solid #cfd8dc;
        border-radius: 8px;
        box-shadow: none;
    }

    .visa-tab.active {
        background: linear-gradient(180deg, rgba(0, 108, 44, 0.85) 0%, var(--primary-color) 100%);
        color: #ffffff;
        border-color: transparent;
        box-shadow: 0 8px 16px rgba(0, 108, 44, 0.18);
    }

    .visa-tab.active span {
        color: rgba(255, 255, 255, 0.92);
    }

    .visa-info-content {
        padding: 0;
    }

    .visa-tab-content.active {
        border: 1px solid #cfd8dc;
        border-radius: 12px;
        padding: 14px;
        background: #ffffff;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-title {
        font-size: 28px;
        margin-bottom: 22px;
        border-left-width: 6px;
    }

    .features-list {
        gap: 18px;
    }

    .feature-flag {
        width: 28px;
        height: 21px;
    }

    .feature-text {
        font-size: 16px;
    }

    .visa-content-wrapper {
        flex-direction: column;
        min-height: auto;
        padding: 14px;
    }

    .visa-types-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        overflow: visible;
    }

    .visa-tab {
        width: 100%;
        padding: 12px 8px;
        font-size: 13px;
    }

    .visa-tab.active {
        border-left-color: transparent;
    }

    .visa-info-content {
        padding: 0;
    }

    .visa-action-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .apply-visa-btn {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 13px 14px;
    }

    .visa-info-footer {
        flex-direction: column;
    }

    .uae-emirates-info,
    .visa-action-buttons {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-container {
        padding: 0 15px;
    }

    .why-choose-title {
        font-size: 24px;
        margin-bottom: 18px;
        padding-left: 14px;
        border-left-width: 5px;
    }

    .features-list {
        gap: 16px;
    }

    .feature-flag {
        width: 34px;
        height: 26px;
    }

    .feature-text {
        font-size: 14px;
    }

    .visa-types-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .visa-tab {
        font-size: 13px;
        padding: 12px 10px;
        border-left: 6px solid var(--primary-color);
    }

    .visa-tab.active {
        border-left-color: transparent;
    }

    .visa-tab span {
        font-size: 12px;
    }

    .visa-info-content {
        padding: 4px 0 0 0;
    }

    .uae-emirates-info {
        padding: 12px 14px;
        margin-bottom: 0;
    }

    .emirates-text {
        font-size: 13px;
    }

    .apply-visa-btn {
        font-size: 15px;
        padding: 12px 14px;
    }

    .more-info-link {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .visa-types-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============= COMBINED SECTIONS WRAPPER ============= */
.combined-sections-wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.combined-sections-wrapper>section {
    position: relative;
    z-index: 2;
}

/* ============= THINGS TO DO BEFORE ARRIVAL SECTION ============= */
.things-todo-section {
    padding: 25px 0;
    background: transparent;
    position: relative;
}

.things-todo-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.things-todo-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.things-todo-left {
    flex: 1;
}

.things-todo-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0 0 8px 0;
    line-height: 1.3;
    padding-bottom: 12px;
    border-bottom: 3px solid #e0e0e0;
}

.things-todo-text {
    margin-top: 20px;
}

.things-todo-text p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 16px 0;
    text-align: justify;
}

.things-todo-text p:last-child {
    margin-bottom: 0;
}

.things-todo-right {
    flex: 0 0 250px;
}

.evisa-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border: 6px solid #f5f5f5;
}

.evisa-sample-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============= BENEFITS OF EVISA SECTION ============= */
.benefits-section {
    padding: 30px 0;
    background: transparent;
    position: relative;
}

.benefits-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.benefits-left {
    flex: 0 0 250px;
}

.airport-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.airport-img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-right {
    flex: 1;
}

.benefits-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0 0 20px 0;
    line-height: 1.3;
    border-bottom: 3px solid #e0e0e0;
    padding-bottom: 12px;
}

.benefits-text p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 16px 0;
    text-align: justify;
}

.benefits-text p:last-child {
    margin-bottom: 0;
}

/* ============= THINGS TODO & BENEFITS RESPONSIVE ============= */
@media (max-width: 1200px) {

    .things-todo-content,
    .benefits-content {
        gap: 35px;
    }

    .things-todo-title,
    .benefits-title {
        font-size: 28px;
    }

    .things-todo-right {
        flex: 0 0 150px;
    }

    .benefits-left {
        flex: 0 0 180px;
    }

    .things-todo-text p,
    .benefits-text p {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {

    .things-todo-section,
    .benefits-section {
        padding: 40px 0;
    }

    .things-todo-content {
        flex-direction: column;
        gap: 30px;
    }

    .benefits-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .things-todo-right,
    .benefits-left {
        flex: 1;
        width: 100%;
        max-width: 480px;
    }

    .things-todo-title,
    .benefits-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .things-todo-title {
        padding-bottom: 10px;
    }
}

@media (max-width: 768px) {

    .things-todo-section,
    .benefits-section {
        padding: 35px 0;
    }

    .things-todo-title,
    .benefits-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .things-todo-text,
    .benefits-text {
        margin-top: 15px;
    }

    .things-todo-text p,
    .benefits-text p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .evisa-image-wrapper {
        border: 5px solid #f5f5f5;
    }
}

@media (max-width: 480px) {

    .things-todo-section,
    .benefits-section {
        padding: 30px 0;
    }

    .things-todo-container,
    .benefits-container {
        padding: 0 15px;
    }

    .things-todo-title,
    .benefits-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .things-todo-title {
        padding-bottom: 8px;
    }

    .things-todo-text p,
    .benefits-text p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .evisa-image-wrapper {
        border: 4px solid #f5f5f5;
        border-radius: 8px;
    }

    .airport-image-wrapper {
        border-radius: 12px;
    }
}

@media (max-width: 360px) {

    .things-todo-section,
    .benefits-section {
        padding: 25px 0;
    }

    .things-todo-title,
    .benefits-title {
        font-size: 20px;
    }

    .things-todo-text p,
    .benefits-text p {
        font-size: 11px;
        margin-bottom: 10px;
    }
}

/* ============= COMBINED WRAPPER RESPONSIVE ============= */
@media (max-width: 768px) {
    /* .combined-sections-wrapper {
    background-attachment: scroll;
  } */

    /* .combined-sections-wrapper::before {
    background: rgba(255, 255, 255, 0.95);
  } */
}

/* ============= BUDGET-FRIENDLY THINGS TO DO SECTION ============= */
.budget-friendly-section {
    padding: 60px 0;
    background: var(--primary-color);
    position: relative;
}

.budget-friendly-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.budget-friendly-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

/* Left Side - Text Content */
.budget-friendly-left {
    flex: 1;
    color: white;
}

.budget-friendly-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 30px 0;
    line-height: 1.3;
}

.budget-friendly-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.budget-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-point {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.5;
    margin-top: 0;
    flex-shrink: 0;
}

.budget-text {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: white;
    line-height: 1.5;
    margin: 0;
}

/* Right Side - Beach Image */
.budget-friendly-right {
    flex: 0 0 500px;
}

.budget-image-wrapper {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.budget-beach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.budget-image-wrapper:hover .budget-beach-img {
    transform: scale(1.05);
}

/* ============= BUDGET-FRIENDLY RESPONSIVE DESIGN ============= */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
    .budget-friendly-content {
        gap: 60px;
    }

    .budget-friendly-title {
        font-size: 38px;
        margin-bottom: 35px;
    }

    .budget-friendly-right {
        flex: 0 0 450px;
    }

    .budget-image-wrapper {
        height: 340px;
    }

    .budget-text {
        font-size: 15px;
    }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
    .budget-friendly-section {
        padding: 60px 0;
    }

    .budget-friendly-content {
        gap: 50px;
    }

    .budget-friendly-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .budget-friendly-right {
        flex: 0 0 400px;
    }

    .budget-image-wrapper {
        height: 320px;
    }

    .budget-text {
        font-size: 15px;
    }

    .bullet-point {
        font-size: 22px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .budget-friendly-section {
        padding: 50px 0;
    }

    .budget-friendly-content {
        gap: 40px;
    }

    .budget-friendly-right {
        flex: 0 0 350px;
    }

    .budget-image-wrapper {
        height: 300px;
        border-radius: 15px;
    }

    .budget-friendly-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .budget-item {
        gap: 12px;
    }

    .bullet-point {
        font-size: 20px;
    }

    .budget-text {
        font-size: 14px;
    }

    .budget-friendly-list {
        gap: 18px;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .budget-friendly-section {
        padding: 40px 0;
    }

    .budget-friendly-container {
        padding: 0 15px;
    }

    .budget-friendly-content {
        flex-direction: column;
        gap: 35px;
    }

    .budget-friendly-left {
        order: 1;
    }

    .budget-friendly-right {
        order: 2;
        flex: 0 0 auto;
        width: 100%;
    }

    .budget-friendly-title {
        font-size: 28px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .budget-friendly-list {
        gap: 16px;
    }

    .budget-item {
        gap: 12px;
    }

    .bullet-point {
        font-size: 18px;
    }

    .budget-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .budget-image-wrapper {
        height: 280px;
        border-radius: 15px;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .budget-friendly-section {
        padding: 35px 0;
    }

    .budget-friendly-container {
        padding: 0 15px;
    }

    .budget-friendly-content {
        gap: 30px;
    }

    .budget-friendly-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .budget-friendly-list {
        gap: 14px;
    }

    .budget-item {
        gap: 10px;
    }

    .bullet-point {
        font-size: 16px;
    }

    .budget-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .budget-image-wrapper {
        height: 220px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
    .budget-friendly-section {
        padding: 30px 0;
    }

    .budget-friendly-container {
        padding: 0 12px;
    }

    .budget-friendly-content {
        gap: 25px;
    }

    .budget-friendly-title {
        font-size: 22px;
        margin-bottom: 18px;
        line-height: 1.3;
    }

    .budget-friendly-list {
        gap: 12px;
    }

    .budget-item {
        gap: 8px;
    }

    .bullet-point {
        font-size: 15px;
    }

    .budget-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .budget-image-wrapper {
        height: 200px;
        border-radius: 10px;
    }
}

/* ============= HOVER EFFECTS ============= */
.budget-item {
    transition: all 0.3s ease;
}

.budget-item:hover {
    transform: translateX(10px);
}

.budget-item:hover .bullet-point {
    color: #e2e8e4;
}

/* ============= ANIMATIONS ============= */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.budget-friendly-left {
    animation: fadeInLeft 0.8s ease-out;
}

.budget-friendly-right {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* ============= ACCESSIBILITY ============= */
.budget-item:focus-within {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ============= PRINT STYLES ============= */
@media print {
    .budget-friendly-section {
        background: white !important;
        color: black !important;
    }

    .budget-friendly-title,
    .budget-text,
    .bullet-point {
        color: black !important;
    }
}

/* ============= APPLY FOR DUBAI E-VISA SECTION ============= */
.apply-evisa-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.apply-evisa-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.apply-evisa-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(255, 255, 255, 0.95); */
    z-index: 1;
}

.apply-evisa-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.apply-evisa-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* ============= LEFT SIDE - APPLY INFO & VISA OPTIONS ============= */
.apply-evisa-left {
    flex: 1;
    max-width: 600px;
}

.apply-info-section {
    margin-bottom: 25px;
}

.apply-title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.apply-description {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.apply-description strong {
    color: #333333;
    font-weight: 600;
}

.visa-options-section {
    /* background: rgba(255, 255, 255, 0.8); */
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.visa-options-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.visa-options-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.visa-options-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visa-option-item {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 18px;
}

.visa-option-item:last-child {
    border-bottom: none;
}

.visa-option-item::before {
    content: '•';
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 8px;
}

/* ============= RIGHT SIDE - DOCUMENTS & STEPS ============= */
.apply-evisa-right {
    flex: 1;
    max-width: 600px;
}

.documents-section {
    margin-bottom: 25px;
}

.documents-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.documents-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.documents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}

.document-bullet {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.document-text {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
}

.application-steps-section {
    /* background: rgba(255, 255, 255, 0.8); */
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.steps-section-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.application-steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.application-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-icon-circle {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-small {
    color: white;
    font-size: 12px;
}

.step-text {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #333333;
    line-height: 1.4;
}

/* ============= APPLY E-VISA RESPONSIVE DESIGN ============= */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
    .apply-evisa-content {
        gap: 50px;
    }

    .apply-title {
        font-size: 30px;
    }

    .apply-description {
        font-size: 14px;
    }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
    .apply-evisa-section {
        padding: 35px 0;
    }

    .apply-evisa-content {
        gap: 35px;
    }

    .apply-title {
        font-size: 26px;
    }

    .visa-options-title,
    .documents-title,
    .steps-section-title {
        font-size: 18px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .apply-evisa-section {
        padding: 30px 0;
    }

    .apply-evisa-content {
        flex-direction: column;
        gap: 25px;
    }

    .apply-evisa-left,
    .apply-evisa-right {
        max-width: 100%;
    }

    .apply-info-section {
        margin-bottom: 20px;
    }

    .documents-section {
        margin-bottom: 18px;
    }

    .apply-title {
        font-size: 24px;
        text-align: center;
    }

    .visa-options-section,
    .application-steps-section {
        padding: 15px;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .apply-evisa-section {
        padding: 35px 0;
    }

    .apply-evisa-container {
        padding: 0 15px;
    }

    .apply-evisa-content {
        gap: 25px;
    }

    .apply-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .apply-description {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .visa-options-title,
    .documents-title,
    .steps-section-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .visa-options-subtitle,
    .documents-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .visa-options-section,
    .application-steps-section {
        padding: 18px;
    }

    .visa-option-item,
    .document-text,
    .step-text {
        font-size: 13px;
    }

    .application-steps-list {
        gap: 12px;
    }

    .step-icon-circle {
        width: 28px;
        height: 28px;
    }

    .step-icon-small {
        font-size: 12px;
    }

    .apply-info-section {
        margin-bottom: 25px;
    }

    .documents-section {
        margin-bottom: 20px;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .apply-evisa-section {
        padding: 30px 0;
    }

    .apply-evisa-container {
        padding: 0 12px;
    }

    .apply-evisa-content {
        gap: 20px;
    }

    .apply-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .apply-description {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .visa-options-title,
    .documents-title,
    .steps-section-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .visa-options-subtitle,
    .documents-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .visa-options-section,
    .application-steps-section {
        padding: 15px;
    }

    .visa-option-item,
    .document-text,
    .step-text {
        font-size: 12px;
    }

    .application-steps-list {
        gap: 10px;
    }

    .step-icon-circle {
        width: 26px;
        height: 26px;
    }

    .step-icon-small {
        font-size: 11px;
    }

    .application-step {
        gap: 10px;
    }

    .apply-info-section {
        margin-bottom: 20px;
    }

    .documents-section {
        margin-bottom: 18px;
    }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
    .apply-evisa-section {
        padding: 25px 0;
    }

    .apply-evisa-container {
        padding: 0 10px;
    }

    .apply-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .apply-description {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .visa-options-title,
    .documents-title,
    .steps-section-title {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .visa-options-subtitle,
    .documents-subtitle {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .visa-options-section,
    .application-steps-section {
        padding: 12px;
    }

    .visa-option-item,
    .document-text,
    .step-text {
        font-size: 11px;
    }

    .step-icon-circle {
        width: 24px;
        height: 24px;
    }

    .step-icon-small {
        font-size: 10px;
    }
}

/* ============= HOVER EFFECTS ============= */
.visa-option-item:hover {
    background: rgba(0, 108, 44, 0.05);
    padding-left: 25px;
    transition: all 0.3s ease;
}

.application-step:hover .step-icon-circle {
    background: #005a24;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.application-step:hover .step-text {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

/* ============= ANIMATIONS ============= */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.apply-evisa-left {
    animation: fadeInLeft 0.8s ease-out;
}

.apply-evisa-right {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* ============= ACCESSIBILITY ============= */
.visa-option-item:focus,
.application-step:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============= PRINT STYLES ============= */
@media print {
    .apply-evisa-section {
        background: white !important;
        color: black !important;
    }

    .apply-evisa-background::before {
        display: none;
    }

    .apply-title,
    .visa-options-title,
    .documents-title,
    .steps-section-title {
        color: black !important;
    }

    .step-icon-circle {
        background: #666 !important;
    }
}

/* ============= CUSTOMER INSIGHTS SECTION ============= */
.customer-insights-section {
    padding: 36px 0;
    background: #e8e8e8;
    position: relative;
}

.customer-insights-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ============= SECTION HEADER ============= */
.insights-header {
    text-align: center;
    margin-bottom: 40px;
}

.insights-title {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============= CUSTOMER REVIEWS GRID ============= */
.customer-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Horizontal scroll for mobile */
@media (max-width: 768px) {
    .customer-reviews-grid.horizontal-scroll {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        gap: 20px;
        padding: 10px 0 20px;
        margin: 0 0 0 15px;
        padding-right: 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior-x: contain;
        cursor: grab;
    }

    .customer-reviews-grid.horizontal-scroll::-webkit-scrollbar {
        display: none;
    }

    .customer-reviews-grid.horizontal-scroll .review-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 280px;
        max-width: 320px;
    }

    /* Active scrolling state */
    .customer-reviews-grid.horizontal-scroll:active {
        cursor: grabbing;
    }
}

/* ============= REVIEW CARD ============= */
.review-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ============= REVIEW HEADER ============= */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.customer-avatar {
    flex-shrink: 0;
}

.customer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.customer-details {
    flex: 1;
}

.customer-name {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star-rating i {
    color: #ffc107;
    font-size: 14px;
}

.country-flag {
    flex-shrink: 0;
}

.flag-image {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    /* border: 1px solid #ddd; */
}

/* ============= REVIEW CONTENT ============= */
.review-content {
    margin-top: 15px;
}

.review-text {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* ============= CUSTOMER INSIGHTS RESPONSIVE DESIGN ============= */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
    .customer-reviews-grid {
        gap: 25px;
    }

    .insights-title {
        font-size: 34px;
    }

    .review-card {
        padding: 22px;
    }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
    .customer-insights-section {
        padding: 45px 0;
    }

    .insights-header {
        margin-bottom: 35px;
    }

    .insights-title {
        font-size: 32px;
    }

    .customer-reviews-grid {
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .customer-name {
        font-size: 15px;
    }

    .review-text {
        font-size: 13px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .customer-insights-section {
        padding: 40px 0;
    }

    .insights-header {
        margin-bottom: 30px;
    }

    .insights-title {
        font-size: 30px;
    }

    .customer-reviews-grid:not(.horizontal-scroll) {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .review-card {
        padding: 18px;
    }

    .customer-photo {
        width: 45px;
        height: 45px;
    }

    .customer-name {
        font-size: 14px;
    }

    .star-rating i {
        font-size: 13px;
    }

    .flag-image {
        width: 28px;
        height: 18px;
    }

    .review-text {
        font-size: 13px;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .customer-insights-section {
        padding: 35px 0;
    }

    .customer-insights-container {
        padding: 0 15px;
    }

    .insights-header {
        margin-bottom: 25px;
    }

    .insights-title {
        font-size: 26px;
    }

    .title-underline {
        width: 50px;
        height: 2px;
    }

    .customer-reviews-grid:not(.horizontal-scroll) {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-card {
        padding: 16px;
    }

    .customer-info {
        gap: 10px;
    }

    .customer-photo {
        width: 40px;
        height: 40px;
    }

    .customer-name {
        font-size: 14px;
    }

    .star-rating i {
        font-size: 12px;
    }

    .flag-image {
        width: 25px;
        height: 16px;
    }

    .review-text {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .customer-insights-section {
        padding: 30px 0;
    }

    .customer-insights-container {
        padding: 0 12px;
    }

    .insights-header {
        margin-bottom: 20px;
    }

    .insights-title {
        font-size: 22px;
    }

    .title-underline {
        width: 40px;
    }

    .customer-reviews-grid:not(.horizontal-scroll) {
        gap: 15px;
    }

    .review-card {
        padding: 14px;
    }

    .review-header {
        margin-bottom: 12px;
    }

    .customer-info {
        gap: 8px;
    }

    .customer-photo {
        width: 35px;
        height: 35px;
    }

    .customer-name {
        font-size: 13px;
    }

    .star-rating i {
        font-size: 11px;
    }

    .flag-image {
        width: 22px;
        height: 14px;
    }

    .review-content {
        margin-top: 12px;
    }

    .review-text {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
    .customer-insights-section {
        padding: 25px 0;
    }

    .customer-insights-container {
        padding: 0 10px;
    }

    .insights-title {
        font-size: 20px;
    }

    .title-underline {
        width: 35px;
    }

    .customer-reviews-grid:not(.horizontal-scroll) {
        gap: 15px;
    }

    .review-card {
        padding: 12px;
    }

    .customer-photo {
        width: 32px;
        height: 32px;
    }

    .customer-name {
        font-size: 12px;
    }

    .star-rating i {
        font-size: 10px;
    }

    .flag-image {
        width: 20px;
        height: 12px;
    }

    .review-text {
        font-size: 10px;
    }
}

/* ============= HOVER EFFECTS ============= */
.review-card:hover .customer-photo {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.review-card:hover .star-rating i {
    color: #ff9500;
    transition: color 0.3s ease;
}

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

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

.review-card {
    animation: fadeInUp 0.6s ease-out;
}

.review-card:nth-child(1) {
    animation-delay: 0.1s;
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.review-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* ============= ACCESSIBILITY ============= */
.review-card:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.customer-photo {
    transition: transform 0.3s ease;
}

/* ============= PRINT STYLES ============= */
@media print {
    .customer-insights-section {
        background: white !important;
        color: black !important;
    }

    .insights-title {
        color: black !important;
    }

    .review-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        break-inside: avoid;
    }

    .star-rating i {
        color: #666 !important;
    }
}

/* ============= PREFERRED DESTINATION SECTION ============= */
.preferred-destination-section {
    padding: 35px 0;
    background: white;
    position: relative;
}

.preferred-destination-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============= DESTINATION HEADER ============= */
.destination-header {
    text-align: center;
    margin-bottom: 25px;
}

.destination-title {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.destination-title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============= ALPHABET NAVIGATION ============= */
.alphabet-navigation {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.alphabet-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #ddd;
    background: white;
    color: #666666;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alphabet-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.alphabet-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* ============= COUNTRIES GRID ============= */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* ============= COUNTRY CARD ============= */
.country-card {
    background: #f8fff8;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 15px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.country-card:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 108, 44, 0.15);
}

.country-card:hover .country-name {
    color: white;
}

.country-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    /* border: 1px solid #ddd; */
    flex-shrink: 0;
}

.country-name {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    transition: color 0.3s ease;
    line-height: 1.3;
}

/* ============= PREFERRED DESTINATION RESPONSIVE DESIGN ============= */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
    .destination-title {
        font-size: 34px;
    }

    .countries-grid {
        gap: 18px;
    }

    .country-card {
        padding: 18px 12px;
    }

    .alphabet-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
    .preferred-destination-section {
        padding: 50px 0;
    }

    .destination-header {
        margin-bottom: 35px;
    }

    .destination-title {
        font-size: 32px;
    }

    .alphabet-navigation {
        gap: 6px;
        margin-bottom: 30px;
    }

    .alphabet-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .countries-grid {
        gap: 16px;
    }

    .country-card {
        padding: 16px 10px;
    }

    .country-flag {
        width: 26px;
        height: 16px;
    }

    .country-name {
        font-size: 13px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .preferred-destination-section {
        padding: 45px 0;
    }

    .destination-header {
        margin-bottom: 30px;
    }

    .destination-title {
        font-size: 30px;
    }

    .alphabet-navigation {
        gap: 5px;
        margin-bottom: 25px;
    }

    .alphabet-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .countries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .country-card {
        padding: 15px 8px;
        gap: 10px;
    }

    .country-flag {
        width: 24px;
        height: 15px;
    }

    .country-name {
        font-size: 12px;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .preferred-destination-section {
        padding: 25px 0;
    }

    .preferred-destination-container {
        padding: 0 15px;
    }

    .destination-header {
        margin-bottom: 20px;
    }

    .destination-title {
        font-size: 24px;
    }

    .destination-title-underline {
        width: 50px;
        height: 2px;
    }

    .alphabet-navigation {
        gap: 3px;
        margin-bottom: 15px;
    }

    .alphabet-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .country-card {
        padding: 10px 5px;
        gap: 6px;
        flex-direction: column;
        text-align: center;
    }

    .country-flag {
        width: 20px;
        height: 12px;
    }

    .country-name {
        font-size: 11px;
        line-height: 1.2;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .preferred-destination-section {
        padding: 20px 0;
    }

    .preferred-destination-container {
        padding: 0 12px;
    }

    .destination-header {
        margin-bottom: 15px;
    }

    .destination-title {
        font-size: 20px;
    }

    .destination-title-underline {
        width: 35px;
    }

    .alphabet-navigation {
        gap: 2px;
        margin-bottom: 12px;
    }

    .alphabet-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
        border-radius: 6px;
    }

    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .country-card {
        padding: 10px 5px;
        gap: 6px;
    }

    .country-flag {
        width: 20px;
        height: 12px;
    }

    .country-name {
        font-size: 10px;
    }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
    .preferred-destination-section {
        padding: 30px 0;
    }

    .preferred-destination-container {
        padding: 0 10px;
    }

    .destination-title {
        font-size: 20px;
    }

    .destination-title-underline {
        width: 35px;
    }

    .alphabet-navigation {
        gap: 2px;
        margin-bottom: 15px;
    }

    .alphabet-btn {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }

    .countries-grid {
        gap: 8px;
    }

    .country-card {
        padding: 8px 4px;
        gap: 5px;
    }

    .country-flag {
        width: 18px;
        height: 11px;
    }

    .country-name {
        font-size: 9px;
    }
}

/* ============= HOVER EFFECTS ============= */
.country-card:hover .country-flag {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.alphabet-btn:active {
    transform: translateY(0);
}

/* ============= ANIMATIONS ============= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.country-card {
    animation: fadeInUp 0.6s ease-out;
}

.country-card:nth-child(1) {
    animation-delay: 0.1s;
}

.country-card:nth-child(2) {
    animation-delay: 0.2s;
}

.country-card:nth-child(3) {
    animation-delay: 0.3s;
}

.country-card:nth-child(4) {
    animation-delay: 0.4s;
}

.country-card:nth-child(5) {
    animation-delay: 0.5s;
}

.country-card:nth-child(6) {
    animation-delay: 0.6s;
}

.country-card:nth-child(7) {
    animation-delay: 0.7s;
}

.country-card:nth-child(8) {
    animation-delay: 0.8s;
}

.country-card:nth-child(9) {
    animation-delay: 0.9s;
}

.country-card:nth-child(10) {
    animation-delay: 1.0s;
}

.country-card:nth-child(11) {
    animation-delay: 1.1s;
}

.country-card:nth-child(12) {
    animation-delay: 1.2s;
}

.country-card:nth-child(13) {
    animation-delay: 1.3s;
}

.country-card:nth-child(14) {
    animation-delay: 1.4s;
}

.country-card:nth-child(15) {
    animation-delay: 1.5s;
}

/* ============= ACCESSIBILITY ============= */
.alphabet-btn:focus,
.country-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.alphabet-btn:focus {
    border-color: var(--primary-color);
    /* color: var(--primary-color); */
}

.country-card:focus {
    background: var(--primary-color);
    color: white;
}

.country-card:focus .country-name {
    color: white;
}

/* ============= PRINT STYLES ============= */
@media print {
    .preferred-destination-section {
        background: white !important;
        color: black !important;
    }

    .destination-title {
        color: black !important;
    }

    .country-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        break-inside: avoid;
        background: white !important;
    }

    .country-name {
        color: black !important;
    }

    .alphabet-btn {
        border: 1px solid #ddd !important;
        background: white !important;
        color: black !important;
    }

    .alphabet-btn.active {
        background: #666 !important;
        color: white !important;
    }
}

/* ============= DISCOVER THE UAE SECTION ============= */
.discover-uae-section {
    background: var(--primary-color);
    padding: 30px 0;
    color: white;
}

.discover-uae-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============= DISCOVER HEADER ============= */
.discover-header {
    text-align: center;
    margin-bottom: 40px;
}

.discover-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.discover-title-underline {
    width: 60px;
    height: 3px;
    background: #ffffff;
    margin: 0 auto;
    border-radius: 2px;
}

/* ============= DISCOVER CONTENT GRID ============= */
.discover-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ============= DISCOVER COLUMNS ============= */
.discover-left-column,
.discover-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ============= DISCOVER ITEM ============= */
.discover-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.discover-item-header {
    margin-bottom: 5px;
}

.discover-item-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.discover-item-text {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* ============= DISCOVER QUOTE BOX ============= */
.discover-quote-box {
    background: #197A41;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px 20px;
    margin-top: 10px;
}

.discover-quote-text {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: white;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
    font-style: italic;
}

.discover-quote-text strong {
    font-weight: 700;
    color: white;
}

/* ============= DISCOVER UAE RESPONSIVE DESIGN ============= */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
    .discover-uae-section {
        padding: 45px 0;
    }

    .discover-title {
        font-size: 30px;
    }

    .discover-content-grid {
        gap: 35px;
    }

    .discover-item-title {
        font-size: 19px;
    }

    .discover-quote-box {
        padding: 22px 18px;
    }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
    .discover-uae-section {
        padding: 40px 0;
    }

    .discover-uae-container {
        padding: 0 18px;
    }

    .discover-header {
        margin-bottom: 35px;
    }

    .discover-title {
        font-size: 28px;
    }

    .discover-content-grid {
        gap: 30px;
    }

    .discover-left-column,
    .discover-right-column {
        gap: 25px;
    }

    .discover-item-title {
        font-size: 18px;
    }

    .discover-item-text {
        font-size: 13px;
    }

    .discover-quote-text {
        font-size: 14px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .discover-uae-section {
        padding: 35px 0;
    }

    .discover-title {
        font-size: 26px;
    }

    .discover-content-grid {
        gap: 25px;
    }

    .discover-item-title {
        font-size: 17px;
    }

    .discover-quote-box {
        padding: 20px 16px;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .discover-uae-section {
        padding: 30px 0;
    }

    .discover-uae-container {
        padding: 0 15px;
    }

    .discover-header {
        margin-bottom: 30px;
    }

    .discover-title {
        font-size: 24px;
    }

    .discover-title-underline {
        width: 50px;
        height: 2px;
    }

    .discover-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .discover-left-column,
    .discover-right-column {
        gap: 20px;
    }

    .discover-item-title {
        font-size: 16px;
    }

    .discover-item-text {
        font-size: 13px;
        text-align: left;
    }

    .discover-quote-box {
        padding: 18px 15px;
    }

    .discover-quote-text {
        font-size: 13px;
        text-align: left;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .discover-uae-section {
        padding: 25px 0;
    }

    .discover-uae-container {
        padding: 0 12px;
    }

    .discover-header {
        margin-bottom: 25px;
    }

    .discover-title {
        font-size: 22px;
    }

    .discover-title-underline {
        width: 45px;
    }

    .discover-content-grid {
        gap: 20px;
    }

    .discover-left-column,
    .discover-right-column {
        gap: 18px;
    }

    .discover-item {
        gap: 10px;
    }

    .discover-item-title {
        font-size: 15px;
    }

    .discover-item-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .discover-quote-box {
        padding: 15px 12px;
    }

    .discover-quote-text {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
    .discover-uae-section {
        padding: 20px 0;
    }

    .discover-uae-container {
        padding: 0 10px;
    }

    .discover-header {
        margin-bottom: 20px;
    }

    .discover-title {
        font-size: 20px;
    }

    .discover-title-underline {
        width: 40px;
        height: 2px;
    }

    .discover-content-grid {
        gap: 15px;
    }

    .discover-left-column,
    .discover-right-column {
        gap: 15px;
    }

    .discover-item {
        gap: 8px;
    }

    .discover-item-title {
        font-size: 14px;
    }

    .discover-item-text {
        font-size: 11px;
    }

    .discover-quote-box {
        padding: 12px 10px;
    }

    .discover-quote-text {
        font-size: 11px;
    }
}

/* ============= HOVER EFFECTS ============= */
.discover-item:hover .discover-item-title {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    transition: text-shadow 0.3s ease;
}

.discover-quote-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

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

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

.discover-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.discover-item:nth-child(1) {
    animation-delay: 0.1s;
}

.discover-item:nth-child(2) {
    animation-delay: 0.3s;
}

.discover-quote-box {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

/* ============= ACCESSIBILITY ============= */
.discover-item:focus-within .discover-item-title {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============= PRINT STYLES ============= */
@media print {
    .discover-uae-section {
        background: #f8f8f8 !important;
        color: #333 !important;
        padding: 30px 0 !important;
    }

    .discover-title,
    .discover-item-title,
    .discover-item-text,
    .discover-quote-text {
        color: #333 !important;
    }

    .discover-title-underline {
        background: #333 !important;
    }

    .discover-quote-box {
        background: #f0f0f0 !important;
        border: 1px solid #ddd !important;
    }

    .discover-content-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* ============= EXPLORE OUR TRAVEL & VISA BLOG SECTION ============= */
.blog-section {
    padding: 30px 0;
    background: #f8f9fa;
    position: relative;
}

.blog-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ============= BLOG HEADER ============= */
.blog-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    width: 100%;
}

.blog-header {
    text-align: left;
    flex: 1;
}

.blog-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.blog-title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0;
    border-radius: 2px;
}

/* ============= VIEW ALL BLOGS BUTTON ============= */
.view-all-blogs-btn {
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: var(--primary-color);
}

.view-all-blogs-btn a {
    color: var(--primary-color) !important;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: underline;
}

.view-all-blogs-btn:hover,
.view-all-blogs-btn:hover a {
    color: #005a24 !important;
    text-decoration: underline;
}
 



.view-all-blogs-btn i {
    font-size: 12px;
    color: white;
    /* Ensure icon is also white */
    transition: transform 0.3s ease;
}

.view-all-blogs-btn:hover i {
    transform: translateX(3px);
    color: white;
    /* Keep icon white on hover */
}

/* ============= BLOG CARDS GRID ============= */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
}

/* Horizontal scroll for mobile */
@media (max-width: 768px) {
    .blog-cards-grid.horizontal-scroll {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        gap: 20px;
        padding: 10px 0 20px;
        margin: 0 0 0 15px;
        padding-right: 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior-x: contain;
        cursor: grab;
    }

    .blog-cards-grid.horizontal-scroll::-webkit-scrollbar {
        display: none;
    }

    .blog-cards-grid.horizontal-scroll .blog-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 280px;
        max-width: 320px;
    }

    /* Active scrolling state */
    .blog-cards-grid.horizontal-scroll:active {
        cursor: grabbing;
    }
}

/* ============= BLOG CARD ============= */
.blog-card {
    background: #ffffff;
    border: 3px solid var(--primary-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 108, 44, 0.15);
}

/* ============= BLOG IMAGE ============= */
.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 13px 13px 0 0;
}

.blog-image {
    width: 100%;
    height: 86%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.01);
}

/* ============= BLOG CONTENT ============= */
.blog-content {
    padding: 0px 18px 0 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

.blog-card-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 10px 0;
    line-height: 1.4;
    min-height: 44px;
}

.blog-card-description {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 0 0;
    flex-grow: 1;
}

/* ============= BLOG POST META ============= */
.blog-post-meta {
    margin-top: auto;
    padding: 0;
    border-top: none;
    background: var(--primary-color);
    margin: 18px -18px 0 -18px;
    padding: 12px 18px;
    border-radius: 0 0 13px 13px;
}

.blog-post-date {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: inline-block;
}

/* ============= BLOG SECTION RESPONSIVE DESIGN ============= */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
    .blog-section {
        padding: 70px 0;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-cards-grid {
        gap: 22px;
    }

    .blog-image-wrapper {
        height: 170px;
    }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-section-header {
        margin-bottom: 45px;
    }

    .blog-cards-grid:not(.horizontal-scroll) {
        gap: 20px;
    }

    .blog-card-title {
        font-size: 15px;
        min-height: 42px;
    }

    .blog-content {
        padding: 16px 16px 0 16px;
    }

    .blog-post-meta {
        margin: 16px -16px 0 -16px;
        padding: 11px 16px;
    }

    .blog-image-wrapper {
        height: 160px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .blog-section {
        padding: 50px 0;
    }

    .blog-cards-grid:not(.horizontal-scroll) {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blog-title {
        font-size: 26px;
    }

    .blog-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .view-all-blogs-btn {
        align-self: flex-start;
        margin-top: 5px;
    }

    .blog-image-wrapper {
        height: 200px;
    }

    .blog-card-title {
        font-size: 16px;
        min-height: auto;
    }

    .blog-content {
        padding: 18px 18px 0 18px;
    }

    .blog-post-meta {
        margin: 18px -18px 0 -18px;
        padding: 12px 18px;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .blog-section {
        padding: 40px 0;
    }

    .blog-container {
        padding: 0 15px;
    }

    .blog-section-header {
        margin-bottom: 35px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .blog-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .blog-title-underline {
        width: 50px;
        height: 3px;
    }

    .view-all-blogs-btn {
        font-size: 13px;
        padding: 10px 20px;
        min-height: 40px;
        align-self: flex-start;
    }

    .blog-cards-grid:not(.horizontal-scroll) {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-image-wrapper {
        height: 220px;
    }

    .blog-card-title {
        font-size: 17px;
    }

    .blog-card-description {
        font-size: 14px;
    }

    .blog-content {
        padding: 20px 20px 0 20px;
    }

    .blog-post-meta {
        margin: 20px -20px 0 -20px;
        padding: 14px 20px;
    }

    .blog-post-date {
        font-size: 13px;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .blog-section {
        padding: 35px 0;
    }

    .blog-container {
        padding: 0 12px;
    }

    .blog-section-header {
        margin-bottom: 30px;
        gap: 12px;
    }

    .blog-title {
        font-size: 22px;
    }

    .blog-title-underline {
        width: 45px;
    }

    .view-all-blogs-btn {
        font-size: 12px;
        padding: 8px 16px;
        min-height: 38px;
    }

    .blog-cards-grid:not(.horizontal-scroll) {
        gap: 18px;
    }

    .blog-image-wrapper {
        height: 200px;
    }

    .blog-card {
        border-width: 2.5px;
        border-radius: 14px;
    }

    .blog-card-title {
        font-size: 15px;
    }

    .blog-card-description {
        font-size: 13px;
    }

    .blog-content {
        padding: 16px 16px 0 16px;
    }

    .blog-post-date {
        font-size: 11px;
    }

    .blog-post-meta {
        margin: 16px -16px 0 -16px;
        padding: 11px 16px;
    }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
    .blog-section {
        padding: 30px 0;
    }

    .blog-container {
        padding: 0 10px;
    }

    .blog-title {
        font-size: 20px;
    }

    .blog-image-wrapper {
        height: 180px;
    }

    .blog-card-title {
        font-size: 14px;
    }

    .blog-card-description {
        font-size: 12px;
    }

    .blog-content {
        padding: 14px 14px 0 14px;
    }

    .blog-post-meta {
        margin: 14px -14px 0 -14px;
        padding: 10px 14px;
    }

    .blog-post-date {
        font-size: 10px;
    }

    .view-all-blogs-btn {
        font-size: 11px;
        padding: 8px 14px;
        min-height: 36px;
    }
}

/* ============= BLOG HOVER EFFECTS ============= */
.blog-card:hover .blog-card-title {
    color: var(--primary-color);
}

/* ============= BLOG ANIMATIONS ============= */
@keyframes blogFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.blog-card {
    animation: blogFadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.blog-card:nth-child(1) {
    animation-delay: 0.1s;
}

.blog-card:nth-child(2) {
    animation-delay: 0.2s;
}

.blog-card:nth-child(3) {
    animation-delay: 0.3s;
}

.blog-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* ============= BLOG ACCESSIBILITY ============= */
.blog-card:focus-within {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

.blog-card {
    cursor: pointer;
}

/* ============= PRINT STYLES ============= */
@media print {
    .blog-section {
        padding: 20px 0;
        break-inside: avoid;
        background: #ffffff;
    }

    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .blog-card {
        box-shadow: none;
        border: 2px solid var(--primary-color);
        break-inside: avoid;
    }

    .blog-image-wrapper {
        height: 120px;
    }

    .blog-post-meta {
        background: var(--primary-color);
        color: #ffffff;
    }

    .view-all-blogs-btn {
        display: none;
    }
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* ============= ACCESSIBILITY ============= */
/* .faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.faq-item[aria-expanded="true"] .faq-toggle {
    background: #005a24;
} */

/* ============= PRINT STYLES ============= */
@media print {
    .faq-section {
        background: white !important;
        padding: 30px 0 !important;
    }

    .faq-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .faq-main-title,
    .faq-question-text,
    .faq-answer p {
        color: black !important;
    }

    .faq-title-underline {
        background: black !important;
    }

    .faq-item {
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }

    .faq-answer {
        max-height: none !important;
        display: block !important;
    }

    .faq-toggle {
        display: none !important;
    }
}

/* ============= UAE FACTS & FIGURES SECTION ============= */
.uae-facts-section {
    padding: 50px 0;
    background: #e8e8e8;
}

.uae-facts-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============= UAE FACTS HEADER ============= */
.uae-facts-header {
    text-align: left;
    margin-bottom: 35px;
}

.uae-facts-title {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #4a4a4a;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.uae-facts-title-underline {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 0;
    border-radius: 0;
}

/* ============= UAE FACTS GRID ============= */
.uae-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: transparent;
}

/* ============= FACT ITEM ============= */
.fact-item {
    padding: 20px 20px 18px 20px;
    border-bottom: 1px solid #c5c5c5;
    background: transparent;
    transition: all 0.2s ease;
}

/* Remove bottom border from last row items */
.fact-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.fact-item:hover {
    background: rgba(255, 255, 255, 0.3);
}

.fact-label {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.fact-value {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin: 0;
    line-height: 1.4;
}

/* ============= UAE FACTS RESPONSIVE DESIGN ============= */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
    .uae-facts-section {
        padding: 55px 0;
    }

    .uae-facts-title {
        font-size: 27px;
    }

    .fact-item {
        padding: 17px 22px;
        min-height: 72px;
    }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
    .uae-facts-section {
        padding: 50px 0;
    }

    .uae-facts-title {
        font-size: 26px;
    }

    .uae-facts-header {
        margin-bottom: 35px;
    }

    .fact-item {
        padding: 16px 20px;
        min-height: 70px;
    }

    .fact-label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .fact-value {
        font-size: 13px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .uae-facts-section {
        padding: 45px 0;
    }

    .uae-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reset borders for 2 column layout */
    .fact-item:nth-child(4n) {
        border-right: 1px solid #cccccc;
    }

    .fact-item:nth-child(2n) {
        border-right: none;
    }

    .fact-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #cccccc;
    }

    .fact-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .uae-facts-title {
        font-size: 24px;
    }

    .fact-item {
        padding: 18px 22px;
        min-height: auto;
    }

    .fact-label {
        font-size: 13px;
    }

    .fact-value {
        font-size: 14px;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .uae-facts-section {
        padding: 40px 0;
    }

    .uae-facts-container {
        padding: 0 15px;
    }

    .uae-facts-header {
        margin-bottom: 30px;
    }

    .uae-facts-title {
        font-size: 22px;
    }

    .uae-facts-title-underline {
        width: 45px;
    }

    .uae-facts-grid {
        grid-template-columns: 1fr;
        border: 1px solid #cccccc;
    }

    /* Reset borders for 1 column layout */
    .fact-item {
        border-right: none;
        border-bottom: 1px solid #cccccc;
    }

    .fact-item:last-child {
        border-bottom: none;
    }

    .fact-item {
        padding: 16px 18px;
        min-height: auto;
    }

    .fact-label {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .fact-value {
        font-size: 14px;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .uae-facts-section {
        padding: 35px 0;
    }

    .uae-facts-container {
        padding: 0 12px;
    }

    .uae-facts-header {
        margin-bottom: 25px;
    }

    .uae-facts-title {
        font-size: 20px;
    }

    .uae-facts-title-underline {
        width: 40px;
        height: 3px;
    }

    .fact-item {
        padding: 14px 16px;
    }

    .fact-label {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .fact-value {
        font-size: 13px;
    }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
    .uae-facts-section {
        padding: 30px 0;
    }

    .uae-facts-container {
        padding: 0 10px;
    }

    .uae-facts-title {
        font-size: 18px;
    }

    .uae-facts-title-underline {
        width: 35px;
    }

    .fact-item {
        padding: 12px 14px;
    }

    .fact-label {
        font-size: 11px;
    }

    .fact-value {
        font-size: 12px;
    }
}

/* ============= UAE FACTS ANIMATIONS ============= */
@keyframes factFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.fact-item {
    animation: factFadeIn 0.4s ease-out;
    animation-fill-mode: both;
}

.fact-item:nth-child(1) {
    animation-delay: 0.03s;
}

.fact-item:nth-child(2) {
    animation-delay: 0.06s;
}

.fact-item:nth-child(3) {
    animation-delay: 0.09s;
}

.fact-item:nth-child(4) {
    animation-delay: 0.12s;
}

.fact-item:nth-child(5) {
    animation-delay: 0.15s;
}

.fact-item:nth-child(6) {
    animation-delay: 0.18s;
}

.fact-item:nth-child(7) {
    animation-delay: 0.21s;
}

.fact-item:nth-child(8) {
    animation-delay: 0.24s;
}

.fact-item:nth-child(9) {
    animation-delay: 0.27s;
}

.fact-item:nth-child(10) {
    animation-delay: 0.3s;
}

.fact-item:nth-child(11) {
    animation-delay: 0.33s;
}

.fact-item:nth-child(12) {
    animation-delay: 0.36s;
}

.fact-item:nth-child(13) {
    animation-delay: 0.39s;
}

.fact-item:nth-child(14) {
    animation-delay: 0.42s;
}

.fact-item:nth-child(15) {
    animation-delay: 0.45s;
}

.fact-item:nth-child(16) {
    animation-delay: 0.48s;
}

/* ============= UAE FACTS ACCESSIBILITY ============= */
.fact-item:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

/* ============= PRINT STYLES ============= */
@media print {
    .uae-facts-section {
        padding: 20px 0;
        break-inside: avoid;
        background: #ffffff;
    }

    .uae-facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border: 1px solid #000000;
    }

    .fact-item {
        padding: 12px 15px;
        border: 1px solid #000000;
        break-inside: avoid;
        min-height: auto;
    }

    .fact-label {
        color: #000000;
    }

    .fact-value {
        color: #000000;
    }
}


/* ============= SMOOTH MOBILE HORIZONTAL SCROLL SECTIONS ============= */
@media (max-width: 768px) {

    /* Steps Section */
    .steps-grid.horizontal-scroll {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 20px !important;
        padding: 10px 0 20px !important;
        margin: 0 0 0 15px !important;
        padding-right: 15px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        overscroll-behavior-x: contain !important;
        cursor: grab !important;
    }

    .steps-grid.horizontal-scroll::-webkit-scrollbar {
        display: none !important;
    }

    .steps-grid.horizontal-scroll .step-card {
        flex: 0 0 85% !important;
        scroll-snap-align: start !important;
        min-width: 280px !important;
        max-width: 320px !important;
        height: auto !important;
    }

    /* Customer Reviews Section */
    .customer-reviews-grid.horizontal-scroll {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 20px !important;
        padding: 10px 0 20px !important;
        margin: 0 0 0 15px !important;
        padding-right: 15px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        overscroll-behavior-x: contain !important;
        cursor: grab !important;
    }

    .customer-reviews-grid.horizontal-scroll::-webkit-scrollbar {
        display: none !important;
    }

    .customer-reviews-grid.horizontal-scroll .review-card {
        flex: 0 0 85% !important;
        scroll-snap-align: start !important;
        min-width: 280px !important;
        max-width: 320px !important;
        height: auto !important;
    }

    /* Blog Cards Section */
    .blog-cards-grid.horizontal-scroll {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 20px !important;
        padding: 10px 0 20px !important;
        margin: 0 0 0 15px !important;
        padding-right: 15px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        overscroll-behavior-x: contain !important;
        cursor: grab !important;
    }

    .blog-cards-grid.horizontal-scroll::-webkit-scrollbar {
        display: none !important;
    }

    .blog-cards-grid.horizontal-scroll .blog-card {
        flex: 0 0 85% !important;
        scroll-snap-align: start !important;
        min-width: 280px !important;
        max-width: 320px !important;
        height: auto !important;
    }

    /* Active scrolling state */
    .steps-grid.horizontal-scroll:active,
    .customer-reviews-grid.horizontal-scroll:active,
    .blog-cards-grid.horizontal-scroll:active {
        cursor: grabbing !important;
    }

    /* Disable text selection during scroll */
    .steps-grid.horizontal-scroll,
    .customer-reviews-grid.horizontal-scroll,
    .blog-cards-grid.horizontal-scroll {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Re-enable text selection on child elements */
    .steps-grid.horizontal-scroll .step-card,
    .customer-reviews-grid.horizontal-scroll .review-card,
    .blog-cards-grid.horizontal-scroll .blog-card {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
}

/* ============= HORIZONTAL SCROLL NAVIGATION DOTS ============= */
.horizontal-scroll-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 0;
}

.horizontal-scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.horizontal-scroll-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive adjustments for horizontal scroll dots */
@media (max-width: 768px) {
    .horizontal-scroll-dots {
        display: flex !important;
    }
}

@media (min-width: 769px) {
    .horizontal-scroll-dots {
        display: none !important;
    }
}

/* ===== CUSTOM COUNTRY DROPDOWN ===== */

.custom-select {
    position: relative;
}

/* Button */
.custom-select-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.custom-select-btn i {
    color: #fff;
    font-size: 14px;
    z-index: 1;
}

/* DROPDOWN – FIXED TO VIEWPORT */
.custom-dropdown {
    position: fixed;
    /* 🔥 KEY FIX */
    background: #fff;
    border: 1px solid #ddd;
    max-height: 260px;
    overflow-y: auto;
    display: none;
    z-index: 2147483647;
    /* max safe z-index */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    width: 300px;
    /* JS will override */
}

.custom-dropdown.open {
    display: block;
}

.custom-option {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}

.custom-option:hover {
    background: #f5f5f5;
}

.option-flag,
.btn-flag {
    width: 22px;
    height: 15px;
    object-fit: cover;
}