      :root {
        --primary: #0a2463; /* Deep premium blue */
        --primary-light: #247ba0;
        --accent: #ff3366; /* Vibrant pink/red for CTA */
        --accent-hover: #e62e5c;
        --text-dark: #0f172a;
        --text-muted: #64748b;
        --bg-body: #f8fafc;
        --white: #ffffff;
        --radius-md: 12px;
        --radius-lg: 20px;
        --radius-xl: 30px;
        --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
        --shadow-floating: 0 30px 40px -10px rgba(10, 36, 99, 0.15);
        --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      body {
        font-family: "Inter", sans-serif;
        color: var(--text-dark);
        background-color: #fff;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        display: flex;
        margin: 0;
        padding: 0;
      }

      /* Layout Grid */
      .sidebar {
        width: 260px;
        height: 100vh;
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        border-right: 1px solid #eaeaea;
        overflow-y: auto;
        z-index: 1000;
        transform: translateX(-260px);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .main-content {
        margin-left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .page-body {
        width: 100%;
        flex: 1;
      }

      /* Toggle States */
      body.sidebar-open .sidebar {
        transform: translateX(0);
      }
      body.sidebar-open .main-content {
        margin-left: 260px;
        width: calc(100% - 260px);
      }

      .sidebar-logo {
        padding: 24px 20px;
        font-size: 1.4rem;
        font-weight: 800;
        color: #0056d2;
        border-bottom: 1px solid #eee;
      }
      .sidebar-menu {
        list-style: none;
        padding: 20px 0;
        margin: 0;
      }
      .sidebar-menu li a {
        display: flex;
        align-items: center;
        padding: 12px 24px;
        color: #333;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: 0.2s;
      }
      .sidebar-menu li a i {
        width: 24px;
        margin-right: 12px;
        font-size: 1rem;
        color: #666;
      }
      .sidebar-menu li a:hover,
      .sidebar-menu li.active a {
        background: #f0f4f8;
        color: #0056d2;
      }
      .sidebar-menu li.active a i {
        color: #0056d2;
      }

      .top-nav {
        min-height: 70px;
        background: #fff;
        padding: 10px 24px;
        border-bottom: 1px solid #eee;
        position: sticky;
        top: 0;
        z-index: 1000;
      }
      .top-nav-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
      }
      .utility-group {
        display: flex;
        align-items: center;
        gap: 24px;
      }
      .nav-item-complex {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: #333;
        transition: 0.2s;
      }
      .nav-item-complex:hover {
        color: #0056d2;
      }
      .nav-item-complex i {
        font-size: 1.4rem;
        color: #666;
      }
      .nav-item-text {
        display: flex;
        flex-direction: column;
      }
      .nav-item-title {
        font-size: 0.85rem;
        font-weight: 800;
        line-height: 1.2;
      }
      .nav-item-subtitle {
        font-size: 0.7rem;
        color: #666;
        font-weight: 400;
      }

      .category-nav-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 25px;
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px solid #f1f5f9;
        overflow-x: auto;
        scrollbar-width: none;
      }
      .category-nav-row::-webkit-scrollbar {
        display: none;
      }
      .cat-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-decoration: none;
        color: #4b5563;
        font-size: 0.75rem;
        font-weight: 600;
        white-space: nowrap;
        transition: 0.2s;
        position: relative;
      }
      .cat-nav-item i {
        font-size: 1.1rem;
        color: #666;
      }
      .cat-nav-item:hover,
      .cat-nav-item.active {
        color: #0056d2;
      }
      .cat-nav-item:hover i,
      .cat-nav-item.active i {
        color: #0056d2;
      }
      .cat-nav-item.active::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #0056d2;
        border-radius: 3px 3px 0 0;
      }
      .badge-new {
        background: #ff3366;
        color: #fff;
        font-size: 0.6rem;
        padding: 1px 4px;
        border-radius: 4px;
        position: absolute;
        top: -10px;
        right: -10px;
      }

      .nav-logo {
        font-size: 1.2rem;
        font-weight: 800;
        color: #0056d2;
        margin-left: 10px;
        transition: opacity 0.2s ease;
      }
      body.sidebar-open .nav-logo {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
      }
      .top-nav-item {
        font-size: 0.85rem;
        color: #333;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 600;
      }
      .btn-signin {
        background: #0056d2;
        color: #fff;
        padding: 8px 16px;
        border-radius: 4px;
        font-weight: 600;
        text-decoration: none;
        font-size: 0.85rem;
      }
      .btn-signin:hover {
        color: #fff;
        background: #0045a8;
      }

      /* Hero Section */
      .hero-banner {
        margin: 20px 40px;
        border-radius: 20px;
        position: relative;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        background: url("../images/bg_10.jpg") center/cover no-repeat;
      }
      .hero-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to right,
          rgba(0, 86, 210, 0.9) 0%,
          rgba(0, 86, 210, 0.4) 40%,
          rgba(0, 86, 210, 0.2) 100%
        );
        z-index: 1;
      }
      .hero-content {
        position: relative;
        z-index: 2;
        display: block !important;
        grid-template-columns: 1fr;
        gap: 48px;
        align-items: center;
        max-width: 1240px;
        margin: 0 auto;
        width: 100%;
        padding: 0 20px;
      }
      .hero-banner h1 {
        color: #fff;
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 30px;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      }

      /* Advanced Search Box */
      .search-container {
        margin-top: 10px;
        margin-bottom: 30px;
        max-width: 1150px;
        width: 95%;
        background: #f0f3f7; /* Very light gray/blue tint for container */
        border-radius: 16px;
        padding: 25px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 10;
        border: 1px solid rgba(255, 255, 255, 0.6);
      }
      .search-tabs {
        display: flex;
        gap: 35px;
        margin-bottom: 25px;
        padding-left: 10px;
        border: none;
      }
      .search-tab {
        color: #444;
        padding: 5px 0;
        font-weight: 700;
        cursor: pointer;
        position: relative;
        font-size: 0.95rem;
        transition: 0.2s;
        white-space: nowrap;
      }
      .search-tab.active {
        color: #0056d2;
      }
      .search-tab.active::after {
        content: "";
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #0056d2;
        border-radius: 2px;
      }
      .search-box {
        display: flex;
        gap: 8px;
        align-items: center;
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
      }
      .search-input-group {
        flex: 1;
        background: #f7f9fb;
        border-radius: 8px;
        padding: 10px 14px;
        display: flex;
        align-items: center;
        border: 1px solid #eef1f5;
        transition: all 0.2s;
        height: 52px;
      }
      .search-input-group i {
        color: #555;
        margin-right: 12px;
        font-size: 1.1rem;
      }
      .search-input-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow: hidden;
      }
      .search-input-wrapper input,
      .search-input-wrapper select {
        border: none;
        background: transparent;
        outline: none;
        font-weight: 700;
        color: #333;
        width: 100%;
        font-size: 0.95rem;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
      .btn-search-large {
        background: #0056d2;
        color: #fff;
        padding: 0 35px;
        height: 52px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1.1rem;
        border: none;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: 0.2s;
      }
      .btn-search-large:hover {
        background: #0045a8;
        transform: scale(1.02);
      }

      /* Trust Bar */
      .trust-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 25px 0;
        background: #fff;
        flex-wrap: wrap;
      }
      .trust-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #666;
        font-size: 0.9rem;
        font-weight: 600;
      }
      .trust-item i {
        font-size: 1.2rem;
        color: #0056d2;
      }

      /* Section Headings */
      .section-header {
        margin-bottom: 40px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
      }
      .section-title {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 8px;
        letter-spacing: -0.5px;
      }
      .section-subtitle {
        color: var(--text-muted);
        font-size: 1rem;
        margin-top: 5px;
      }

      /* New User Exclusive Section */
      .exclusive-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin: 24px;
      }
      .exclusive-card {
        background: #fff;
        border-radius: 8px;
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        border: 1px solid #eee;
      }
      .exclusive-card .icon-box {
        width: 48px;
        height: 48px;
        background: #fff5f7;
        color: #ff3366;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
      }
      .exclusive-card-content h4 {
        font-size: 0.95rem;
        font-weight: 700;
        margin: 0;
        color: #333;
      }
      .exclusive-card-content p {
        font-size: 0.8rem;
        color: #666;
        margin: 4px 0 8px;
      }
      .btn-claim {
        background: #0056d2;
        color: #fff;
        border: none;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 600;
      }

      /* Promo Banners */
      .promo-section {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 16px;
        margin: 0 24px 24px;
      }
      .promo-banner {
        height: 120px;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        background: #0056d2;
        color: #fff;
        display: flex;
        align-items: center;
        padding: 0 40px;
      }
      .promo-banner.rewards {
        background: linear-gradient(135deg, #0056d2, #00c6ff);
      }
      .promo-banner h2 {
        font-size: 1.5rem;
        font-weight: 800;
        margin: 0;
      }
      .promo-banner p {
        margin: 5px 0 0;
        font-size: 0.9rem;
        opacity: 0.9;
      }

      /* Moments / Recommendations Cards */
      .moment-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin: 0 24px 40px;
      }
      .moment-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s;
      }
      .moment-card:hover {
        transform: translateY(-5px);
      }
      .moment-img {
        height: 200px;
        background-size: cover;
        background-position: center;
        position: relative;
      }
      .moment-heart {
        position: absolute;
        top: 10px;
        right: 10px;
        color: #fff;
        font-size: 1.2rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }
      .moment-body {
        padding: 12px;
      }
      .moment-title {
        font-size: 0.9rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .moment-user {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.75rem;
        color: #666;
      }
      .moment-user img {
        width: 20px;
        height: 20px;
        border-radius: 50%;
      }

      /* App Download QR Section */
      .app-qr-section {
        background: #eef3ff;
        margin: 40px 24px;
        border-radius: 12px;
        padding: 40px;
        display: flex;
        align-items: center;
        gap: 40px;
        background-image: radial-gradient(
          circle at 10% 20%,
          rgba(0, 86, 210, 0.05) 0%,
          transparent 50%
        );
      }
      .qr-code-box {
        background: #fff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }
      .qr-code-box img {
        width: 120px;
        height: 120px;
      }
      .app-stats {
        display: flex;
        gap: 40px;
        margin-top: 20px;
      }
      .stat-item h3 {
        font-size: 1.5rem;
        font-weight: 800;
        color: #0056d2;
        margin: 0;
      }
      .stat-item p {
        font-size: 0.85rem;
        color: #666;
        margin: 0;
      }

      /* Recommendations Footer Links */
      .recommendations-links {
        margin: 40px 24px;
        padding-top: 40px;
        border-top: 1px solid #eee;
      }
      .rec-tabs {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
      }
      .rec-tab {
        padding: 10px 0;
        font-size: 0.9rem;
        font-weight: 700;
        color: #666;
        cursor: pointer;
        position: relative;
      }
      .rec-tab.active {
        color: #0056d2;
      }
      .rec-tab.active::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #0056d2;
      }
      .link-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
      }
      .link-grid a {
        font-size: 0.8rem;
        color: #666;
        text-decoration: none;
      }
      .link-grid a:hover {
        color: #0056d2;
      }

      /* Trust Bar */
      .trust-bar {
        display: flex;
        justify-content: center;
        gap: 60px;
        padding: 20px 0;
        background: #fff;
        border-bottom: 1px solid #eee;
        margin-bottom: 30px;
      }
      .trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #666;
        font-size: 0.85rem;
        font-weight: 600;
      }
      .trust-item i {
        color: #0056d2;
        font-size: 1.2rem;
      }

      /* Package Cards */
      .package-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin: 0 24px 40px;
      }
      .package-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        border: 1px solid #eee;
      }
      .package-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
      }
      .package-img {
        height: 220px;
        background-size: cover;
        background-position: center;
        position: relative;
      }
      .package-tag {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #ff3366;
        color: #fff;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 700;
      }
      .package-body {
        padding: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
        margin-top: 20px !important;
      }
      .package-info {
        display: flex;
        gap: 15px;
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 10px;
        align-items: center;
      }
      .package-info span {
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .package-info span:last-child {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
      }
      .package-price {
        font-size: 1.4rem;
        font-weight: 800;
        color: #0056d2;
        display: flex;
        align-items: baseline;
        gap: 5px;
      }
      .package-price span {
        font-size: 0.85rem;
        font-weight: 400;
        color: #666;
      }

      /* Flight Deal Cards */
      .flight-deal-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin: 0 24px 40px;
      }
      .flight-deal-card {
        background: #fff;
        padding: 16px;
        border-radius: 10px;
        border: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: var(--transition);
        cursor: pointer;
      }
      .flight-deal-card:hover {
        border-color: #0056d2;
        background: #f0f7ff;
      }
      .flight-route {
        font-weight: 700;
        color: #333;
        font-size: 0.9rem;
      }
      .flight-route span {
        color: #666;
        font-weight: 400;
        margin: 0 5px;
      }
      .flight-price {
        color: #ff3366;
        font-weight: 800;
        font-size: 1rem;
      }

      /* Card Action Buttons */
      .card-actions {
        display: flex;
        gap: 8px;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #f1f5f9;
      }
      .btn-action {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 4px;
        border-radius: 50px; /* Pill style for premium look */
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-decoration: none !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid transparent;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      }
      .btn-call {
        background: #fff;
        color: #475569;
        border-color: #e2e8f0;
      }
      .btn-call:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
      }
      .btn-whatsapp {
        background: #25d366;
        color: #fff;
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
      }
      .btn-whatsapp:hover {
        background: #1ebd5b;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
      }
      .btn-enquiry {
        background: linear-gradient(135deg, #0056d2, #0045a8);
        color: #fff;
        box-shadow: 0 4px 10px rgba(0, 86, 210, 0.2);
      }
      .btn-enquiry:hover {
        background: linear-gradient(135deg, #0045a8, #003380);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 86, 210, 0.3);
      }

      /* Micro-animations */
      @keyframes subtle-float {
        0% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-5px);
        }
        100% {
          transform: translateY(0);
        }
      }
      .exclusive-card:hover .icon-box {
        animation: subtle-float 2s ease-in-out infinite;
      }
      .sidebar-menu li a:hover i {
        transform: scale(1.2);
        color: #0056d2;
        transition: 0.3s;
      }

      .view-all-link {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: var(--transition);
      }
      .view-all-link:hover {
        color: var(--accent);
        gap: 8px;
      }

      /* Popular Destinations - Bento Grid */
      .bento-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 250px;
        gap: 20px;
      }
      .bento-item {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        cursor: pointer;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
      }
      .bento-item:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
      }
      .bento-item.large {
        grid-column: span 2;
        grid-row: span 2;
      }
      .bento-item.wide {
        grid-column: span 2;
      }
      .bento-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
      }
      .bento-item:hover img {
        transform: scale(1.08);
      }
      .bento-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(10, 36, 99, 0.9) 0%,
          transparent 60%
        );
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 25px;
      }
      .bento-content h3 {
        color: var(--white);
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 1.5rem;
      }
      .bento-item.large .bento-content h3 {
        font-size: 2.2rem;
      }
      .pill-badge {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        color: var(--white);
        padding: 4px 12px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 500;
        display: inline-block;
      }

      /* Premium Hotel Cards */
      .hotel-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        border: 1px solid #f1f5f9;
        height: 100%;
        position: relative;
      }
      .hotel-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: #e2e8f0;
      }
      .hotel-img {
        position: relative;
        height: 240px;
        overflow: hidden;
      }
      .hotel-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
      }
      .hotel-card:hover .hotel-img img {
        transform: scale(1.05);
      }
      .wishlist-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        cursor: pointer;
        transition: var(--transition);
        z-index: 2;
      }
      .wishlist-btn:hover {
        color: var(--accent);
        transform: scale(1.1);
      }
      .hotel-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--primary);
        color: var(--white);
        padding: 4px 12px;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        z-index: 2;
      }
      .hotel-body {
        padding: 24px;
      }
      .hotel-rating-box {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
      }
      .score {
        background: #ffd166;
        color: var(--text-dark);
        font-weight: 700;
        padding: 4px 8px;
        border-radius: 6px;
        font-size: 0.85rem;
      }
      .stars {
        color: #ffd166;
        font-size: 0.8rem;
      }
      .reviews {
        color: var(--text-muted);
        font-size: 0.85rem;
      }

      .hotel-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 6px;
        line-height: 1.3;
      }
      .hotel-location {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .hotel-footer {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        border-top: 1px solid #f1f5f9;
        padding-top: 20px;
      }
      .price-box p {
        color: var(--text-muted);
        font-size: 0.8rem;
        margin: 0 0 2px 0;
      }
      .price {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
      }
      .btn-book {
        background: var(--bg-body);
        color: var(--primary);
        font-weight: 600;
        padding: 10px 20px;
        border-radius: 8px;
        transition: var(--transition);
        border: none;
      }
      .hotel-card:hover .btn-book {
        background: var(--primary);
        color: var(--white);
      }

      /* Banner CTA */
      .cta-banner {
        background: linear-gradient(
          135deg,
          var(--primary) 0%,
          var(--primary-light) 100%
        );
        border-radius: var(--radius-xl);
        padding: 60px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: var(--shadow-lg);
      }
      .cta-banner::before {
        content: "";
        position: absolute;
        right: -10%;
        top: -50%;
        width: 50%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 0%,
          transparent 70%
        );
        transform: rotate(-15deg);
      }
      .cta-content {
        position: relative;
        z-index: 2;
        color: var(--white);
        max-width: 600px;
      }
      .cta-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 15px;
      }
      .app-buttons {
        display: flex;
        gap: 15px;
        margin-top: 30px;
      }
      .app-btn {
        background: var(--white);
        color: var(--text-dark);
        padding: 12px 24px;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        transition: var(--transition);
        font-weight: 600;
      }
      .app-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        color: var(--primary);
      }
      .app-btn i {
        font-size: 1.5rem;
      }

      /* Testimonials */
      .testimonials-section {
        background: linear-gradient(to bottom, #f8fafc 0%, #e2e8f0 100%);
        padding: 80px 0;
        border-radius: var(--radius-xl);
        margin-top: 60px;
        position: relative;
        overflow: hidden;
      }
      .testimonials-section::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(36, 123, 160, 0.1);
        z-index: 0;
      }
      .testimonial-card {
        background: var(--white);
        padding: 40px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        margin: 20px 10px;
        border: 1px solid #f1f5f9;
        position: relative;
        z-index: 1;
        transition: var(--transition);
      }
      .owl-item.center .testimonial-card {
        background: var(--primary);
        color: var(--white);
        transform: scale(1.05);
        border-color: var(--primary);
        box-shadow: var(--shadow-lg);
      }
      .quote-icon {
        color: var(--primary);
        font-size: 4rem;
        opacity: 0.05;
        position: absolute;
        top: 20px;
        right: 30px;
      }
      .owl-item.center .quote-icon {
        color: var(--white);
        opacity: 0.1;
      }
      .rating-stars {
        color: #ffd166;
        font-size: 1.1rem;
        margin-bottom: 15px;
      }
      .testimonial-text {
        font-size: 1.1rem;
        color: var(--text-dark);
        line-height: 1.7;
        font-style: italic;
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
      }
      .owl-item.center .testimonial-text {
        color: rgba(255, 255, 255, 0.9);
      }
      .author-box {
        display: flex;
        align-items: center;
        gap: 15px;
        border-top: 1px solid #f1f5f9;
        padding-top: 20px;
      }
      .owl-item.center .author-box {
        border-top-color: rgba(255, 255, 255, 0.1);
      }
      .author-img {
        width: 60px !important;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #e2e8f0;
      }
      .owl-item.center .author-img {
        border-color: rgba(255, 255, 255, 0.2);
      }
      .author-info h4 {
        font-size: 1.1rem;
        font-weight: 800;
        margin: 0 0 4px 0;
        color: var(--primary);
      }
      .owl-item.center .author-info h4 {
        color: var(--white);
      }
      .author-info p {
        margin: 0;
        font-size: 0.85rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
      }
      .owl-item.center .author-info p {
        color: rgba(255, 255, 255, 0.6);
      }
      .owl-theme .owl-dots .owl-dot.active span,
      .owl-theme .owl-dots .owl-dot:hover span {
        background: var(--primary);
      }

      /* Footer */
      .footer {
        background: #06143a; /* Darker than primary */
        color: rgba(255, 255, 255, 0.7);
        padding: 80px 0 30px;
        margin-top: 80px;
      }
      .footer-brand {
        color: var(--white);
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 20px;
        display: inline-block;
        text-decoration: none;
      }
      .footer h5 {
        color: var(--white);
        font-weight: 700;
        margin-bottom: 25px;
        font-size: 1.1rem;
      }
      .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .footer-links li {
        margin-bottom: 12px;
      }
      .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
        display: inline-block;
      }
      .footer-links a:hover {
        color: var(--accent);
        transform: translateX(5px);
      }
      .newsletter-box {
        background: rgba(255, 255, 255, 0.05);
        padding: 30px;
        border-radius: var(--radius-lg);
      }
      .newsletter-input {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white);
        padding: 12px 20px;
        border-radius: var(--radius-md);
        width: 100%;
        margin-bottom: 15px;
        outline: none;
      }
      .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
      }
      .btn-subscribe {
        width: 100%;
        background: var(--accent);
        color: var(--white);
        border: none;
        padding: 12px;
        border-radius: var(--radius-md);
        font-weight: 600;
        transition: var(--transition);
      }
      .btn-subscribe:hover {
        background: var(--accent-hover);
      }
      .footer-bottom {
        margin-top: 60px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .social-links {
        display: flex;
        gap: 15px;
      }
      .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none;
        transition: var(--transition);
      }
      .social-links a:hover {
        background: var(--accent);
        transform: translateY(-3px);
      }

      /* Travel Shorts */
      .short-video-card {
        position: relative;
        width: 100%;
        padding-top: 177.77%; /* 16:9 Aspect Ratio (Vertical 9:16) */
        border-radius: var(--radius-lg);
        overflow: hidden;
        cursor: pointer;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        background: #000;
      }
      .short-video-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
      }
      .short-video-card video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.9;
        transition: opacity 0.3s ease;
      }
      .short-video-card:hover video {
        opacity: 1;
      }
      .short-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        padding: 20px;
        z-index: 2;
      }
      .short-play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3rem;
        color: rgba(255, 255, 255, 0.8);
        transition: var(--transition);
      }
      .short-video-card:hover .short-play-icon {
        color: #fff;
        transform: translate(-50%, -50%) scale(1.1);
      }
      .short-title {
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
        text-align: center;
        width: 100%;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
      }

      /* Exclusive Offers */
      .offer-card {
        border-radius: var(--radius-lg);
        overflow: hidden;
        position: relative;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        display: flex;
        align-items: center;
        padding: 40px;
        min-height: 250px;
        color: var(--white);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
      .offer-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
      }
      .offer-bg-1 {
        background:
          linear-gradient(
            135deg,
            rgba(10, 36, 99, 0.9),
            rgba(36, 123, 160, 0.8)
          ),
          url("../images/bg_11.jpg")
            center/cover;
      }
      .offer-bg-2 {
        background:
          linear-gradient(
            135deg,
            rgba(255, 51, 102, 0.9),
            rgba(255, 94, 133, 0.8)
          ),
          url("../images/bg_12.jpg")
            center/cover;
      }
      .offer-content {
        position: relative;
        z-index: 2;
        max-width: 80%;
      }
      .offer-card h3 {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
        color: var(--white);
      }
      .offer-badge {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        color: var(--white);
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        display: inline-block;
        text-transform: uppercase;
        border: 1px solid rgba(255, 255, 255, 0.3);
      }
      .btn-offer {
        background: var(--white);
        color: var(--primary);
        border: none;
        padding: 10px 24px;
        border-radius: 50px;
        font-weight: 700;
        margin-top: 15px;
        transition: var(--transition);
      }
      .offer-bg-2 .btn-offer {
        color: var(--accent);
      }
      .btn-offer:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      /* Why Choose Us / Features */
      .feature-box {
        background: var(--white);
        padding: 40px 30px;
        border-radius: var(--radius-lg);
        text-align: center;
        border: 1px solid #f1f5f9;
        transition: var(--transition);
        height: 100%;
      }
      .feature-box:hover {
        box-shadow: var(--shadow-md);
        border-color: #e2e8f0;
        transform: translateY(-5px);
      }
      .feature-icon-wrapper {
        width: 80px;
        height: 80px;
        background: var(--bg-body);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin: 0 auto 25px;
        transition: var(--transition);
      }
      .feature-box:hover .feature-icon-wrapper {
        background: var(--primary);
        color: var(--white);
        transform: rotateY(180deg);
      }
      .feature-box h4 {
        font-size: 1.2rem;
        font-weight: 800;
        margin-bottom: 12px;
        color: var(--text-dark);
      }
      .feature-box p {
        color: var(--text-muted);
        font-size: 0.95rem;
        margin-bottom: 0;
        line-height: 1.6;
      }

      /* Full Mobile Responsiveness */
      @media (max-width: 991px) {
        .sidebar {
          display: none;
        }
        .main-content {
          margin-left: 0;
          width: 100%;
        }
        body.sidebar-open .main-content {
          margin-left: 0;
        }

        /* Top Nav Mobile */
        .top-nav {
          padding: 10px 15px;
        }
        .utility-group {
          gap: 15px;
        }
        .nav-item-complex {
          display: none;
        } /* Hide complex items */
        .nav-item-complex:nth-child(3) {
          display: flex;
        } /* Keep My Trips */
        .nav-item-complex .nav-item-subtitle {
          display: none;
        }
        .btn-signin {
          padding: 6px 12px;
          font-size: 0.75rem;
        }

        /* Search & Hero Mobile */
        .hero-banner {
          margin: 0;
          min-height: auto;
          padding: 60px 20px;
          border-radius: 0;
        }
        .hero-banner h1 {
          font-size: 2.2rem;
          margin-bottom: 20px;
        }
        .search-container {
          padding: 20px;
          margin-bottom: 0;
          width: 100%;
          max-width: 100%;
        }
        .search-box {
          flex-direction: column;
          gap: 10px;
        }
        .search-input-group {
          width: 100%;
        }
        .btn-search-large {
          width: 100%;
          padding: 12px;
        }
        .search-tabs {
          overflow-x: auto;
          padding-bottom: 5px;
          gap: 15px;
        }
        .search-tab {
          white-space: nowrap;
          font-size: 0.8rem;
        }

        /* Grids Mobile */
        .exclusive-grid {
          grid-template-columns: 1fr;
          margin: 10px;
        }
        .promo-section {
          grid-template-columns: 1fr;
          margin: 10px;
        }
        .moment-grid {
          grid-template-columns: 1fr;
          margin: 10px;
        }
        .package-grid {
          grid-template-columns: 1fr;
          margin: 10px;
        }
        .flight-deal-grid {
          grid-template-columns: repeat(2, 1fr);
          margin: 10px;
        }
        .link-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        /* App QR Mobile */
        .app-qr-section {
          flex-direction: column;
          text-align: center;
          padding: 30px 15px;
          margin: 10px;
        }
        .app-stats {
          flex-wrap: wrap;
          justify-content: center;
          gap: 20px;
        }
        .qr-code-box {
          display: none;
        } /* Hide QR on mobile */
      }
      @media (max-width: 576px) {
        .flight-deal-grid {
          grid-template-columns: 1fr;
        }
        .link-grid {
          grid-template-columns: 1fr;
        }
        .category-nav-row {
          gap: 15px;
        }
        .cat-nav-item i {
          font-size: 1rem;
        }
        .cat-nav-item {
          font-size: 0.65rem;
        }
        .hero-banner h1 {
          font-size: 1.5rem;
        }
        .footer-bottom {
          flex-direction: column;
          gap: 20px;
          text-align: center;
        }
      }


