/**
 * SWA Home Page Styles
 * Mobile-first, app-style design
 *
 * @package SWA
 */

/* ============================================
   Home Page Base Styles
   ============================================ */
.swa-home-page {
    padding: 0;
    margin: 0;
}

/* ============================================
   Hero Section
   ============================================ */
.swa-home-hero {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.swa-hero-slider__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.swa-hero-slider__title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.swa-hero-slider__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 24px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.swa-hero-slider__cta {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Home Promotional Banners
   ============================================ */
.swa-home-banner {
    padding: 42px 20px;
    background: #fff;
}

.swa-home-banner--after-hero {
    padding-top: 56px;
}

.swa-home-banner--after-destinations {
    padding-top: 8px;
    padding-bottom: 56px;
}

.swa-home-banner .swa-container {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0;
}

.swa-home-banner__link,
.swa-world-cup-banner {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.swa-home-banner__link:hover,
.swa-world-cup-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.13);
}

.swa-home-banner__image {
    display: block;
    width: 100%;
    height: auto;
}

.swa-home-page .swa-home-banner img {
    image-rendering: auto;
}

.swa-world-cup-banner {
    position: relative;
    min-height: 420px;
    background: #fff7ef;
    color: #1e396c;
    direction: ltr;
    isolation: isolate;
}

.swa-world-cup-banner__copy {
    position: relative;
    z-index: 2;
    display: flex;
    width: 43%;
    min-height: 420px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 58px 28px 58px 56px;
    text-align: center;
    direction: rtl;
}

.swa-world-cup-banner__title,
.swa-world-cup-banner__eyebrow,
.swa-world-cup-banner__description,
.swa-world-cup-banner__button {
    display: block;
}

.swa-world-cup-banner__title {
    font-size: clamp(36px, 4.4vw, 64px);
    font-weight: 900;
    line-height: 1.12;
    color: #1e396c;
    margin-bottom: 24px;
}

.swa-world-cup-banner__eyebrow {
    font-size: clamp(24px, 2.6vw, 42px);
    font-weight: 800;
    line-height: 1.25;
    color: #d98a26;
    margin-bottom: 22px;
}

.swa-world-cup-banner__description {
    font-size: clamp(18px, 1.7vw, 28px);
    line-height: 1.5;
    color: #1e396c;
    margin-bottom: 28px;
}

.swa-world-cup-banner__button {
    background: #ec8f3b;
    color: #fff;
    border-radius: 999px;
    padding: 12px 28px;
    font-size: clamp(16px, 1.3vw, 22px);
    font-weight: 800;
    line-height: 1.3;
    box-shadow: 0 10px 24px rgba(217, 138, 38, 0.22);
}

.swa-world-cup-banner__media {
    position: absolute;
    inset: 0 0 0 43%;
    z-index: 1;
    overflow: hidden;
    border-top-left-radius: 52% 100%;
}

.swa-world-cup-banner__image {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 125%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

/* ============================================
   Section Titles
   ============================================ */
.swa-section-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 16px;
    color: #1e396c;
}

.swa-section-subtitle {
    font-size: 16px;
    text-align: center;
    color: var(--swa-gray-600, #666);
    margin: 0 0 32px;
    line-height: 1.6;
}

/* ============================================
   Features Section
   ============================================ */
.swa-home-features {
    padding: 48px 20px;
    background: #fff;
}

.swa-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.swa-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.swa-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.swa-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #1e396c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.swa-feature-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #1e396c;
    text-align: center;
}

.swa-feature-description {
    font-size: 15px;
    color: var(--swa-gray-600, #666);
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

/* ============================================
   Visa Slider Section
   ============================================ */
.swa-home-visas {
    padding: 48px 0;
    background: var(--swa-gray-50, #f9fafb);
    width: 100%;
}

.swa-home-visas .swa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.swa-visa-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 24px 20px;
    box-sizing: border-box;
    margin-top: 32px;
}

.swa-visa-carousel {
    position: relative;
    padding-bottom: 40px;
    width: 100%;
    overflow: visible;
}

/* Default: Show as grid before Swiper initializes */
.swa-visa-carousel:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .swa-visa-carousel:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .swa-visa-carousel:not(.swiper-initialized) .swiper-wrapper {
        gap: 8px;
        padding: 0 12px;
    }
}

.swa-visa-carousel:not(.swiper-initialized) .swiper-slide {
    width: 100% !important;
}

.swa-visa-carousel .swiper-slide {
    height: auto;
    display: flex;
    box-sizing: border-box;
}

/* Swiper initialized styles - override grid with flex */
.swa-visa-carousel.swiper-initialized {
    overflow: hidden;
}

.swa-visa-carousel.swiper-initialized .swiper-wrapper {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: stretch;
    flex-wrap: nowrap;
    padding: 0;
}

.swa-visa-carousel.swiper-initialized .swiper-slide {
    height: auto;
    display: flex;
    box-sizing: border-box;
    flex-shrink: 0;
    width: auto !important;
}

/* Force 4 cards on desktop - override any other styles */
@media (min-width: 1200px) {
    .swa-home-visas .swa-visa-carousel.swiper-initialized {
        max-width: 100%;
    }
    
    .swa-home-visas .swa-visa-carousel.swiper-initialized .swiper-wrapper {
        max-width: 100%;
    }
    
    .swa-home-visas .swa-visa-carousel.swiper-initialized .swiper-slide {
        width: calc((100% - 48px) / 4) !important;
        max-width: calc((100% - 48px) / 4) !important;
        flex-basis: calc((100% - 48px) / 4) !important;
    }
}

.swa-visa-carousel .swiper-slide .swa-visa-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.swa-visa-carousel .swa-carousel-nav-button {
    position: absolute;
    top: calc(50% - 40px);
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid var(--swa-gray-200, #e5e7eb);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #1e396c;
}

.swa-visa-carousel .swa-carousel-nav-button::after {
    display: none !important;
}

.swa-visa-carousel .swa-carousel-nav-button:hover {
    background: #1e396c;
    color: #fff;
    border-color: #1e396c;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 57, 108, 0.4);
}

.swa-visa-carousel .swa-carousel-nav-button:active {
    transform: translateY(-50%) scale(0.95);
}

.swa-visa-carousel .swa-carousel-nav-button svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.swa-visa-carousel .swa-carousel-nav-button.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.swa-visa-carousel .swa-carousel-nav-button.swiper-button-prev {
    left: 10px;
}

.swa-visa-carousel .swa-carousel-nav-button.swiper-button-next {
    right: 10px;
}

/* Ensure carousel shows proper number of slides */
.swa-visa-carousel.swiper-initialized .swiper-slide {
    flex-shrink: 0;
}

/* RTL Support for visa carousel */
[dir="rtl"] .swa-visa-carousel .swa-carousel-nav-button.swiper-button-prev,
.swa-rtl .swa-visa-carousel .swa-carousel-nav-button.swiper-button-prev {
    left: auto;
    right: 10px;
}

[dir="rtl"] .swa-visa-carousel .swa-carousel-nav-button.swiper-button-next,
.swa-rtl .swa-visa-carousel .swa-carousel-nav-button.swiper-button-next {
    right: auto;
    left: 10px;
}

/* ============================================
   Destinations Grid Section
   ============================================ */
.swa-home-destinations {
    padding: 48px 20px;
    background: #fff;
}

.swa-destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.swa-dest-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.swa-dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.swa-dest-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.swa-dest-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--swa-gray-100, #f3f4f6);
}

.swa-dest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.swa-dest-card:hover .swa-dest-image img {
    transform: scale(1.05);
}

.swa-dest-content {
    padding: 20px;
    text-align: center;
}

.swa-dest-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #1e396c;
    transition: color 0.3s ease;
}

.swa-dest-card:hover .swa-dest-title {
    color: #1e396c;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.swa-home-why {
    padding: 48px 20px;
    background: #fff;
}

.swa-why-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.swa-why-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
}

