/**
 * Landing Page Styles - Elharamain Wisata
 * Organized by: Variables, Base, Components, Desktop, Mobile
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Flutter App Color Scheme */
    --primary-color: #1976D2;
    --primary-dark: #1565C0;
    --primary-light: #42A5F5;
    --primary-surface: #E3F2FD;
    --accent-color: #FF6B35;
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-muted: #9E9E9E;
    --bg-white: #FFFFFF;
    --bg-gray: #F5F5F5;
    --card-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 20px;
    --transition: 0.3s ease;
}

/* ============================================
   BASE STYLES
   ============================================ */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-gray);
    color: var(--text-primary);
}

/* ============================================
   SECTION CONTAINER
   ============================================ */
.app-section {
    margin-bottom: 24px;
    padding-left: 8px;
    padding-right: 8px;
}

.app-section-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

/* ============================================
   SECTION HEADER - Icon + Title
   ============================================ */
.app-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-section-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #42A5F5 0%, #1976D2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-section-icon svg {
    width: 18px;
    height: 18px;
    color: white;
    fill: white;
}

.app-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.app-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(25, 118, 210, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(25, 118, 210, 0.3);
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}

.app-btn-outline:hover {
    background: rgba(25, 118, 210, 0.2);
    color: var(--primary-dark);
}

.app-btn-outline svg {
    width: 12px;
    height: 12px;
}

/* ============================================
   CARD BASE STYLES
   ============================================ */
.app-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

/* ============================================
   PACKAGE CARD
   ============================================ */
.app-package-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.app-package-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.app-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #42A5F5 0%, #1976D2 100%);
    padding: 6px 12px;
    border-radius: 20px;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.app-package-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-package-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.4;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-package-category {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: auto;
}

.app-package-category svg {
    width: 14px;
    height: 14px;
    fill: var(--primary-color);
}

.app-package-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 12px;
}

.app-package-price-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.app-package-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.app-package-pax-badge {
    background: linear-gradient(135deg, #42A5F5 0%, #1976D2 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ============================================
   FEATURE/ADVANTAGE CARD
   ============================================ */
.app-feature-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
}

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

.app-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--primary-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.app-feature-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.app-feature-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.app-feature-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   PEMBIMBING/GUIDE CARD
   ============================================ */
.app-guide-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: relative;
}

.app-guide-border {
    border: 2px solid #1565C0;
    border-radius: 12px;
    padding: 4px;
}

.app-guide-side-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: #1565C0;
    color: white;
    padding: 10px 4px;
    font-weight: bold;
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 2px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-guide-content {
    margin-left: 36px;
}

.app-guide-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* ============================================
   BRANCH CARD
   ============================================ */
.app-branch-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.app-branch-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

.app-branch-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #42A5F5 0%, #1976D2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 8px rgba(25, 118, 210, 0.2);
}

.app-branch-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.app-branch-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.app-branch-address {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   GALLERY
   ============================================ */
.app-gallery-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    aspect-ratio: 4/5;
}

.app-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.app-gallery-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   ARTICLE CARD
   ============================================ */
.app-article-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 380px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
    background: #000;
}

.app-article-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.app-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.app-article-card:hover .app-article-image img {
    transform: scale(1.05);
    opacity: 1;
}

.app-article-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    z-index: 2;
}

.app-article-date-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: auto;
    align-self: flex-start;
    margin-top: 10px;
}

.app-article-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.app-article-excerpt {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-article-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
    white-space: nowrap;
}

.app-article-link:hover {
    background: white;
    color: var(--primary-color);
}

/* ============================================
   FOLLOW US SECTION
   ============================================ */
.app-follow-section {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    box-shadow: var(--card-shadow);
}

.app-follow-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.app-follow-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-follow-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
}

.app-follow-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.app-follow-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0 0 16px 52px;
}

.app-social-buttons {
    display: flex;
    gap: 12px;
    margin-left: 52px;
}

.app-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.app-social-btn:hover {
    transform: scale(1.1);
}

.app-social-btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.app-social-btn-youtube {
    background: #FF0000;
}

.app-social-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* ============================================
   DOWNLOAD APP SECTION
   ============================================ */
.app-download-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    position: relative;
}

.app-download-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: #1565C0;
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
    z-index: 1;
}

.app-download-content {
    padding: 40px;
    position: relative;
    z-index: 2;
}

.app-download-phone {
    max-width: 260px;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid #333;
}

.app-download-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1565C0;
    margin-bottom: 16px;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    background: black;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s;
    margin-right: 12px;
    margin-bottom: 12px;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    color: white;
}

