@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&family=Tajawal:wght@400;700&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #ffffff;
      color: #ff852d;
      direction: rtl;
      line-height: 1.6;
    }

    /* Navigation */
    #main-nav {
      background: linear-gradient(135deg, #ff852d 0%, #ff9d4d 100%);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 20px rgba(255, 133, 45, 0.4);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }

    .logo img {
      height: 60px;
      width: auto;
      filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    .nav-links a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      position: relative;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .nav-links a:hover {
      color: #fff;
      transform: translateY(-2px);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      right: 0;
      width: 0;
      height: 3px;
      background: #fff;
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* Sections */
    section {
      min-height: 00%;
      padding: 4rem 2rem;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Home Section */
    #home {
      background: linear-gradient(135deg, #ff852d 0%, #e6c0a5 50%);
    }

    .main-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: clamp(1rem, 4vw, 5rem);
      padding: 2rem 1rem;
      flex-wrap: wrap;
    }

    .slideshow-wrapper {
      width: min(100vw, 600px);
      aspect-ratio: 1/1;
      position: relative;
    }

    .slideshow-container {
      width: 100%;
      height: 100%;
      border: 3px solid #ff852d;
      border-radius: 50%;
      overflow: hidden;
      position: relative;
      box-shadow: 0 0 40px rgba(255, 133, 45, 0.5);
    }

    .slideshow-text {
      flex: 0 1 auto;
      padding: 0;
      min-width: 150px;
      max-width: 45%;
    }

    .text-content {
      text-align: right;
      direction: rtl;
    }

    .text-content .title {
      font-size: clamp(1.5rem, 4vw, 3rem);
      font-weight: bold;
      margin: 0;
      color: #ff852d;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .text-content .subtitle {
      font-size: clamp(1rem, 3vw, 2rem);
      margin: 0.5rem 0 0;
      color: #fff;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    #number-counter-container {
      margin: 3rem auto;
      text-align: center;
    }

    /* Video Showcase */
    .video-showcase {
      margin: 3rem auto;
      max-width: 900px;
    }

    .video-container-horizontal {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      background-color: #000000;
      box-shadow: 0 10px 40px rgba(255, 116, 17, 0.726);
    }

    .video-wrapper-horizontal {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
    }

    .video-wrapper-horizontal video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Dates Section */
    #dates {
      background: #ffffff ;
    }

    .header {
      text-align: center;
      margin-bottom: 3rem;
      padding: 1rem 0;
    }

    .header h1 {
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700;
      color: #ff852d;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .loading {
      text-align: center;
      padding: 3rem;
      color: #fff;
    }

    .spinner {
      width: 50px;
      height: 50px;
      border: 4px solid rgba(255, 255, 255, 0.3);
      border-top: 4px solid #ff852d;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 1rem auto;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .trips-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      margin-bottom: 3rem;
    }

    .trip-card {
      background: linear-gradient(300deg, #ff852d 0%, #e6c0a5 100%);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 133, 45, 0.3);
      border-radius: 15px;
      padding: 2rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .trip-card:hover {
      border-color: #ff852d;
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(255, 133, 45, 0.4);
    }

    .trip-dates {
      margin-bottom: 1.5rem;
    }

    .date-item {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
      font-size: 1.1rem;
      color: #fff;
    }

    .date-icon {
      font-size: 1.3rem;
      margin-left: 0.5rem;
      color: #ff852d;
    }

    .date-label {
      font-weight: 500;
      margin-left: 0.5rem;
      color: rgba(255, 255, 255, 0.8);
    }

    .date-value {
      font-weight: 700;
      color: #fff;
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.8rem 1.5rem;
      border-radius: 25px;
      font-weight: 700;
      font-size: 0.95rem;
      color: white;
      min-width: 150px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .status-available {
      background: linear-gradient(135deg, #27ae60, #229954);
    }

    .status-limited {
      background: linear-gradient(135deg, #ff852d, #e86f10);
    }

    .status-full {
      background: linear-gradient(135deg, #e74c3c, #c0392b);
    }

    .contact-section {
      margin-top: 3rem;
      padding: 2rem;
      background: rgba(255, 133, 45, 0.1);
      border-radius: 15px;
      border: 2px solid rgba(255, 133, 45, 0.3);
    }

    .contact-title {
      color: #ff852d;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .contact-buttons {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      max-width: 700px;
      margin: 0 auto;
    }

    .contact-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2rem;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      color: white;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .contact-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .btn-call {
      background: linear-gradient(135deg, #ff852d, #e86f10);
    }

    .btn-whatsapp {
      background: linear-gradient(135deg, #25D366, #20ba5a);
    }

    .btn-icon {
      margin-left: 0.5rem;
      font-size: 1.3rem;
    }

    /* Hotels Section */
    #hotels {
      background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    }

    .hotel {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 133, 45, 0.2);
      border-radius: 15px;
      padding: 2.5rem;
      margin-bottom: 2rem;
      transition: all 0.3s ease;
    }

    .hotel:hover {
      border-color: #ff852d;
      box-shadow: 0 10px 40px rgba(255, 133, 45, 0.3);
    }

    .hotel h2 {
      color: #ff852d;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .rating {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      color: #ffd700;
    }

    .info-columns {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 2rem;
    }

    .info-column {
      flex: 1 1 280px;
      background: rgba(255, 133, 45, 0.1);
      padding: 1.5rem;
      border-radius: 10px;
      border: 1px solid rgba(255, 133, 45, 0.3);
    }

    .info-column h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: #ff852d;
      border-bottom: 2px solid rgba(255, 133, 45, 0.5);
      padding-bottom: 0.5rem;
    }

    .info-column ul {
      list-style: none;
      padding: 0;
    }

    .info-column ul li {
      margin-bottom: 0.8rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
      padding-right: 1.5rem;
      position: relative;
    }

    .info-column ul li::before {
      content: '✓';
      position: absolute;
      right: 0;
      color: #ff852d;
      font-weight: bold;
    }

    .location {
      margin-top: 1.5rem;
      font-size: 1.1rem;
      color: #ff852d;
      font-weight: 600;
    }

    /* Videos Section */
    #videos {
      background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    }

    .section-title {
      text-align: center;
      font-size: clamp(2rem, 4vw, 3rem);
      color: #ff852d;
      margin-bottom: 3rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .videos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .carousel-container {
      position: relative;
      max-width: 360px;
      width: 100%;
      margin: 0 auto;
      border-radius: 15px;
      overflow: hidden;
      background-color: #000;
      box-shadow: 0 10px 40px rgba(255, 133, 45, 0.3);
      touch-action: pan-y;
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      padding-top: 177.77%;
    }

    .video-wrapper video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.4s ease-in-out;
      opacity: 1;
    }

    .fade-out {
      opacity: 0 !important;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(255, 133, 45, 0.7);
      border: none;
      font-size: 28px;
      padding: 12px;
      cursor: pointer;
      z-index: 1;
      display: none;
      color: white;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .arrow:hover {
      background-color: rgba(255, 133, 45, 1);
    }

    .arrow.left {
      left: 10px;
    }

    .arrow.right {
      right: 10px;
    }

    @media (pointer: fine) {
      .arrow {
        display: flex;
      }
    }

    .swipe-hint {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 16px;
      color: white;
      opacity: 0.8;
      animation: swipeHint 2s ease-in-out 1s 3;
      z-index: 2;
      pointer-events: none;
      background: rgba(0, 0, 0, 0.5);
      padding: 0.5rem 1rem;
      border-radius: 20px;
    }

    @keyframes swipeHint {
      0% { transform: translateX(-50%) translateX(0); opacity: 0.8; }
      50% { transform: translateX(-50%) translateX(-20px); opacity: 0.5; }
      100% { transform: translateX(-50%) translateX(0); opacity: 0.8; }
    }

    /* Reviews Section */
    #reviews {
      background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    }

    .review-videos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .video-container-vertical {
      max-width: 360px;
      width: 100%;
      margin: 0 auto;
      border-radius: 15px;
      overflow: hidden;
      background-color: #000;
      box-shadow: 0 10px 40px rgba(255, 133, 45, 0.3);
    }

    .video-wrapper-vertical {
      position: relative;
      width: 100%;
      padding-top: 177.77%;
    }

    .video-wrapper-vertical video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .mute-button {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 10;
      background-color: rgba(255, 133, 45, 0.8);
      border: none;
      color: white;
      padding: 10px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 20px;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .mute-button:hover {
      background-color: rgba(255, 133, 45, 1);
      transform: scale(1.1);
    }

    .social-reviews {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    /* About Section */
    #about {
      background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    }

    #about h1 {
      color: #ff852d;
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      margin-bottom: 2rem;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    #about h2 {
      color: #ff852d;
      font-size: 1.5rem;
      margin: 2rem 0 1rem;
    }

    #about .section {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 133, 45, 0.2);
      border-radius: 15px;
      padding: 2rem;
      margin-bottom: 2rem;
    }

    #about ul {
      list-style: none;
      padding: 0;
      margin: 1rem 0;
    }

    #about ul li {
      padding: 0.5rem 0 0.5rem 2rem;
      position: relative;
      color: rgba(255, 255, 255, 0.9);
    }

    #about ul li::before {
      content: '✓';
      position: absolute;
      right: 0;
      color: #ff852d;
      font-weight: bold;
      font-size: 1.2rem;
    }

    #about a {
      color: #ff852d;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    #about a:hover {
      text-decoration: underline;
      color: #ffa04d;
    }

    /* Contact Section */
    #contact {
      background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    }

    .contact-container {
      max-width: 600px;
      margin: 0 auto;
      padding: 3rem;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 133, 45, 0.3);
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .contact-container .logo {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin-bottom: 1rem;
      border: 3px solid #ff852d;
    }

    .online-status {
      color: #27ae60;
      font-size: 1.1rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .message {
      direction: rtl;
      margin: 2rem 0;
      color: #fff;
      line-height: 1.8;
      font-size: 1.1rem;
    }

    .contact-container h3 {
      color: #ff852d;
      font-size: 1.8rem;
      margin: 1.5rem 0;
    }

    .contact-container .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #25D366, #20ba5a);
      color: white;
      padding: 1rem 2rem;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1.2rem;
      font-weight: 700;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    .contact-container .button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }

    .contact-container .button img {
      width: 25px;
      height: 25px;
      margin-left: 10px;
    }

    /* Footer */
    footer {
      background: #0a0e1a;
      padding: 2rem;
      text-align: center;
      border-top: 2px solid #ff852d;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-content p {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 1rem;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #ff852d;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: #ffa04d;
      text-decoration: underline;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(26, 26, 46, 0.98);
        padding: 1rem;
        display: none;
      }

      .nav-links.active {
        display: flex;
      }

      .main-wrapper {
        flex-direction: column;
      }

      .slideshow-text {
        max-width: 100%;
        text-align: center;
      }

      .trips-grid {
        grid-template-columns: 1fr;
      }

      .contact-buttons {
        grid-template-columns: 1fr;
      }

      .info-columns {
        flex-direction: column;
      }

      .videos-grid {
        grid-template-columns: 1fr;
      }

      .review-videos {
        grid-template-columns: 1fr;
      }

      .social-reviews {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      section {
        padding: 2rem 1rem;
      }

      .nav-container {
        padding: 1rem;
      }

      .logo img {
        height: 50px;
      }

      .hotel {
        padding: 1.5rem;
      }

      .contact-container {
        padding: 2rem 1rem;
      }
    }

    /* Elfsight Widget Styling */
    .elfsight-app-73af7f82-c805-430a-8143-1dce257cf350,
    .elfsight-app-1aaee8d6-6941-4c6f-ba0e-e32c1939e8ae,
    .elfsight-app-ad3ea165-5c66-4c96-b82e-603c23edd479 {
      margin: 2rem auto;
    }
    .stats-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-box {
    width: 100%;
    max-width: 420px;
    height: 180px;
    border-radius: 14px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
    color: white;
    font-family: "Cairo", sans-serif;
    text-align: center;
    transition: 0.25s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
    opacity: 0.95;
}

.stat-icon {
    font-size: 52px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 38px;
    font-weight: 700;
}

.stat-label {
    font-size: 18px;
    margin-top: 6px;
}

/* Gradient Colors */
.stat-orange {
    background: linear-gradient(135deg, #ff852d, #ff6a00);
}

.stat-green {
    background: linear-gradient(135deg, #00b439, #00972f);
}

.stat-blue {
    background: linear-gradient(135deg, #0056b8, #00439a);
}

/* Responsive */
@media (max-width: 768px) {
    .stat-box {
        max-width: 100%;
        height: 160px;
    }
}