  :root {
    /* --sea: #0e7490;
    --accent: #14b8a6;
    --muted: #64748b;
    --card-bg: #ffffff;
    --soft: #f7fafc; */

      --sea: #0e7490;
    --sand: #fef3c7;
    --coral: #71c8fb;
    --ink: #0f172a;
    --muted: #64748b;
  }
  html,
  body {
    height: 100%;
  }
  body {
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    background: var(--soft);
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
  }
  /* Navbar Glass Effect */
  .navbar-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  /* Brand */
  .navbar-brand .brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sea);
  }

  /* Links */
  .nav-link {
    font-weight: 500;
    color: var(--ink);
    position: relative;
    transition: 0.3s;
  }
  /* تكبير الخط في اللينكات */
  .navbar-nav .nav-link {
    font-size: 1.1rem; /* الحجم الافتراضي بيكون ~1rem */
    font-weight: 500; /* تخليها واضحة أكتر */
  }

  /* تكبير زرار Book Now */
  .btn-cta {
    font-size: 1.1rem;
    padding: 10px 22px; /* علشان يبقى مريح أكتر */
  }

  .nav-link:hover {
    color: var(--sea);
  }
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--sea);
    transition: width 0.3s ease;
  }
  .nav-link:hover::after {
    width: 100%;
  }
  /* Active Link */
  .nav-link.active {
    color: var(--sea);
  }

  .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%; /* عكس hover اللي بيبدأ من 0% */
    height: 2px;
    background: var(--sea);
  }

  /* CTA Button */
  .btn-cta {
    background: linear-gradient(135deg, var(--sea), var(--coral));
    color: #fff !important;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }
  @media (max-width: 991px) {
    .navbar-nav {
      flex-direction: column !important;
      text-align: center;
      margin-top: 1rem;
    }
    .navbar-nav .nav-link {
      padding: 0.8rem;
      font-size: 1.2rem;
    }
    .btn-cta {
      margin: 1rem auto 0;
      display: inline-block;
    }
  }
  /*ُEnd navbar*/

  /* HERO SLIDER */
  .hero-section {
    position: relative;
    height: 90vh; /* Increased height as requested */
    min-height: 700px;
    overflow: hidden;
    margin-top: -85px; /* Pull up behind navbar */
  }

  .hero-swiper {
    width: 100%;
    height: 100%;
  }

  .slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  /* Darken slide specifically for text contrast */
  .slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: 
      /* Gradient for text contrast */
      linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%),
      /* Texture Overlay to mask pixelation (Dot Pattern) */
      radial-gradient(rgba(0,0,0,0.15) 1px, transparent 1px);
    background-size: 100% 100%, 4px 4px; /* Pattern size */
    pointer-events: none;
  }

  /* Enhance image rendering to reduce blurriness perception */
  .slide-bg {
    /* ... previous styles ... */
    image-rendering: -webkit-optimize-contrast; /* Try to crisp up edges */
    filter: contrast(1.1) saturate(1.1); /* Make it pop more to hide low res */
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none; /* Let clicks pass through to slider controls */
  }

  /* Glass Card - High Contrast (Dark) */
  .glass-card {
    background: rgba(3, 18, 22, 0.318); /* Dark Deep Sea Glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent); /* Accent line for professional look */
    border-radius: 4px 20px 20px 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    margin-top: 50px;
    max-width: 650px; /* Limit width for cleaner look */
  }

  .badge-location {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px; /* More professional, less rounded */
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* Swiper navigation */
  .hero-section .swiper-button-next,
  .hero-section .swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    transition: 0.3s;
  }
  .hero-section .swiper-button-next::after,
  .hero-section .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
  }
  .hero-section .swiper-button-next:hover,
  .hero-section .swiper-button-prev:hover {
    background: rgba(255,255,255,0.3);
  }

  .hero-section .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: 0.3s;
  }
  .hero-section .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 5px;
    background: var(--accent);
  }

  /* ─── Tablet (≤991px) ─── */
  @media (max-width: 991px) {
    .hero-section {
      height: 70vh;
      min-height: 480px;
      margin-top: 0;
    }
    .hero-swiper {
      height: 100%;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      padding: 0 16px !important;
      display: flex;
      align-items: flex-end;
      padding-bottom: 40px;
      background: linear-gradient(to bottom, transparent 20%, rgba(15,23,42,0.5) 50%, rgba(15,23,42,0.92) 100%);
    }
    .glass-card {
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border: none;
      box-shadow: none;
      padding: 0 !important;
      margin-top: 0;
      max-width: 100%;
    }
    .glass-card h1.display-4 {
      font-size: 1.8rem;
      margin-bottom: 12px;
    }
    .slide-bg::after {
      background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(15,23,42,0.85) 100%);
      background-size: 100% 100%;
    }
    .badge-location {
      font-size: 0.78rem;
      padding: 5px 10px;
    }
    .hero-desc {
      font-size: 0.9rem;
      -webkit-line-clamp: 5 !important;
      margin-bottom: 14px !important;
    }
  }

  /* ─── Phone (≤576px) ─── */
  @media (max-width: 576px) {
    .hero-section {
      height: 60vh;
      min-height: 380px;
      margin-top: 70px  !important;
    }
    .hero-overlay {
      padding-bottom: 28px;
      padding-left: 12px;
      padding-right: 12px;
    }
    .glass-card h1.display-4 {
      font-size: 1.35rem;
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .badge-location {
      font-size: 0.72rem;
      padding: 4px 8px;
    }
    .hero-desc {
      font-size: 0.8rem;
      -webkit-line-clamp: 5 !important;
      margin-bottom: 10px !important;
    }
    .btn-custom.btn-lg {
      padding: 10px 20px;
      font-size: 0.85rem;
    }
    .hero-section .swiper-pagination-bullet {
      width: 7px;
      height: 7px;
    }
    .hero-section .swiper-pagination-bullet-active {
      width: 18px;
    }
  }

  /* Hero Buttons */
  .btn-custom {
    background: linear-gradient(135deg, var(--sea), var(--accent));
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 30px;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }
  .btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    color: #fff;
  }

  .hero-overlay .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    transition: 0.3s;
  }
  .hero-overlay .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
  }

  /* Layout */
  .container-lg {
    max-width: 1200px;
  }

  /* Gallery */
  .gallery-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 22px rgba(2, 6, 23, 0.06);
  }
  .swiper-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }
  .thumbs .swiper-slide {
    height: 80px;
    opacity: 0.6;
    cursor: pointer;
  }
  .thumbs .swiper-slide-thumb-active {
    opacity: 1;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.12);
  }

  /* Info + amenities */
  .hotel-info {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 8px 22px rgba(2, 6, 23, 0.04);
  }
  .amenities i {
    color: var(--sea);
    font-size: 1.05rem;
  }
  .hotel-info h3 {
    margin-bottom: 0.25rem;
    font-weight: 800;
    color: #0b3540;
  }
  .hotel-info p.lead {
    margin-bottom: 12px;
    color: var(--muted);
  }

  /* packages */
  .season-card {
    background: linear-gradient(180deg, #fff, #fbfeff);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.04);
  }
  .rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .rate-title {
    font-weight: 700;
    color: #0e3740;
  }
  .rate-price {
    font-weight: 800;
    color: var(--sea);
    font-size: 1.15rem;
  }

  /* upgrade chips */
  .chip {
    border-radius: 10px;
    padding: 8px 10px;
    border: 1px solid #e6eef2;
    background: #fff;
    display: inline-flex;
    gap: 8px;
    align-items: center;
  }

  /* booking modal styles */
  .modal-booking .modal-content {
    border-radius: 12px;
    overflow: hidden;
  }
  .summary-box {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.03);
  }

  /* responsive adjustments */
  @media (min-width: 992px) {
    .sticky-right {
      position: sticky;
      top: 100px;
    }
  }
  @media (max-width: 767px) {
    .hero {
      padding: 48px 0;
      background-position: center 30%;
    }
    .swiper-slide img {
      height: 200px;
    }
  }

  /* small helpers */
  .muted {
    color: var(--muted);
  }
  .text-primary-strong {
    color: var(--sea);
    font-weight: 700;
  }

  /*Footer*/
  /* =========================
    Premium Responsive Footer
    ========================= */

  :root {
    --sea: #0e7490;
    --sand: #fef3c7;
    --ink: #0f172a;
    --muted: #64748b;
    --footer-bg-1: rgba(4, 28, 36, 0.95);
    --footer-bg-2: rgba(3, 18, 22, 0.95);
    --accent: var(--sea);
    --muted-light: #9aa6ad;
  }

  .site-footer {
    color: #e6f8f7;
    background: linear-gradient(180deg, var(--footer-bg-1), var(--footer-bg-2));
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
      "Helvetica Neue", Arial;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
  }

  /* Top Grid */
  .footer-top {
    padding: 48px 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 1.4rem;
    align-items: start;
  }

  /* Brand */
  .footer-brand .brand-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
  }
  .brand-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sand);
  }
  .brand-sub {
    font-size: 0.85rem;
    color: var(--muted-light);
  }
  .brand-desc {
    margin-top: 0.75rem;
    color: rgba(230, 248, 247, 0.92);
    line-height: 1.5;
    font-size: 0.95rem;
  }

  /* Trust badges */
  .trust-row {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    align-items: center;
    flex-wrap: wrap;
  }
  .trust-badge {
    height: 36px;
    opacity: 0.98;
  }

  /* Sections Headings */
  .footer-section h4 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1rem;
  }

  /* Links */
  .footer-links ul,
  .footer-trips ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-links a,
  .footer-trips a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    display: block;
    padding: 6px 0;
    transition: color 0.18s ease, transform 0.18s ease;
  }
  .footer-links a:hover,
  .footer-trips a:hover {
    color: var(--accent);
    transform: translateX(3px);
  }

  /* Trips */
  .trip-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .trip-list img {
    width: 64px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
  }

  /* Contact */
  .contact-lines .c-row {
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
  }
  .contact-lines a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  .contact-lines i {
    color: var(--accent);
  }

  /* Newsletter */
  .newsletter-row {
    display: flex;
    gap: 8px;
    margin-top: 8px;
  }
  .newsletter-row input[type="email"] {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
  }
  .newsletter-row input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  .btn-news {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .btn-news:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 116, 144, 0.15);
  }

  /* Socials */
  .socials a {
    color: rgba(255, 255, 255, 0.95);
    margin-right: 8px;
    font-size: 1.05rem;
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.18s ease, transform 0.12s ease;
  }
  .socials a:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-3px);
    color: var(--accent);
  }

  /* Bottom */
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent);
  }
  .footer-bottom-inner {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-bottom .payments img {
    height: 26px;
    margin-left: 8px;
    opacity: 0.95;
    filter: saturate(0.9);
  }
  .footer-bottom .legal a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 12px;
    text-decoration: none;
  }
  .footer-bottom .legal a:hover {
    color: var(--accent);
  }

  /* =========================
    Responsive
    ========================= */
  @media (max-width: 1200px) {
    .footer-grid {
      grid-template-columns: 1.5fr 1fr 1fr;
    }
  }
  @media (max-width: 992px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .footer-brand {
      grid-column: 1 / -1;
    }
    .newsletter-row {
      flex-direction: column;
    }
    .newsletter-row input,
    .btn-news {
      width: 100%;
    }
  }
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
    .footer-bottom-inner {
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }
    .trip-list img {
      width: 56px;
      height: 40px;
    }
    .socials a {
      width: 42px;
      height: 42px;
      font-size: 1.15rem;
    }
  }
  @media (max-width: 420px) {
    .brand-desc {
      display: none;
    }
  }

  /* End Footer*/