.swa-why-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.swa-why-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.swa-why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--swa-gray-50, #f9fafb);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.swa-why-item:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.swa-why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #1e396c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.swa-why-content {
    flex: 1;
}

.swa-why-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #1e396c;
}

.swa-why-description {
    font-size: 15px;
    color: var(--swa-gray-600, #666);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   Testimonials Section
   ============================================ */
.swa-home-testimonials {
    padding: 48px 20px;
    background: var(--swa-gray-50, #f9fafb);
}

.swa-testimonials-carousel {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 40px;
    direction: ltr; /* Force LTR for testimonials */
}

.swa-testimonials-carousel .swiper-wrapper {
    align-items: stretch;
}

.swa-testimonials-carousel .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.swa-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.swa-testimonial-rating {
    margin-bottom: 24px;
    color: #ffc107;
    font-size: 20px;
}

.swa-testimonial-content {
    font-size: 18px;
    color: var(--swa-gray-700, #555);
    line-height: 1.8;
    margin: 0 0 32px;
    flex: 1;
    font-style: italic;
}

.swa-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.swa-testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--swa-primary, #1e396c);
    flex-shrink: 0;
}

.swa-testimonial-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--swa-primary, #1e396c);
    color: #fff;
    font-size: 32px;
    border: 3px solid var(--swa-primary, #1e396c);
}

.swa-testimonial-info {
    text-align: left;
}

.swa-testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #1e396c;
}

.swa-testimonial-position {
    font-size: 15px;
    color: var(--swa-gray-600, #666);
    margin: 0;
}

/* ============================================
   Clients Section
   ============================================ */
.swa-home-clients {
    padding: 48px 20px;
    background: #fff;
}

.swa-clients-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0 40px;
    overflow: hidden;
    position: relative;
}

.swa-clients-carousel .swiper-wrapper {
    align-items: center;
    display: flex !important;
    animation: swa-clients-slide 50s linear infinite;
    will-change: transform;
    width: max-content;
}

/* Pause animation on hover */
.swa-clients-carousel:hover .swiper-wrapper {
    animation-play-state: paused;
}

/* CSS-only auto-slide animation - smooth infinite scroll */
@keyframes swa-clients-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* For RTL support */
[dir="rtl"] .swa-clients-carousel .swiper-wrapper,
.swa-rtl .swa-clients-carousel .swiper-wrapper {
    animation-name: swa-clients-slide-rtl;
}

@keyframes swa-clients-slide-rtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

/* Slide styling - consistent width for all logos */
.swa-clients-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    flex-shrink: 0;
    width: 150px;
    min-width: 150px;
    margin-right: 20px;
}

.swa-clients-carousel .swiper-slide:last-child {
    margin-right: 0;
}

@media (min-width: 768px) {
    .swa-clients-carousel .swiper-slide {
        width: 180px;
        min-width: 180px;
    }
}

@media (min-width: 992px) {
    .swa-clients-carousel .swiper-slide {
        width: 200px;
        min-width: 200px;
    }
}

.swa-client-logo-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.swa-client-logo-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(30, 57, 108, 0.2);
}