.app-store-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.app-contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.app-contact-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.app-contact-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-contact-input {
    width: 100%;
    background: white;
    border: none;
    border-radius: 25px;
    padding: 14px 20px;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.app-contact-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.app-contact-btn {
    width: 100%;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 25px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.app-contact-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
   OWL CAROUSEL CUSTOM STYLES
   ============================================ */
.owl-theme .owl-dots {
    margin-top: 25px !important;
    text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    margin: 5px 4px !important;
    background: #e0e0e0 !important;
    display: block;
    transition: opacity 0.2s ease, width 0.3s ease, background-color 0.3s ease !important;
    border-radius: 20px !important;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 35px !important;
    background: var(--primary-color) !important;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-light) !important;
}

.owl-carousel .owl-item {
    padding: 8px;
}

/* Hide navigation arrows - dots only */
.owl-theme .owl-nav {
    display: none !important;
}

/* ============================================
   HERO CAROUSEL STYLES
   ============================================ */
.hero-img {
    height: 220px;
    object-fit: cover;
}

#hero-carousel .item {
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(0.9);
}

#hero-carousel .owl-item.active.center .item {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   DESKTOP STYLES (min-width: 992px)
   ============================================ */
@media (min-width: 992px) {
    .hero-img {
        height: 450px;
    }

    .app-section-title {
        font-size: 1.2rem;
    }

    .app-package-title {
        font-size: 1rem;
    }

    .app-package-price {
        font-size: 1.25rem;
    }

    .app-feature-card {
        padding: 28px 20px;
    }

    .app-feature-icon {
        width: 72px;
        height: 72px;
    }

    .app-feature-icon img {
        width: 40px;
        height: 40px;
    }

    .app-feature-title {
        font-size: 1.05rem;
    }

    .app-feature-desc {
        font-size: 0.85rem;
    }

    .download-badge-img {
        height: 55px;
    }

    .download-app-image-wrapper {
        flex: 0 0 350px;
    }

    .download-app-image {
        max-height: 380px;
        transform: rotate(-8deg) translateY(10px);
    }
}

/* ============================================
   MOBILE STYLES (max-width: 767.98px)
   ============================================ */
@media (max-width: 767.98px) {
    .app-section {
        margin-bottom: 20px;
        padding-left: 6px;
        padding-right: 6px;
    }

    .app-section-card {
        padding: 16px;
        border-radius: 16px;
    }

    .app-section-title {
        font-size: 0.95rem;
    }

    .app-section-icon {
        width: 32px;
        height: 32px;
    }

    .app-section-icon svg {
        width: 16px;
        height: 16px;
    }

    .app-package-body {
        padding: 12px;
    }

    .app-package-title {
        font-size: 0.9rem;
        min-height: 42px;
    }

    .app-package-price {
        font-size: 1rem;
    }

    .app-package-pax-badge {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .app-feature-card {
        padding: 16px 12px;
    }

    .app-feature-icon {
        width: 52px;
        height: 52px;
    }

    .app-feature-icon img {
        width: 28px;
        height: 28px;
    }

    .app-feature-title {
        font-size: 0.9rem;
    }

    .app-feature-desc {
        font-size: 0.75rem;
    }

    .app-branch-card {
        padding: 16px;
    }

    .app-branch-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 12px;
    }

    .app-branch-name {
        font-size: 0.95rem;
    }

    .app-branch-address {
        font-size: 0.8rem;
    }

    .app-article-card {
        height: 280px;
    }

    .app-article-title {
        font-size: 1rem;
    }

    .app-social-buttons {
        margin-left: 0;
        justify-content: center;
    }

    .app-follow-subtitle {
        margin-left: 0;
        text-align: center;
    }

    .app-follow-header {
        justify-content: center;
    }

    .download-badge-img {
        height: 40px;
    }

    .download-app-image-wrapper {
        flex: 0 0 120px;
    }

    .download-app-image {
        max-height: 160px;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
        transform: rotate(-5deg);
    }

    .download-link:hover {
        transform: translateY(-3px);
    }

    .owl-theme .owl-dots {
        margin-top: 15px !important;
    }

    .owl-theme .owl-dots .owl-dot span {
        width: 8px !important;
        height: 8px !important;
    }

    .owl-theme .owl-dots .owl-dot.active span {
        width: 25px !important;
    }
}

/* ============================================
   TABLET STYLES (768px - 991px)
   ============================================ */
@media (min-width: 768px) and (max-width: 991.98px) {
    .app-section-title {
        font-size: 1.1rem;
    }

    .app-package-price {
        font-size: 1.15rem;
    }

    .app-feature-card {
        padding: 20px 14px;
    }

    .app-feature-icon {
        width: 60px;
        height: 60px;
    }
}

/* ============================================
   HERO WRAPPER
   ============================================ */
.hero-wrapper {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

/* ============================================
   MOBILE APP DOWNLOAD SECTION
   ============================================ */
.mobile-app-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 24px;
}