/* Extracted Inline Styles */
.inline-style-1 {
  position: fixed; inset: 0; background: #fff; z-index: 9999; display: flex; justify-content: center; align-items: center;
}
.inline-style-2 {
  width: 3rem; height: 3rem
}
.inline-style-3 {
  font-size: 1.4rem; color: #333; cursor: pointer
}
.inline-style-4 {
  color: #0056d2
}
.inline-style-5 {
  font-size: 0.8rem; font-weight: 700; color: #333; cursor: pointer;
}
.inline-style-6 {
  position: relative
}
.inline-style-7 {
  font-weight: 800
}
.inline-style-8 {
  font-size: 0.6rem; color: #666
}
.inline-style-9 {
  background: url(1) center/cover no-repeat;
}
.inline-style-10 {
  background: #eef3ff; color: #0056d2
}
.inline-style-11 {
  background: #fff9ee; color: #f59e0b
}
.inline-style-12 {
  font-size: 1.25rem; font-weight: 800; margin: 0
}
.inline-style-13 {
  font-size: 0.9rem
}
.inline-style-14 {
  background-image: url(1);
}
.inline-style-15 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 15px
}
.inline-style-16 {
  background: #0056d2
}
.inline-style-17 {
  background: #f59e0b
}
.inline-style-18 {
  font-size: 0.8rem
}
.inline-style-19 {
  font-size: 0.85rem; font-weight: 700; color: #0056d2
}
.inline-style-20 {
  font-weight: 400; color: #666
}
.inline-style-21 {
  font-size: 1.5rem; font-weight: 800; margin-bottom: 10px
}
.inline-style-22 {
  color: #666
}
.inline-style-23 {
  display: flex; flex-direction: row; height: 180px
}
.inline-style-24 {
  width: 40%; background: url(1) center/cover;
}
.inline-style-25 {
  width: 60%; padding: 15px
}
.inline-style-26 {
  font-size: 0.7rem; text-transform: uppercase; color: #0056d2; font-weight: 800;
}
.inline-style-27 {
  font-size: 1rem; font-weight: 700; margin: 10px 0
}
.inline-style-28 {
  font-size: 0.8rem; color: #666
}
.inline-style-29 {
  font-size: 1.25rem; font-weight: 800; margin-bottom: 20px
}
.inline-style-30 {
  background: #fff; border-top: 1px solid #eee
}
.inline-style-31 {
  font-weight: 800; color: #333; margin-bottom: 20px
}
.inline-style-32 {
  font-size: 0.85rem; color: #666
}
.inline-style-33 {
  font-size: 0.85rem; line-height: 2
}
.inline-style-34 {
  font-size: 0.75rem; color: #999
}
.inline-style-35 {
  border-radius: 12px; overflow: hidden
}
.inline-style-36 {
  background: linear-gradient(135deg, #0a2463 0%, #0056d2 100%); min-height: 550px;
}
.inline-style-37 {
  z-index: 2
}
.inline-style-38 {
  font-size: 0.65rem; letter-spacing: 1px; background: #ff3366;
}
.inline-style-39 {
  line-height: 1.2
}
.inline-style-40 {
  color: #ff3366
}
.inline-style-41 {
  line-height: 1.6; font-weight: 400
}
.inline-style-42 {
  background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(5px);
}
.inline-style-43 {
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; backdrop-filter: blur(10px); transition: 0.3s;
}
.inline-style-44 {
  width: 32px; height: 32px
}
.inline-style-45 {
  font-size: 0.65rem; text-transform: uppercase; opacity: 0.7; letter-spacing: 0.5px;
}
.inline-style-46 {
  font-size: 0.95rem
}
.inline-style-47 {
  background: linear-gradient( 135deg, #25d366 0%, #1ebd5b 100% ); border: none; color: #fff; transition: 0.3s;
}
.inline-style-48 {
  font-size: 1.1rem
}
.inline-style-49 {
  font-size: 0.65rem; text-transform: uppercase; opacity: 0.9; letter-spacing: 0.5px;
}
.inline-style-50 {
  color: #0a2463
}
.inline-style-51 {
  border-radius: 12px; letter-spacing: 1px
}


/* Restored Background Images */
.bg-hero { background: url('../images/bg_10.jpg') center/cover no-repeat; }
.bg-img-0 { background-image: url('../images/bg_1.jpg'); background-size: cover; background-position: center; }
.bg-panel-0 { width: 40%; background: url('../images/bg_1.jpg') center/cover; }
.bg-img-1 { background-image: url('../images/bg_3.jpg'); background-size: cover; background-position: center; }
.bg-panel-1 { width: 40%; background: url('../images/bg_3.jpg') center/cover; }
.bg-img-2 { background-image: url('../images/bg_4.jpg'); background-size: cover; background-position: center; }
.bg-panel-2 { width: 40%; background: url('../images/bg_4.jpg') center/cover; }
.bg-img-3 { background-image: url('../images/bg_6.jpg'); background-size: cover; background-position: center; }
.bg-panel-3 { width: 40%; background: url('../images/bg_6.jpg') center/cover; }
.bg-img-4 { background-image: url('../images/bg_7.jpg'); background-size: cover; background-position: center; }
.bg-panel-4 { width: 40%; background: url('../images/bg_7.jpg') center/cover; }
.bg-img-5 { background-image: url('../images/bg_10.jpg'); background-size: cover; background-position: center; }
.bg-panel-5 { width: 40%; background: url('../images/bg_10.jpg') center/cover; }
.bg-img-6 { background-image: url('../images/bg_11.jpg'); background-size: cover; background-position: center; }
.bg-panel-6 { width: 40%; background: url('../images/bg_11.jpg') center/cover; }
.bg-img-7 { background-image: url('../images/bg_12.jpg'); background-size: cover; background-position: center; }
.bg-panel-7 { width: 40%; background: url('../images/bg_12.jpg') center/cover; }

/* Premium Hotels Page Styles */
.hotels-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #06143a) 100%), url("../images/bg_12.jpg") center/cover no-repeat;
  background-blend-mode: overlay;
  padding: 60px 0 80px;
  position: relative;
  margin-bottom: 50px;
  border-radius: 0 0 40px 40px;
}
.hotels-search-widget {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: translateY(40px);
  position: relative;
  z-index: 10;
}
.filter-sidebar {
  position: sticky;
  top: 100px;
}
.filter-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  background: #fff;
  overflow: hidden;
}
.filter-header {
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 800;
  font-size: 1.1rem;
}
.filter-body {
  padding: 24px;
}
.filter-group {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}
.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.filter-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}
.custom-checkbox .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  border-radius: 4px;
  border: 1.5px solid #cbd5e1;
}
.custom-checkbox .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.custom-checkbox .form-check-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.filter-count {
  font-size: 0.8rem;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 10px;
}

