    :root {
      --primary-color: #0d47a1;
      --primary-dark: #093175;
      --primary-light: #e3f2fd;
      --text-dark: #0f172a;
      --text-medium: #475569;
      --text-light: #94a3b8;
      --bg-light: #ffffff;
      --bg-section: #f8fafc;
      --border-light: #e2e8f0;
      --shadow-sm: 0 4px 8px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
      --shadow-xl: 0 20px 50px rgba(13, 71, 161, 0.15);
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --radius-full: 50px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Tajawal', sans-serif;
      background-color: var(--bg-section);
      color: var(--text-dark);
      line-height: 1.7;
      direction: rtl;
      overflow-x: hidden;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow-sm);
      padding: 15px 0;
    }

    .header-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img {
      height: 45px;
    }

    .back-btn {
      background: var(--primary-color);
      color: white;
      padding: 12px 28px;
      border-radius: var(--radius-full);
      text-decoration: none;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
    }

    .back-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
    }

    /* Main Content */
    .main-content {
      max-width: 1400px;
      margin: 100px auto 60px;
      padding: 0 30px;
    }

    /* Hotel Header - Modified to be short and compact */
    .hotel-header {
      background: white;
      padding: 18px 30px;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-md);
      margin-bottom: 30px;
      border: 1px solid var(--border-light);
    }

    .hotel-header-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .hotel-name {
      font-size: 2rem;
      font-weight: 900;
      color: var(--text-dark);
      margin: 0;
      letter-spacing: -0.5px;
      direction: ltr;
      text-align: right;
      line-height: 1.2;
    }

    .hotel-location {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.05rem;
      color: var(--text-medium);
      font-weight: 500;
      margin-top: 6px;
    }

    .hotel-location i {
      color: var(--primary-color);
      font-size: 1.2rem;
    }

    .excellence-badge {
      background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
      color: white;
      padding: 8px 18px;
      border-radius: var(--radius-full);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      font-size: 1.05rem;
    }

    /* Gallery Grid */
    .gallery-container {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 30px;
      margin-bottom: 30px;
    }

    .main-image-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
      height: 600px;
    }

    .main-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .main-image-wrapper:hover .main-image {
      transform: scale(1.05);
    }

    .image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
      padding: 30px;
      color: white;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .main-image-wrapper:hover .image-overlay {
      opacity: 1;
    }

    .thumbnail-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .thumbnail-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      height: 188px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .thumbnail-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .thumbnail-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .thumbnail-item:hover img {
      transform: scale(1.1);
    }

    /* Content Grid */
    .content-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 30px;
    }

    /* Hotel Info Section */
    .hotel-info {
      background: white;
      padding: 40px;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-md);
    }

    .section-title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary-color);
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 3px solid var(--primary-light);
    }

    .info-block {
      margin-bottom: 35px;
    }

    .info-block h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .info-block h3 i {
      color: var(--primary-color);
      font-size: 1.5rem;
    }

    .info-block p {
      color: var(--text-medium);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 10px;
    }

    /* Amenities */
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-top: 20px;
    }

    .amenity-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 15px;
      background: var(--bg-section);
      border-radius: var(--radius-md);
      transition: all 0.3s ease;
    }

    .amenity-item:hover {
      background: var(--primary-light);
      transform: translateX(-5px);
    }

    .amenity-item i {
      color: var(--primary-color);
      font-size: 1.3rem;
    }

    .amenity-item span {
      font-weight: 600;
      color: var(--text-dark);
    }

    /* Map Section */
    .map-section {
      position: sticky;
      top: 120px;
    }

    .map-card {
      background: white;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      margin-bottom: 20px;
    }

    .map-header {
      padding: 25px;
      background: var(--primary-color);
      color: white;
    }

    .map-header h3 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .map-header p {
      opacity: 0.9;
      font-size: 1rem;
    }

    .map-container {
      height: 400px;
      position: relative;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Contact Card */
    .contact-card {
      background: white;
      padding: 30px;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-md);
    }

    .contact-card h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px;
      background: var(--bg-section);
      border-radius: var(--radius-md);
      margin-bottom: 15px;
      transition: all 0.3s ease;
    }

    .contact-item:hover {
      background: var(--primary-light);
      transform: translateX(-5px);
    }

    .contact-item i {
      color: var(--primary-color);
      font-size: 1.4rem;
      width: 30px;
    }

    .contact-btn {
      width: 100%;
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      color: white;
      padding: 18px;
      border: none;
      border-radius: var(--radius-full);
      font-size: 1.2rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
      margin-top: 20px;
    }

    .contact-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    }

    /* Couples Badge */
    .couples-badge {
      background: linear-gradient(135deg, #ec407a 0%, #d81b60 100%);
      color: white;
      padding: 20px;
      border-radius: var(--radius-lg);
      margin-top: 30px;
      text-align: center;
    }

    .couples-badge i {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .couples-badge p {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .gallery-container,
      .content-grid {
        grid-template-columns: 1fr;
      }

      .main-image-wrapper {
        height: 500px;
      }

      .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .thumbnail-item {
        height: 200px;
      }

      .map-section {
        position: static;
      }
    }

    @media (max-width: 768px) {
      .main-content {
        padding: 0 15px;
        margin-top: 80px;
      }

      .hotel-name {
        font-size: 1.6rem;
      }

      .hotel-header {
        padding: 16px 20px;
      }

      .main-image-wrapper {
        height: 350px;
      }

      .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
      }

      .thumbnail-item {
        height: 120px;
      }

      .hotel-info {
        padding: 25px;
      }

      .amenities-grid {
        grid-template-columns: 1fr;
      }

      .section-title {
        font-size: 1.5rem;
      }

      .map-container {
        height: 300px;
      }

      .excellence-badge {
        font-size: 1rem;
        padding: 7px 14px;
      }
    }

    @media (max-width: 576px) {
      .header-content {
        padding: 0 15px;
      }

      .logo img {
        height: 35px;
      }

      .back-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
      }

      .hotel-name {
        font-size: 1.4rem;
      }

      .hotel-header {
        padding: 14px 16px;
      }

      .hotel-location {
        font-size: 0.95rem;
      }

      .hotel-location i {
        font-size: 1rem;
      }

      .excellence-badge {
        font-size: 0.95rem;
        padding: 6px 12px;
      }

      .main-image-wrapper {
        height: 280px;
      }

      .thumbnail-item {
        height: 100px;
      }

      .hotel-info,
      .contact-card {
        padding: 20px;
      }
    }