.mobile-app-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.mobile-app-content {
    z-index: 2;
}

.mobile-app-text {
    flex: 1;
}

.mobile-app-title-desktop {
    font-weight: 800;
    font-size: 2.5rem;
    color: #0d47a1;
}

.mobile-app-title-mobile {
    font-weight: 800;
    color: #0d47a1;
}

.mobile-app-subtitle-desktop {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 500px;
}

.mobile-app-subtitle-mobile {
    font-size: 0.85rem;
    line-height: 1.3;
}

.download-link {
    transition: transform 0.2s;
}

.download-link:hover {
    transform: translateY(-3px);
}

.download-badge-img {
    height: 40px;
}

.download-app-image-wrapper {
    flex: 0 0 120px;
}

.download-app-image {
    max-height: 160px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transform: rotate(-5deg);
}

/* ============================================
   ARTICLE CARD NATIVE STYLE
   ============================================ */
.app-article-card-native {
    height: 240px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.app-article-card-native .article-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
    inset: 0;
}

.app-article-card-native .article-title {
    font-size: 1.1rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.app-article-card-native .article-meta {
    font-size: 0.75rem;
}

.app-article-card-native .article-badge {
    font-size: 0.8rem;
}

/* ============================================
   FOLLOW US SECTION - Native Style
   ============================================ */
.follow-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    border-radius: 12px;
}

.follow-title {
    font-size: 1rem;
}

.follow-subtitle {
    font-size: 0.75rem;
    line-height: 1;
}

.social-btn-instagram {
    width: 42px;
    height: 42px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 12px;
}

.social-btn-youtube {
    width: 42px;
    height: 42px;
    background: #FF0000;
    border-radius: 12px;
}

/* ============================================
   CONTACT SECTION - Inline Replacements
   ============================================ */
.contact-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.contact-description {
    line-height: 1.6;
    opacity: 0.95;
    font-size: 0.95rem;
}

.contact-description-mobile {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-form-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.contact-form-title {
    font-weight: 700;
}

.contact-input-sm {
    height: 40px;
}

/* ============================================
   DESKTOP OVERRIDES FOR NEW CLASSES
   ============================================ */
@media (min-width: 992px) {
    .download-badge-img {
        height: 55px;
    }

    .download-app-image-wrapper {
        flex: 0 0 350px;
    }

    .download-app-image {
        max-height: 380px;
        transform: rotate(-8deg) translateY(10px);
    }
}

/* ============================================
   HAJI PREMIUM BANNER
   Updated: 2026-02-02
   ============================================ */
.haji-premium-banner {
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.haji-premium-banner:hover {
    transform: translateY(-8px);
}

.haji-premium-banner:hover>div {
    box-shadow: 0 30px 80px rgba(2, 119, 189, 0.4) !important;
}

/* Decorative Elements */
.haji-decor-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.haji-decor-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: hajiFloat 8s ease-in-out infinite;
}

.haji-decor-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: 10%;
    animation: hajiFloat 6s ease-in-out infinite reverse;
}

.haji-decor-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 30%;
    animation: hajiFloat 10s ease-in-out infinite;
}

.haji-decor-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

@keyframes hajiFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Badge & Pills */
.haji-star-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hajiPulse 2s ease-in-out infinite;
}

.haji-star-icon svg {
    width: 22px;
    height: 22px;
}

@keyframes hajiPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
}

.haji-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #1a237e;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.haji-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* CTA Button */
.haji-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    color: #0277bd;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.haji-premium-banner:hover .haji-cta-btn {
    background: #ffd700;
    color: #1a237e;
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

/* Image Wrapper */
.haji-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.haji-banner-image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.haji-premium-banner:hover .haji-banner-image {
    transform: scale(1.05);
}

/* Floating Stats */
.haji-float-stat {
    position: absolute;
    background: white;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: hajiFloatStat 3s ease-in-out infinite;
}

.haji-float-1 {
    bottom: 20px;
    right: -20px;
    top: auto;
    animation-delay: 0s;
}

.haji-float-2 {
    top: 20px;
    left: -20px;
    bottom: auto;
    animation-delay: 1.5s;
}

@keyframes hajiFloatStat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.haji-float-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Haji Banner Mobile Responsive */
@media (max-width: 991.98px) {

    .haji-decor-1,
    .haji-decor-2,
    .haji-decor-3 {
        display: none;
    }

    .haji-banner-image {
        max-height: 320px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center bottom;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .haji-float-stat {
        transform: scale(0.85);
        z-index: 10;
    }

    .haji-float-1 {
        bottom: -20px;
        right: 0;
        transform: scale(0.7);
    }

    .haji-float-2 {
        top: -15px;
        left: 0;
        transform: scale(0.7);
    }
}