/* List View Card */
.hotel-list-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  margin-bottom: 24px;
  border: 1px solid #f1f5f9;
}
.hotel-list-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  border-color: #e2e8f0;
}
.hotel-list-img {
  width: 300px;
  min-height: 220px;
  position: relative;
}
.hotel-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-list-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hotel-list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.hotel-list-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 5px 0;
}
.hotel-list-location {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hotel-list-location i {
  color: var(--primary);
}
.hotel-list-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.rating-badge {
  background: #0056d2;
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px 8px 8px 0;
  font-weight: 800;
  font-size: 1.1rem;
}
.rating-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}
.hotel-list-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
.amenity-tag {
  font-size: 0.8rem;
  color: #475569;
  background: #f8fafc;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.amenity-tag i {
  color: var(--primary);
}
.hotel-list-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
}
.hotel-list-price {
  text-align: right;
}
.price-strike {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 0.9rem;
  margin-right: 8px;
}
.price-final {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.price-tax {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.btn-book-primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
}
.btn-book-primary:hover {
  background: #0043a8;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 86, 210, 0.2);
}

/* Sort Pills */
.sort-pills {
  display: flex;
  gap: 10px;
}
.sort-pill {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  color: var(--text-muted);
  background: #fff;
  transition: all 0.2s;
}
.sort-pill.active {
  background: rgba(0, 86, 210, 0.1);
  color: var(--primary);
  border-color: var(--primary);
}
.sort-pill:hover:not(.active) {
  background: #f8fafc;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .hotel-list-card {
    flex-direction: column;
  }
  .hotel-list-img {
    width: 100%;
    height: 200px;
    min-height: auto;
  }
}

