 :root {
     --primary: #2a318d;
     --coral: #F5865C;
     --navy-dark: #1E2466;
     --bg-light: #F8F8FC;
     --bg-dark: #13141f;
     --slate-100: #f1f5f9;
     --slate-300: #cbd5e1;
     --slate-400: #94a3b8;
     --slate-500: #64748b;
     --slate-600: #475569;
     --slate-700: #334155;
     --slate-900: #0f172a;
     --white: #ffffff;
     --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'DM Sans', sans-serif;
     margin: 0;
     padding: 0;
     background-color: var(--bg-light);
     color: var(--slate-900);
     line-height: 1.5;
 }

 body.lang-ar {
     direction: rtl;
     text-align: right;
 }

 body.lang-en {
     direction: ltr;
     text-align: left;
 }

 h1,
 h2,
 h3,
 .font-display {
     font-family: 'Poppins', sans-serif;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: 0.3s;
 }

 button {
     cursor: pointer;
     border: none;
     font-family: inherit;
 }

 .container-wide {
     max-width: 1440px;
     margin: 0 auto;
     padding: 0 1rem;
 }

 /* --- UTILITIES --- */
 .flex {
     display: flex;
 }

 .items-center {
     align-items: center;
 }

 .items-end {
     align-items: flex-end;
 }

 .justify-between {
     justify-content: space-between;
 }

 .grid {
     display: grid;
 }

 .gap-4 {
     gap: 1rem;
 }

 .gap-8 {
     gap: 2rem;
 }

 /* --- TOP INFO BAR --- */
 .top-bar {
     background-color: var(--primary);
     color: var(--white);
     height: 36px;
     font-size: 12px;
     font-weight: 500;
 }

 /* --- HERO SECTION --- */
 .hero {
     grid-template-columns: 1fr;
     min-height: 600px;
     overflow: hidden;
 }

 .hero-left {
     background: var(--primary);
     color: var(--white);
     padding: 4rem 2rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .hero-title {
     font-size: 3rem;
     line-height: 1.25;
     margin-bottom: 2rem;
 }

 .hero-title span {
     color: var(--coral);
 }

 .hero-right {
     background: var(--primary);
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 400px;
 }

 .plane-img {
     width: 100%;
     position: absolute;
     z-index: 10;
     filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
 }

 .floating-card {
     position: absolute;
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(4px);
     padding: 1rem;
     border-radius: 12px;
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
     z-index: 20;
 }

 /* widget section */
 .widget-wrapper {
     background: var(--primary);
 }

 /* ---  HOW IT WORKS SECTION --- */
 .how-section {
     padding: 6rem 1rem;
     background: var(--white);
 }

 .how-container {
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
 }

 .how-line {
     display: none;
     position: absolute;
     top: 32px;
     left: 0;
     width: 100%;
     height: 2px;
     background-color: var(--slate-100);
     z-index: 1;
 }

 @media (min-width: 768px) {
     .how-line {
         display: block;
     }
 }

 .how-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 3rem;
     position: relative;
     z-index: 10;
 }

 @media (min-width: 768px) {
     .how-grid {
         grid-template-columns: repeat(4, 1fr);
     }
 }

 .how-step {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 .how-circle {
     width: 64px;
     height: 64px;
     background: var(--white);
     border: 2px solid var(--primary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     color: var(--primary);
 }

 .how-step h3 {
     font-size: 18px;
     font-weight: 700;
     color: var(--primary);
     margin-bottom: 0.5rem;
 }

 .how-step p {
     font-size: 14px;
     color: var(--slate-500);
     max-width: 200px;
 }

 /* --- ADVENTURE SECTION --- */
 .adventure-section {
     padding: 6rem 1rem;
     background-color: #F8F8FC;
 }

 .adventure-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr;
     gap: 4rem;
     align-items: center;
 }

 @media (min-width: 1024px) {
     .adventure-container {
         grid-template-columns: 1.2fr 1fr;
     }
 }

 .adventure-image-placeholder {
     width: 100%;
 }

 .adventure-content {
     display: flex;
     flex-direction: column;
 }

 .adventure-sub {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .adventure-sub span {
     color: var(--primary);
     font-weight: 800;
     font-size: 1.25rem;
     white-space: nowrap;
 }

 .adventure-sub::after {
     content: "";
     flex-grow: 1;
     border-bottom: 2px dotted var(--slate-100);
 }

 .adventure-title {
     font-size: 32px;
     color: var(--slate-900);
     line-height: 1.1;
     margin-bottom: 2.5rem;
 }

 .adventure-list {
     list-style: none;
     padding: 0;
     margin-bottom: 3rem;
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .adventure-list li {
     position: relative;
     padding-left: 2rem;
     color: var(--slate-700);
     font-size: 1.125rem;
     line-height: 1.5;
 }

 .adventure-list li::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0.5rem;
     width: 10px;
     height: 10px;
     background-color: var(--primary);
     border-radius: 50%;
 }

 .btn-book {
     background-color: var(--coral);
     color: white;
     padding: 1.25rem 3.5rem;
     border-radius: 999px;
     font-weight: 700;
     font-size: 1.125rem;
     width: fit-content;
     box-shadow: 0 15px 30px -5px rgba(245, 134, 92, 0.4);
     transition: transform 0.3s ease, background 0.3s ease;
 }

 .btn-book:hover {
     transform: translateY(-3px);
     background-color: #e6764d;
 }

 /* --- TOP MENA DESTINATIONS --- */
 .destinations-section {
     padding: 6rem 1rem;
     background-color: var(--white);
 }

 .dest-header {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     margin-bottom: 4rem;
 }

 .view-all-btn {
     color: var(--primary);
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     transition: gap 0.3s ease;
     background: none !important;
 }

 .view-all-btn:hover {
     gap: 0.75rem;
 }

 .destinations-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
 }

 @media (min-width: 768px) {
     .destinations-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 .dest-card {
     cursor: pointer;
 }

 .dest-img-wrapper {
     position: relative;
     aspect-ratio: 4/5;
     border-radius: 1rem;
     overflow: hidden;
     margin-bottom: 1.5rem;
 }

 .dest-img-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.7s ease;
 }

 .dest-card:hover img {
     transform: scale(1.1);
 }

 .dest-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(42, 49, 141, 0.8) 0%, transparent 60%);
 }

 .dest-info-overlay {
     position: absolute;
     bottom: 1.5rem;
     left: 1.5rem;
     color: var(--white);
 }

 .dest-country {
     color: var(--coral);
     font-weight: 700;
     font-size: 14px;
     margin-bottom: 0.25rem;
     text-transform: uppercase;
 }

 .dest-city {
     font-size: 1.875rem;
     font-weight: 700;
 }

 .price-badge {
     position: absolute;
     top: 1.5rem;
     right: 1.5rem;
     background-color: var(--white);
     color: var(--primary);
     padding: 0.5rem 1rem;
     border-radius: 999px;
     font-weight: 700;
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
 }

 .dest-footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     color: var(--slate-500);
     transition: transform 0.3s ease;
 }

 .dest-card:hover .dest-footer {
     transform: translateX(8px);
 }

 .dest-duration {
     font-size: 16px;
 }

 .dest-trending-icon {
     color: var(--coral);
 }

 /* --- BENEFITS SECTION --- */
 .benefits-section {
     background-color: var(--primary);
     color: var(--white);
     padding: 6rem 1rem;
 }

 .benefits-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
     margin-top: 4rem;
 }

 .benefit-card {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     padding: 2rem;
     border-radius: 16px;
     transition: all 0.3s ease;
 }

 .benefit-card:hover {
     background: rgba(255, 255, 255, 0.1);
 }

 .benefit-card .material-symbols-outlined {
     color: var(--coral);
     font-size: 40px;
     margin-bottom: 1.5rem;
     display: block;
 }

 /* --- CTA BANNER --- */
 .cta-banner {
     background-color: var(--coral);
     padding: 5rem 1rem;
 }

 .cta-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: space-between;
     gap: 2rem;
 }

 @media (min-width: 768px) {
     .cta-content {
         flex-direction: row;
     }

     .benefits-grid {
         grid-template-columns: repeat(2, 1fr);
     }

 }

 .cta-title {
     color: var(--white);
     font-size: clamp(1.875rem, 5vw, 3rem);
     max-width: 600px;
     line-height: 1.1;
 }

 .btn-white {
     background: var(--white);
     color: var(--coral);
     padding: 1rem 2rem;
     border-radius: 8px;
     font-weight: 700;
     box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
 }

 .btn-navy {
     background: var(--navy-dark);
     color: var(--white);
     padding: 1rem 2rem;
     border-radius: 8px;
     font-weight: 700;
 }

 /* --- BLOG/NEWS SECTION --- */
 .blog-section {
     padding: 6rem 1rem;
     background: var(--white);
 }

 .blog-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 4rem;
 }

 .blog-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

 .article-card {
     cursor: pointer;
 }

 .article-img-wrap {
     aspect-ratio: 16/9;
     border-radius: 12px;
     overflow: hidden;
     margin-bottom: 1.5rem;
 }

 .article-img-wrap img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .article-card:hover img {
     transform: scale(1.05);
 }

 .badge {
     font-size: 10px;
     font-weight: 700;
     color: var(--coral);
     background: rgba(245, 134, 92, 0.1);
     padding: 4px 8px;
     border-radius: 4px;
 }

 .article-title {
     color: var(--primary);
     font-size: 1.25rem;
     margin: 1rem 0;
     transition: color 0.3s;
 }

 .article-card:hover .article-title {
     color: var(--coral);
 }

 .article-excerpt {
     font-size: 14px;
     color: var(--slate-500);
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .nav-arrow {
     width: 44px;
     height: 44px;
     border: 1px solid var(--slate-100);
     border-radius: 50%;
     background: white;
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .nav-arrow:hover {
     background: var(--slate-100);
 }

 /* --- TESTIMONIALS SECTION --- */
 .testimonial-section {
     padding: 6rem 0rem 0rem;
     background-color: #F8F8FC;
     text-align: center;
 }

 .testimonial-titles {
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .testimonial-sub {
     display: block;
     color: var(--coral);
     font-family: 'DM Sans', sans-serif;
     font-weight: 600;
     font-size: 20px;
     letter-spacing: 0.1px;
     margin-bottom: 0.75rem;
 }

 .testimonial-title {
     color: #011736;
     font-family: 'Poppins', sans-serif;
     font-weight: 700;
     font-size: 40px;
     line-height: 1.2;
 }


 .testimonial-image-wrap img {
     max-width: 100%;
     height: auto;
     display: block;
     margin-left: auto;
     margin-right: auto;
 }

 /* --- NEWSLETTER SECTION --- */
 .newsletter-section {
     padding: 5rem 1rem;
     background-color: var(--white);
     border-top: 1px solid var(--slate-100);
 }

 .newsletter-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: space-between;
     gap: 3rem;
 }

 @media (min-width: 1024px) {
     .newsletter-container {
         flex-direction: row;
         text-align: left;
     }
 }

 @media (min-width: 768px) {
     .newsletter-container {
         flex-direction: row;
         text-align: left;
     }

     .newsletter-form-dummy {
         flex-direction: row !important;
     }
 }

 .newsletter-title {
     color: var(--primary);
     font-family: 'Poppins', sans-serif;
     font-size: clamp(1.75rem, 4vw, 2.5rem);
     font-weight: 700;
     line-height: 1.3;
     max-width: 500px;
 }

 .newsletter-form-dummy {
     width: 100%;
     max-width: 550px;
     position: relative;
     background-color: #f4f6f9;
     padding: 8px;
     border-radius: 999px;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .newsletter-input {
     width: 100%;
     padding: 1rem 0.75rem;
     background: transparent;
     border: none;
     text-align: left;
     outline: none;
     font-size: 14px;
 }

 .newsletter-input::placeholder {
     color: var(--slate-400);
 }

 @media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .dest-header {
        flex-direction: column;
        gap: 6px;
    }

    .newsletter-input {
        text-align: center;
    }
    
    .testimonial-title {
        font-size: 33px;
    }
 }

 .newsletter-btn-static {
     background-color: var(--coral);
     color: white;
     padding: 0.8rem 2.5rem;
     border-radius: 999px;
     font-weight: 700;
     font-size: 14px;
     white-space: nowrap;
     box-shadow: 0 4px 14px rgba(245, 134, 92, 0.3);
 }

 /* --- FOOTER SECTION --- */
 .footer {
     background-color: var(--navy-dark);
     color: var(--white);
     padding: 6rem 1rem 3rem;
 }

 @media (min-width: 768px) {
     .footer {
         padding-left: 5rem;
         padding-right: 5rem;
     }
 }

 .footer-main-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 3rem;
     margin-bottom: 5rem;
 }

 @media (min-width: 768px) {
     .footer-main-grid {
         grid-template-columns: repeat(4, 1fr);
     }
 }

 .footer-logo-sub {
     font-size: 10px;
     color: var(--slate-400);
     font-weight: 500;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     display: block;
     margin-bottom: 1.5rem;
 }

 .footer-description {
     color: var(--slate-400);
     font-size: 14px;
     line-height: 1.625;
     margin-bottom: 2rem;
 }

 .social-links {
     display: flex;
     gap: 1rem;
 }

 .social-icon {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.05);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     color: white;
 }

 .social-icon:hover {
     background-color: var(--coral);
 }

 .social-icon svg {
     width: 20px;
     height: 20px;
     fill: currentColor;
 }

 .footer-heading {
     font-size: 1.125rem;
     font-weight: 700;
     margin-bottom: 2rem;
 }

 .footer-links {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .footer-links li div {
     color: var(--slate-400);
     font-size: 14px;
     transition: color 0.3s;
 }

 .footer-links li div:hover {
     color: var(--coral);
 }

 .contact-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .contact-item {
     display: flex;
     gap: 1rem;
 }

 .contact-item .material-symbols-outlined {
     color: var(--coral);
 }

 .contact-label {
     font-size: 12px;
     color: var(--slate-500);
     text-transform: uppercase;
     font-weight: 700;
 }

 .contact-value {
     font-size: 14px;
 }

 .footer-bottom {
     padding-top: 3rem;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 1.5rem;
     text-align: center;
     font-size: 12px;
     color: var(--slate-500);
 }

 @media (min-width: 768px) {
     .footer-bottom {
         flex-direction: row;
         justify-content: space-between;
         text-align: left;
     }
 }

 .legal-links {
     display: flex;
     gap: 2rem;
 }

 .legal-links a:hover {
     color: var(--white);
 }

 @media (min-width: 1200px) {
     .plane-img {
         width: 911px;
     }
 }

 @media (min-width: 1024px) {
     .hero {
         grid-template-columns: 1fr 1fr;
     }

     .hero-left {
         padding-left: 10%;
     }

     .chat-container {
         grid-template-columns: 2fr 3fr;
     }

     .hero-title {
         font-size: 3.75rem;
     }

     .benefits-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 .animate-bounce {
     animation: bounce 2s infinite;
 }

 @keyframes bounce {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }
 }