.swa-client-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.swa-client-logo-link:hover {
    opacity: 0.8;
}

.swa-client-logo {
    width: 150px;
    height: 100px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swa-client-logo-wrapper:hover .swa-client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   FAQ Section
   ============================================ */
.swa-home-faq {
    padding: 56px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.swa-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.swa-faq-item {
    border: 1px solid rgba(30, 57, 108, 0.08);
    border-radius: 18px;
    background: #fff;
    padding: 24px 28px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swa-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.swa-faq-question {
    margin: 0 0 12px;
    text-align: left;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    color: #1e396c;
}

.swa-faq-answer {
    display: block;
}

.swa-faq-answer-content {
    padding: 0;
    font-size: 15px;
    color: #52607a;
    line-height: 1.8;
}

.swa-faq-answer-content > :first-child {
    margin-top: 0;
}

.swa-faq-answer-content > :last-child {
    margin-bottom: 0;
}

/* ============================================
   CTA Section
   ============================================ */
.swa-home-cta {
    position: relative;
    padding: 64px 20px;
    background: #1e396c;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.swa-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.swa-cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swa-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 57, 108, 0.85);
    z-index: 1;
}

.swa-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.swa-cta-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #fff;
}

.swa-cta-subtitle {
    font-size: 16px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.swa-cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    background: #fff;
    color: #1e396c;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.swa-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--swa-gray-50, #f9fafb);
}

/* ============================================
   Mobile Responsive for Visa Carousel
   ============================================ */
@media (max-width: 767px) {
    .swa-home-banner {
        padding: 28px 16px;
    }

    .swa-home-banner--after-hero {
        padding-top: 32px;
    }

    .swa-home-banner--after-destinations {
        padding-top: 0;
        padding-bottom: 36px;
    }

    .swa-home-banner__link,
    .swa-world-cup-banner {
        border-radius: 18px;
    }

    .swa-world-cup-banner {
        display: flex;
        min-height: 0;
        flex-direction: column-reverse;
    }

    .swa-world-cup-banner__copy {
        width: 100%;
        min-height: 0;
        padding: 28px 18px 32px;
    }

    .swa-world-cup-banner__title {
        margin-bottom: 14px;
    }

    .swa-world-cup-banner__eyebrow {
        margin-bottom: 12px;
    }

    .swa-world-cup-banner__description {
        margin-bottom: 18px;
    }

    .swa-world-cup-banner__button {
        max-width: 100%;
        padding: 11px 20px;
    }

    .swa-world-cup-banner__media {
        position: relative;
        inset: auto;
        width: 100%;
        aspect-ratio: 16 / 9;
        border-top-left-radius: 0;
    }

    .swa-world-cup-banner__image {
        object-position: center top;
    }

    .swa-visa-carousel-wrapper {
        padding: 16px 0;
        margin-top: 24px;
    }

    .swa-visa-carousel {
        padding: 0 16px 20px;
        overflow: hidden;
    }

    /* Hide navigation buttons on mobile */
    .swa-visa-carousel .swa-carousel-nav-button {
        display: none !important;
    }

    .swa-visa-carousel.swiper-initialized .swiper-wrapper {
        padding: 0;
    }

    .swa-visa-carousel.swiper-initialized .swiper-slide {
        box-sizing: border-box;
    }
    
    /* Ensure card takes full slide width */
    .swa-visa-carousel.swiper-initialized .swiper-slide .swa-visa-card {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
}

/* Small Mobile */
@media (max-width: 480px) {
    .swa-home-banner {
        padding-right: 12px;
        padding-left: 12px;
    }

    .swa-world-cup-banner__copy {
        padding: 24px 14px 28px;
    }

    .swa-visa-carousel-wrapper {
        padding: 12px 0;
    }

    .swa-visa-carousel {
        padding: 0 12px 20px;
    }
}

/* ============================================
   Tablet Styles (768px and up)
   ============================================ */
@media (min-width: 768px) {
    .swa-hero-slider__title {
        font-size: 42px;
    }

    .swa-hero-slider__subtitle {
        font-size: 20px;
    }

    .swa-section-title {
        font-size: 32px;
    }

    .swa-section-subtitle {
        font-size: 18px;
    }

    .swa-home-features {
        padding: 64px 20px;
    }

    .swa-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .swa-visa-carousel-wrapper {
        padding: 24px 60px;
    }

    .swa-destinations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .swa-dest-image {
        height: 200px;
    }

    .swa-feature-card {
        padding: 40px 32px;
    }

    .swa-feature-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .swa-feature-title {
        font-size: 22px;
    }

    .swa-home-visas,
    .swa-home-destinations {
        padding: 64px 0;
    }

    .swa-home-why {
        padding: 64px 20px;
    }

    .swa-why-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }

    .swa-why-image {
        margin-bottom: 0;
    }

    .swa-why-items {
        gap: 32px;
    }

    .swa-why-item {
        padding: 32px;
    }

    .swa-why-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 24px;
    }

    .swa-why-title {
        font-size: 20px;
    }

    .swa-home-testimonials {
        padding: 64px 20px;
    }

    .swa-testimonial-card {
        padding: 56px 48px;
        min-height: 200px;
    }

    .swa-testimonial-avatar {
        width: 80px;
        height: 80px;
    }

    .swa-testimonial-avatar-placeholder {
        font-size: 36px;
    }

    .swa-testimonial-content {
        font-size: 20px;
    }

    .swa-testimonial-rating {
        font-size: 22px;
    }

    .swa-testimonial-name {
        font-size: 20px;
    }

    .swa-testimonial-position {
        font-size: 16px;
    }

    .swa-home-clients {
        padding: 64px 20px;
    }

    .swa-client-logo {
        width: 180px;
        height: 120px;
    }


    .swa-home-faq {
        padding: 64px 20px;
    }

    .swa-faq-question {
        margin-bottom: 14px;
        font-size: 22px;
    }

    .swa-faq-answer-content {
        font-size: 16px;
    }

    .swa-home-cta {
        padding: 80px 20px;
    }

    .swa-cta-title {
        font-size: 36px;
    }

    .swa-cta-subtitle {
        font-size: 18px;
    }
}

/* ============================================
   Desktop Styles (992px and up)
   ============================================ */
@media (min-width: 992px) {
    .swa-hero-slider__title {
        font-size: 56px;
    }

    .swa-hero-slider__subtitle {
        font-size: 24px;
    }

    .swa-section-title {
        font-size: 40px;
    }

    .swa-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .swa-visa-carousel-wrapper {
        padding: 24px 80px;
    }

    .swa-destinations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .swa-dest-image {
        height: 220px;
    }

    .swa-why-wrapper {
        grid-template-columns: 1fr 1.2fr;
        gap: 64px;
    }

    .swa-why-items {
        grid-template-columns: 1fr;
    }

    .swa-home-clients {
        padding: 80px 20px;
    }

    .swa-client-logo {
        width: 200px;
        height: 130px;
    }


    .swa-home-cta {
        padding: 100px 20px;
    }

    .swa-cta-title {
        font-size: 42px;
    }

    .swa-cta-subtitle {
        font-size: 20px;
    }
}

/* ============================================
   RTL Support
   ============================================ */
[dir="rtl"] .swa-feature-card,
[dir="rtl"] .swa-why-item,
[dir="rtl"] .swa-testimonial-info,
[dir="rtl"] .swa-faq-question {
    text-align: right;
}

[dir="rtl"] .swa-testimonial-info {
    text-align: right;
}

/* ============================================
   Performance Optimizations
   ============================================ */
.swa-home-page img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.swa-feature-card,
.swa-why-item,
.swa-testimonial-card,
.swa-faq-item {
    will-change: transform;
}

/* ============================================
   Accessibility
   ============================================ */
.swa-faq-question:focus {
    outline: none;
}

.swa-cta-button:focus {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* ============================================
   Scroll Animations
   ============================================ */
.swa-feature-card,
.swa-why-item,
.swa-testimonial-card,
.swa-faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.swa-feature-card.swa-animate-in,
.swa-why-item.swa-animate-in,
.swa-testimonial-card.swa-animate-in,
.swa-faq-item.swa-animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .swa-home-hero,
    .swa-home-cta {
        page-break-inside: avoid;
    }

    .swa-hero-slider__nav,
    .swa-carousel-nav-button,
    .swiper-pagination {
        display: none;
    }

    .swa-feature-card,
    .swa-why-item,
    .swa-testimonial-card,
    .swa-faq-item {
        opacity: 1;
        transform: none;
    }
}