/* Hotel Details Page Styles */
.details-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 24px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}
.gallery-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-more {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  cursor: pointer;
}

.details-section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.details-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background: var(--primary);
  border-radius: 3px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.amenity-item i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.room-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 24px;
  background: #fff;
  transition: all 0.3s;
}
.room-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-color: #cbd5e1;
}
.room-img {
  width: 200px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
}
.room-info {
  flex: 1;
}
.room-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.room-features {
  display: flex;
  gap: 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.room-price-box {
  text-align: right;
  border-left: 1px dashed #e2e8f0;
  padding-left: 24px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-widget {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
  position: sticky;
  top: 100px;
}
.widget-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.widget-tax {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.guest-selector {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 120px;
  }
  .gallery-main {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .room-card {
    flex-direction: column;
  }
  .room-img {
    width: 100%;
    height: 200px;
  }
  .room-price-box {
    border-left: none;
    border-top: 1px dashed #e2e8f0;
    padding-left: 0;
    padding-top: 20px;
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/* Premium Breadcrumbs */
.premium-breadcrumb-wrapper {
  background: #f8fafc;
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid #e2e8f0;
}
.premium-breadcrumb-wrapper .breadcrumb {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.premium-breadcrumb-wrapper .breadcrumb-item a {
  color: #64748b;
  transition: color 0.2s;
}
.premium-breadcrumb-wrapper .breadcrumb-item a:hover {
  color: var(--primary);
}
.premium-breadcrumb-wrapper .breadcrumb-item.active {
  color: var(--text-dark);
}
.premium-breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before {
  content: "\f054"; /* FontAwesome Chevron Right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.6rem;
  color: #cbd5e1;
  vertical-align: middle;
  padding-right: 8px;
}

/* Packages Page Styles */
.package-list-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  margin-bottom: 24px;
  border: 1px solid #f1f5f9;
}
.package-list-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  border-color: #e2e8f0;
}
.package-list-img {
  width: 320px;
  min-height: 240px;
  position: relative;
}
.package-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-list-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.package-list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.package-list-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 5px 0;
}
.package-duration {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(0, 86, 210, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}
.package-route {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 600;
}
.package-inclusions {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #e2e8f0;
}
.inclusion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #64748b;
}
.inclusion-item i {
  font-size: 1.2rem;
  color: var(--text-dark);
}
.inclusion-item span {
  font-size: 0.75rem;
  font-weight: 600;
}
.inclusion-item.disabled {
  opacity: 0.4;
}
.package-list-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
}
.package-list-price {
  text-align: right;
}
.package-price-strike {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 0.9rem;
  margin-right: 8px;
}
.package-price-final {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.package-price-tax {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .package-list-card {
    flex-direction: column;
  }
  .package-list-img {
    width: 100%;
    height: 200px;
    min-height: auto;
  }
  .package-inclusions {
    justify-content: space-between;
  }
}

/* Unified Premium Search Bar */
.premium-search-bar {
  display: flex;
  background: #fff;
  border-radius: 100px;
  padding: 10px 10px 10px 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  align-items: center;
  transform: translateY(40px);
  position: relative;
  z-index: 10;
}
.premium-search-bar .search-field {
  flex: 1;
  padding: 5px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.premium-search-bar .search-field.border-end {
  border-right: 1px solid #e2e8f0 !important;
}
.premium-search-bar .search-field label {
  font-size: 0.7rem;
  font-weight: 800;
  color: #64748b;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.premium-search-bar .search-field input,
.premium-search-bar .search-field select {
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  padding: 0;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
.premium-search-bar .search-field select {
  background-image: url("data:image/svg+xml;utf8,<svg fill=%27%23000000%27 height=%2724%27 viewBox=%270 0 24 24%27 width=%2724%27 xmlns=%27http://www.w3.org/2000/svg%27><path d=%27M7 10l5 5 5-5z%27/><path d=%27M0 0h24v24H0z%27 fill=%27none%27/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
  padding-right: 20px;
}
.premium-search-bar .search-field input::placeholder {
  color: #cbd5e1;
  font-weight: 600;
}
.premium-search-bar .search-button-wrap {
  margin-left: 10px;
}
.btn-search-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #0043a8 100%);
  border: none;
  color: #fff;
  transition: all 0.3s;
}
.btn-search-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 86, 210, 0.3);
  color: #fff;
}
@media (max-width: 991px) {
  .premium-search-bar {
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    gap: 15px;
  }
  .premium-search-bar .search-field {
    width: 100%;
    padding: 10px 0;
  }
  .premium-search-bar .search-field.border-end {
    border-right: none !important;
    border-bottom: 1px solid #e2e8f0;
  }
  .btn-search-circle {
    width: 100%;
    border-radius: 10px;
    height: 50px;
  }
}

/* Package Details Page */
.itinerary-item { border-left: 3px solid #e2e8f0; padding-left: 24px; position: relative; margin-bottom: 32px; }
.itinerary-item::before { content: ""; position: absolute; left: -9px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--primary); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--primary); }
.itinerary-day { font-size: 0.75rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.itinerary-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.itinerary-body { color: #64748b; font-size: 0.9rem; line-height: 1.7; }
.inclusion-list li { padding: 8px 0; border-bottom: 1px solid #f1f5f9; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.inclusion-list li:last-child { border-bottom: none; }
.inclusion-list li i.yes { color: #22c55e; }
.inclusion-list li i.no { color: #ef4444; }
.pkg-price-widget { background:#fff; border-radius: 16px; padding: 24px; box-shadow: 0 15px 35px rgba(0,0,0,0.08); border: 1px solid #f1f5f9; position: sticky; top: 100px; }
.pkg-price-widget .price-big { font-size: 2.2rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.pkg-price-widget .per-person { font-size: 0.8rem; color: #94a3b8; }
.guest-count-box { display: flex; align-items: center; justify-content: space-between; border: 1px solid #e2e8f0; border-radius: 10px; padding: 10px 16px; margin-bottom: 16px; }
.guest-count-box .count-controls { display: flex; align-items: center; gap: 12px; }
.count-btn { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid #e2e8f0; background: #fff; font-size: 1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.count-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Suggested Packages Cards */
.suggest-card { border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid #f1f5f9; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.04); }
.suggest-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: #e2e8f0; }
.suggest-card-img { height: 180px; overflow: hidden; position: relative; }
.suggest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.suggest-card:hover .suggest-card-img img { transform: scale(1.08); }
.suggest-card-body { padding: 16px; }
.suggest-card-title { font-size: 1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.suggest-card-route { font-size: 0.8rem; color: #94a3b8; font-weight: 600; margin-bottom: 12px; }
.suggest-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px dashed #e2e8f0; }
.suggest-card-price { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); }
.suggest-card-price span { font-size: 0.75rem; color: #94a3b8; font-weight: 400; display: block; }

/* Hide Prices Globally */
.package-price,
.package-v2-price-val,
.feat-pkg-price-amt,
.price-val,
.overview-price-val,
.price-currency,
.price-display,
.suggest-card-price,
.price-strike,
.price-final,
.price-tax,
.widget-price,
.pkg-price-widget,
.room-price-box,
.hotel-list-price,
.package-list-price,
.price-amount,
.card-price,
.widget-tax {
    display: none !important;
}
