:root {
            --primary-blue: #0f2766;
            --primary-dark: #121e3d;
            --accent-red: #e11d48; /* Red/Orange theme from mockup */
            --accent-red-hover: #be123c;
            --text-dark: #1f2937;
            --text-muted: #6b7280;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-color: #e2e8f0;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .flag-icon {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            object-fit: cover;
        }

        .hero-section {
            position: relative;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 120px 0 160px;
            color: var(--bg-white);
            text-center: center;
        }

        /* Adjusting layout for mockup hero subtitle emblem */
        .hero-emblem {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--bg-white);
            margin-bottom: 5px;
            letter-spacing: 1px;
            display: block;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
        }

        .hero-desc {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
            opacity: 0.95;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            font-weight: 500;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 20px;
        }

        .btn-hero-solid {
            background-color: var(--accent-red);
            color: var(--bg-white);
            font-weight: 700;
            font-size: 16px;
            padding: 12px 36px;
            border-radius: 8px;
            border: none;
            transition: var(--transition-smooth);
            text-decoration: none;
        }

        .btn-hero-solid:hover {
            background-color: var(--accent-red-hover);
            color: var(--bg-white);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
        }

        .btn-hero-outline {
            background-color: transparent;
            color: var(--bg-white);
            font-weight: 700;
            font-size: 16px;
            padding: 12px 36px;
            border-radius: 8px;
            border: 1.5px solid var(--bg-white);
            transition: var(--transition-smooth);
            text-decoration: none;
        }

        .btn-hero-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--bg-white);
            transform: translateY(-2px);
        }

        /* Overlapping Search Box Container */
        .search-outer-container {
            max-width: 1050px;
            width: 90%;
            margin: -90px auto 0;
            position: relative;
            z-index: 10;
        }

        .search-tabs {
            display: flex;
            gap: 24px;
            margin-bottom: 12px;
            padding-right: 20px;
        }

        .search-tab-btn {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 700;
            font-size: 16px;
            padding: 6px 0;
            cursor: pointer;
            position: relative;
            transition: var(--transition-smooth);
        }

        .search-tab-btn:hover {
            color: var(--bg-white);
        }

        .search-tab-btn.active {
            color: var(--bg-white);
        }

        .search-tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: var(--bg-white);
            border-radius: 2px;
        }

        /* Main Search Bar Card */
        .search-card {
            background: var(--bg-white);
            border-radius: 24px;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .search-col {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 4px 15px;
            border-left: 1px solid #e2e8f0;
            text-align: right;
        }

        label.search-col {
            cursor: pointer;
        }

        .search-col:last-of-type {
            border-left: none;
        }

        .search-col-icon {
            color: #94a3b8;
            font-size: 20px;
            flex-shrink: 0;
        }

        .search-col-info {
            display: flex;
            flex-direction: column;
        }

        .search-col-title {
            font-size: 13px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 2px;
        }

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

        .search-select-chevron {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 10px;
            color: #94a3b8;
            pointer-events: none;
        }

        .search-col-placeholder {
            font-size: 12px;
            color: #94a3b8;
            font-weight: 500;
        }

        /* Floating Search Round Button */
        .btn-search-round {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background-color: var(--primary-blue);
            color: var(--bg-white);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: var(--transition-smooth);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(15, 39, 102, 0.25);
            flex-shrink: 0;
        }

        .btn-search-round:hover {
            background-color: var(--primary-dark);
            transform: scale(1.05);
        }

        /* Features Section */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 0;
            width: 60px;
            height: 4px;
            background-color: var(--accent-red);
            border-radius: 2px;
        }

        .feature-card {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(229, 231, 235, 0.5);
            transition: var(--transition-smooth);
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(15, 39, 102, 0.08);
            border-color: rgba(15, 39, 102, 0.1);
        }

        .feature-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background-color: rgba(15, 39, 102, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-blue);
            font-size: 24px;
            transition: var(--transition-smooth);
        }

        .feature-card:hover .feature-icon-wrapper {
            background-color: var(--primary-blue);
            color: var(--bg-white);
        }

        /* Item Grid Showcase */
        .item-card {
            background: var(--bg-white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(229, 231, 235, 0.5);
            transition: var(--transition-smooth);
            height: 100%;
        }

        .item-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .item-img-container {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .item-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .item-card:hover .item-img {
            transform: scale(1.08);
        }

        .item-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary-blue);
            color: var(--bg-white);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
        }

        .item-price {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--primary-blue);
            padding: 4px 12px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
        }

        .item-content {
            padding: 20px;
        }

        .item-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .item-location {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .item-meta {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #f3f4f6;
            padding-top: 15px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .cta-pattern {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 0);
            background-size: 24px 24px;
            opacity: 0.3;
        }

        .cta-btn {
            background-color: var(--accent-red);
            color: var(--bg-white);
            font-weight: 700;
            padding: 12px 36px;
            border-radius: 50px;
            border: none;
            transition: var(--transition-smooth);
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover {
            background-color: var(--accent-red-hover);
            color: var(--bg-white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3);
        }

        /* Footer */
        footer {
            background-color: #ffffff;
            color: #475569;
            padding: 60px 0 30px;
            border-top: 1px solid #e2e8f0;
        }

        footer h5 {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 20px;
        }

        footer a {
            color: #64748b;
            font-size: 14px;
            text-decoration: none;
            transition: var(--transition-smooth);
            display: inline-block;
            margin-bottom: 12px;
        }

        footer a:hover {
            color: var(--accent-red);
            transform: translateX(-5px);
        }

        .footer-text {
            color: #64748b;
            font-size: 14px;
            margin-top: 5px;
        }

        /* About Section Styles */
        .about-section {
            background-color: var(--bg-white);
            overflow: hidden;
        }

        .about-banner {
            position: relative;
            padding: 100px 0;
            background-size: cover !important;
            background-position: center !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-banner-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .about-banner-desc {
            font-size: 1.25rem;
            font-weight: 500;
            max-width: 800px;
            line-height: 1.8;
            opacity: 0.95;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        .about-img-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }

        .about-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background-color: var(--accent-red);
            color: #ffffff;
            padding: 15px 25px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
            z-index: 5;
            min-width: 120px;
        }

        .badge-number {
            font-size: 24px;
            font-weight: 800;
            line-height: 1.2;
        }

        .badge-text {
            font-size: 13px;
            font-weight: 600;
        }

        .badge-target {
            background-color: var(--accent-red);
            color: #ffffff;
            font-weight: 700;
            font-size: 14px;
            padding: 6px 20px;
            border-radius: 8px;
            display: inline-block;
        }

        .about-heading {
            color: var(--primary-blue);
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.4;
        }

        .about-text {
            color: #475569;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* Dynamic Carousel Section */
        .plans-section {
            padding: 80px 0;
            background-color: var(--bg-light);
        }

        .plans-header {
            margin-bottom: 40px;
        }

        .plans-title {
            font-size: 26px;
            font-weight: 800;
            color: #0f172a;
        }

        .carousel-nav-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1.5px solid #1e293b;
            background: var(--bg-white);
            color: #1e293b;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            position: absolute;
            left: -80px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .carousel-nav-btn:hover {
            background-color: #1e293b;
            color: var(--bg-white);
            border-color: #1e293b;
        }

        /* Mockup Cards */
        .plan-card {
            background: var(--bg-white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            border: 1px solid #f1f5f9;
            transition: var(--transition-smooth);
            height: 100%;
        }

        .plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
        }

        .plan-img-wrapper {
            position: relative;
            height: 220px;
            padding: 10px;
        }

        .plan-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }

        .plan-card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            color: var(--bg-white);
            z-index: 5;
        }

        .plan-card-badge.holiday {
            background-color: var(--primary-blue);
        }

        .plan-card-badge.experience {
            background-color: var(--accent-red);
        }

        .plan-body {
            padding: 15px 20px 20px;
        }

        .plan-rating-row {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 4px;
            margin-bottom: 8px;
        }

        .plan-rating {
            font-size: 12px;
            font-weight: 700;
            color: var(--accent-red);
        }

        .plan-card-title {
            font-size: 16px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 6px;
        }

        .plan-card-location {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .plan-card-details {
            font-size: 12px;
            color: #94a3b8;
            border-top: 1px solid #f1f5f9;
            padding-top: 12px;
            margin-bottom: 15px;
            display: flex;
            gap: 12px;
        }

        .plan-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .plan-price {
            font-size: 14px;
            font-weight: 800;
            color: #0f172a;
        }

        .plan-price span {
            font-weight: 500;
            color: #64748b;
            font-size: 12px;
        }

        .plan-link {
            font-size: 13px;
            font-weight: 700;
            color: #64748b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition-smooth);
        }

        .plan-link:hover {
            color: var(--primary-blue);
        }

        .plan-link i {
            font-size: 10px;
            transition: var(--transition-smooth);
        }

        /* Featured Bookings Section */
        .featured-section {
            padding: 80px 0;
            background-color: var(--bg-white);
        }

        .featured-title {
            font-size: 28px;
            font-weight: 800;
            color: #0f172a;
            text-align: center;
            margin-bottom: 50px;
        }

        .featured-card {
            background: var(--bg-white);
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition-smooth);
            height: 100%;
        }

        .featured-card:hover {
            transform: translateY(-5px);
        }

        .featured-img-wrapper {
            position: relative;
            height: 200px;
            border-radius: 16px;
            overflow: hidden;
        }

        .featured-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-rating-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background-color: rgba(15, 23, 42, 0.65);
            backdrop-filter: blur(4px);
            color: var(--bg-white);
            padding: 2px 8px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .featured-rating-badge i {
            color: #fbbf24;
        }

        /* Dots overlay at bottom of image */
        .featured-img-dots {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 4px;
            z-index: 5;
        }

        .img-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
        }

        .img-dot.active {
            background-color: var(--bg-white);
            width: 12px;
            border-radius: 30px;
        }

        .featured-card-body {
            padding: 15px 4px 10px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .featured-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .featured-card-title {
            font-size: 15px;
            font-weight: 800;
            color: #0f172a;
            margin: 0;
        }

        .featured-card-location {
            font-size: 12px;
            color: #94a3b8;
            font-weight: 500;
        }

        .featured-price-info {
            text-align: left;
            flex-shrink: 0;
        }

        .featured-card-price {
            font-size: 14px;
            font-weight: 800;
            color: #0f172a;
        }

        .featured-card-price span {
            font-size: 11px;
            color: #94a3b8;
            font-weight: 500;
        }

        .btn-view-more-container {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }

        .btn-view-more {
            background: transparent;
            border: 1px solid #cbd5e1;
            color: #475569;
            font-weight: 700;
            font-size: 14px;
            padding: 10px 24px;
            border-radius: 8px;
            transition: var(--transition-smooth);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-view-more:hover {
            background-color: #f8fafc;
            border-color: #94a3b8;
            color: #0f172a;
        }

        /* Download App Banner Section */
        .app-download-section {
            padding: 40px 0 80px;
            background-color: var(--bg-white);
        }

        .app-banner {
            background: linear-gradient(135deg, #0a225e 0%, #0c276b 100%);
            border-radius: 24px;
            padding: 45px 60px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 15px 35px rgba(15, 39, 102, 0.15);
        }

        .app-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -30%;
            width: 80%;
            height: 200%;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.03);
            pointer-events: none;
        }

        .app-banner::after {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 60%;
            height: 140%;
            border-radius: 50%;
            border: 1px dashed rgba(255, 255, 255, 0.08);
            pointer-events: none;
        }

        .app-banner-content {
            color: var(--bg-white);
            text-align: right;
            z-index: 5;
            flex: 1;
        }

        .app-logo-title {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            direction: rtl;
        }

        .app-logo-title h3 {
            font-size: 32px;
            font-weight: 800;
            margin: 0;
            color: var(--bg-white);
        }

        .app-logo-icon {
            width: 38px;
            height: 38px;
            background-color: var(--accent-red);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 900;
            color: var(--bg-white);
        }

        .app-subtitle {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .app-store-btns {
            display: flex;
            gap: 15px;
            direction: rtl;
        }

        .app-store-btn {
            background-color: var(--bg-white);
            color: #0f172a;
            border-radius: 10px;
            padding: 8px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: var(--transition-smooth);
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .app-store-btn:hover {
            transform: translateY(-2px);
            background-color: #f1f5f9;
            color: #0f172a;
        }

        .app-store-btn i {
            font-size: 24px;
            color: #0f172a;
        }

        .app-store-btn-text {
            display: flex;
            flex-direction: column;
            text-align: right;
        }

        .app-store-btn-text .small-text {
            font-size: 10px;
            color: #64748b;
            font-weight: 500;
        }

        .app-store-btn-text .bold-text {
            font-size: 13px;
            font-weight: 700;
            color: #0f172a;
        }

        .app-banner-mockup {
            z-index: 5;
            position: relative;
            width: 320px;
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -40px;
            margin-bottom: -70px;
        }

        .app-phone-img {
            max-width: 100%;
            max-height: 380px;
            filter: drop-shadow(0 15px 30px rgba(0,0,0,0.35));
            object-fit: contain;
        }

        .app-banner--ltr {
            flex-direction: row;
        }

        .app-banner--ltr .app-banner-content {
            text-align: left;
        }

        .app-banner--ltr .app-logo-title {
            direction: ltr;
            justify-content: flex-start;
        }

        .app-banner--ltr .app-store-btns {
            direction: ltr;
            justify-content: flex-start;
        }

        .app-banner--ltr .app-store-btn-text {
            text-align: left;
        }

        .app-banner--ltr::before {
            left: auto;
            right: -30%;
        }

        .app-banner--ltr::after {
            left: auto;
            right: -10%;
        }

        .app-banner--rtl .app-banner-content {
            text-align: right;
        }

        .app-banner--rtl .app-logo-title {
            direction: rtl;
            justify-content: flex-start;
        }

        .app-banner--rtl .app-store-btns {
            direction: rtl;
            justify-content: flex-start;
        }

        .app-banner--rtl .app-store-btn-text {
            text-align: right;
        }

        /* Mind Today Section */
        .mind-section {
            padding: 80px 0 40px;
            background-color: var(--bg-white);
            text-align: center;
        }

        @media (min-width: 992px) {
            .col-lg-2-4 {
                flex: 0 0 20%;
                max-width: 20%;
            }
        }

        .mind-title {
            font-size: 28px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
        }

        .mind-tabs {
            display: inline-flex;
            background: #f1f5f9;
            padding: 4px;
            border-radius: 12px;
            margin-bottom: 40px;
            gap: 4px;
        }

        .mind-tab-btn {
            border: none;
            background: none;
            padding: 8px 24px;
            font-size: 14px;
            font-weight: 700;
            border-radius: 8px;
            color: #64748b;
            transition: var(--transition-smooth);
        }

        .mind-tab-btn.active {
            background-color: var(--accent-red);
            color: var(--bg-white);
        }

        .mind-card {
            position: relative;
            height: 260px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            transition: var(--transition-smooth);
            cursor: pointer;
            margin-bottom: 20px;
        }

        .mind-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.08);
        }

        .mind-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .mind-card:hover .mind-card-img {
            transform: scale(1.06);
        }

        .mind-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.85) 100%);
            padding: 20px 15px;
            text-align: right;
            color: var(--bg-white);
        }

        .mind-card-title {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .mind-card-desc {
            font-size: 11px;
            opacity: 0.9;
            margin: 0;
        }

        /* Host Promotion Section */
        .host-promo-section {
            padding: 80px 0;
            background-color: var(--bg-light);
        }

        .host-promo-content {
            text-align: start;
            padding-inline-start: 30px;
        }

        .host-promo-title {
            font-size: 34px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .host-promo-subtitle {
            font-size: 18px;
            color: #475569;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .host-promo-list {
            list-style: none;
            padding: 0;
            margin-bottom: 35px;
        }

        .host-promo-list li {
            font-size: 16px;
            font-weight: 600;
            color: #334155;
            margin-bottom: 15px;
            position: relative;
            padding-inline-start: 20px;
        }

        .host-promo-list li::before {
            content: '•';
            position: absolute;
            inset-inline-start: 0;
            color: var(--accent-red);
            font-size: 20px;
            line-height: 1;
            top: -2px;
        }

        .btn-host-solid {
            background-color: #0f2766;
            color: var(--bg-white);
            font-weight: 700;
            padding: 12px 36px;
            border-radius: 8px;
            border: none;
            transition: var(--transition-smooth);
            text-decoration: none;
            display: inline-block;
        }

        .btn-host-solid:hover {
            background-color: #0c1e50;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(15, 39, 102, 0.25);
        }

        /* Custom Collage Container (Hyyak Logo Shape) */
        .collage-container {
            position: relative;
            width: 100%;
            max-width: 420px;
            aspect-ratio: 1 / 1;
            margin: 0 auto;
            filter: drop-shadow(0 20px 30px rgba(15, 39, 102, 0.12));
        }

        .collage-svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        /* Corporate Banner Section */
        .corporate-section {
            padding: 40px 0 80px;
            background-color: var(--bg-white);
        }

        .corporate-banner {
            background: #0f2766;
            background-image: 
                radial-gradient(circle at 5% 50%, transparent 45%, rgba(255,255,255,0.03) 46%, transparent 47%),
                radial-gradient(circle at 5% 50%, transparent 52%, rgba(255,255,255,0.03) 53%, transparent 54%),
                radial-gradient(circle at 95% 50%, transparent 45%, rgba(255,255,255,0.03) 46%, transparent 47%),
                radial-gradient(circle at 95% 50%, transparent 52%, rgba(255,255,255,0.03) 53%, transparent 54%);
            border-radius: 24px;
            padding: 50px 30px;
            text-align: center;
            color: var(--bg-white);
            box-shadow: 0 15px 35px rgba(15, 39, 102, 0.12);
            position: relative;
            overflow: hidden;
        }

        .corporate-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .corporate-desc {
            font-size: 15px;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
            line-height: 1.8;
            font-weight: 500;
        }

        .btn-corporate {
            background-color: var(--accent-red);
            color: var(--bg-white);
            font-weight: 700;
            padding: 12px 40px;
            border-radius: 8px;
            border: none;
            transition: var(--transition-smooth);
            text-decoration: none;
            display: inline-block;
        }

        .btn-corporate:hover {
            background-color: var(--accent-red-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(225, 29, 72, 0.25);
        }

        @media (max-width: 1200px) {
            .carousel-nav-btn {
                left: -20px;
            }
        }

        @media (max-width: 991px) {
            .carousel-nav-btn {
                position: static;
                transform: none;
                margin-bottom: 20px;
                display: inline-flex;
            }

            .hero-title {
                font-size: 2.5rem;
            }
            .hero-emblem {
                font-size: 2rem;
            }
            .search-card {
                flex-direction: column;
                align-items: stretch;
                border-radius: 16px;
                gap: 15px;
            }
            .search-col {
                border-left: none;
                border-bottom: 1px solid #f1f5f9;
                padding-bottom: 12px;
            }
            .btn-search-round {
                width: 100%;
                border-radius: 8px;
                height: 48px;
            }
            .search-outer-container {
                margin-top: -50px;
            }

            .app-banner {
                flex-direction: column;
                text-align: center;
                padding: 40px 24px;
            }
            .app-banner-content {
                text-align: center;
                margin-bottom: 40px;
            }
            .app-logo-title {
                justify-content: center;
            }
            .app-store-btns {
                justify-content: center;
                flex-wrap: wrap;
            }
            .app-banner-mockup {
                width: 100%;
                height: auto;
                margin: 0;
            }
            .app-phone-img {
                max-height: 280px;
            }
        }

        /* Home search form fields */
        .search-col label,
        label.search-col {
            margin: 0;
        }

        label.search-col {
            cursor: pointer;
        }

        .search-field {
            border: none;
            background: transparent;
            font-size: 12px;
            color: #94a3b8;
            font-weight: 500;
            width: 100%;
            padding: 0;
            padding-left: 18px;
            outline: none;
            font-family: inherit;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
        }

        .search-field.has-value,
        .search-field:focus {
            color: #0f172a;
            font-weight: 600;
        }

        .search-field:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .search-field option {
            color: #0f172a;
        }

        input[type="date"].search-field {
            color-scheme: light;
        }

        /* Listing image placeholder (no cover uploaded) */
        .listing-img-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            color: #94a3b8;
            font-size: 2rem;
            width: 100%;
            height: 100%;
            min-height: 180px;
            object-fit: cover;
        }

        .plan-rating--new,
        .featured-rating-badge--new {
            background-color: #eff6ff;
            color: #2563eb;
            font-weight: 700;
        }

        .featured-card-link,
        .mind-card-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .featured-card-link:hover .featured-card,
        .mind-card-link:hover .mind-card {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
        }

        .featured-card,
        .mind-card {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        /* Empty states for dynamic sections */
        .landing-empty-state {
            text-align: center;
            padding: 48px 24px;
            background: #f8fafc;
            border: 1px dashed #cbd5e1;
            border-radius: 20px;
        }

        .landing-empty-state--compact {
            padding: 32px 20px;
        }

        .landing-empty-state-icon {
            font-size: 2.5rem;
            color: #94a3b8;
            margin-bottom: 16px;
        }

        .landing-empty-state-title {
            font-size: 1.125rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .landing-empty-state-text {
            font-size: 0.9rem;
            color: #64748b;
            max-width: 480px;
            margin: 0 auto 20px;
            line-height: 1.6;
        }

        .landing-empty-state-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Responsive Mobile Adjustments for Welcome Landing Page */
        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 2.2rem !important;
            }

            .hero-section {
                padding-top: 40px !important;
                padding-bottom: 60px !important;
            }

            .collage-container {
                max-width: 100% !important;
                margin-top: 24px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 1.75rem !important;
                line-height: 1.35 !important;
            }

            .hero-emblem {
                font-size: 1.35rem !important;
            }

            .hero-btns {
                flex-direction: column !important;
                width: 100% !important;
            }

            .btn-hero-solid,
            .btn-hero-outline {
                width: 100% !important;
                text-align: center;
                justify-content: center;
            }

            .carousel-nav-btn {
                position: static !important;
                margin: 10px 4px !important;
            }

            .carousel-nav-wrapper {
                display: flex !important;
                justify-content: center !important;
                margin-top: 16px !important;
            }
        }
