@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600&family=Inter:wght@400;500&family=Outfit:wght@500;600&family=Tajawal:wght@500;700&display=swap');

:root {
    /* Colors */
    --color-navy: #0A192F;
    --color-navy-transparent: rgba(10, 25, 47, 0.85); /* For Glassmorphism */
    --color-gold: #D4AF37;
    --color-gold-hover: #E5C158;
    --color-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 100%);
    --color-blue-soft: #F0F4F8;
    --color-white: #FFFFFF;
    --color-white-transparent: rgba(255, 255, 255, 0.9);
    --color-offwhite: #FAFAFA;
    --color-text-dark: #0A192F;
    --color-text-body: #4A5568;
    --color-border: rgba(226, 232, 240, 0.8);
    
    /* Shadows - Layered for depth */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px -10px rgba(10, 25, 47, 0.1);
    --shadow-lg: 0 20px 40px -15px rgba(10, 25, 47, 0.2);
    --shadow-gold: 0 8px 25px -5px rgba(212, 175, 55, 0.4);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;
    --spacing-xl: 7.5rem;

    /* Fonts (Defaults for Arabic) */
    --font-heading: 'Tajawal', sans-serif;
    --font-body: 'Cairo', sans-serif;
}

[dir="ltr"] {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-body);
    background-color: var(--color-offwhite);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Softer images */
}

/* Typography Classes */
.h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.2; }
.h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
.h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
.text-lead { font-size: clamp(1.125rem, 2vw, 1.35rem); opacity: 0.9; }

/* Gradient Text Effect */
.text-gold-gradient {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Layout & Utility */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.section-blue {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-blue-soft) 100%);
}

.section-navy {
    background: linear-gradient(135deg, #061122 0%, var(--color-navy) 100%);
    color: var(--color-white);
}

.section-navy h1, .section-navy h2, .section-navy h3 {
    color: var(--color-white);
}

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

.d-flex {
    display: flex;
}

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

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

.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    text-transform: capitalize;
}

.btn-primary {
    background: var(--color-gold-gradient);
    color: var(--color-navy);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    animation: pulseGold 2s infinite;
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255,255,255,0.6);
    color: var(--color-white);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline-navy {
    background-color: transparent;
    border-color: var(--color-navy);
    color: var(--color-navy);
}

.btn-outline-navy:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Header */
header {
    background-color: #001129; /* Matches logo background */
    color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

header .logo {
    display: flex;
    align-items: center;
    height: 90%;
}

header .logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

header .logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

/* Link Hover Underline Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--color-white); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}
.lang-switch {
    color: var(--color-white);
    font-weight: 600;
    margin-inline-end: var(--spacing-sm);
    opacity: 0.8;
}
.lang-switch:hover { opacity: 1; color: var(--color-gold); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Premium Hero Section */
.hero {
    background-color: var(--color-navy);
    background-image: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.75) 100%), url('../images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    color: var(--color-white);
    padding: 12rem 0 8rem 0; /* Huge padding for breathing room */
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--color-offwhite), transparent);
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero h1 {
    color: var(--color-white);
    text-shadow: 0 4px 25px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.8);
}

.hero p {
    color: var(--color-white);
    opacity: 1 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
    font-weight: 500;
}

.hero-actions {
    margin-top: var(--spacing-md);
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Glass & Elevated Cards */
.card {
    background: var(--color-white-transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3); /* Subtle gold glow on hover */
}

.card-img {
    height: 280px;
    background-color: var(--color-blue-soft);
    object-fit: cover;
    width: 100%;
    transition: transform 0.7s ease;
}

.card:hover .card-img {
    transform: scale(1.05); /* Image zoom inside card */
}

.card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    background: var(--color-white); /* Ensures text readability */
}

/* Pillars with Floating Animations */
.pillar {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    transition: background 0.3s ease;
}
.pillar:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
    text-shadow: 0 10px 15px rgba(212, 175, 55, 0.2);
}

/* Accordion (FAQ) */
details {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
details:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(10,25,47,0.2);
}
summary {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}
summary::-webkit-details-marker {
    display: none;
}
summary::after {
    content: '+';
    color: var(--color-gold);
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}
details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}
details p {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-body);
    animation: fadeInUp 0.4s ease forwards;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-navy);
}
.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--color-border);
    background: var(--color-offwhite);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-control:focus {
    outline: none;
    background: var(--color-white);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
.hidden {
    display: none !important;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
    justify-content: center;
}
.tab-btn {
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-navy);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.tab-btn.active {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
}

footer {
    background-color: #050d1a; /* Even darker navy for extreme contrast */
    color: rgba(255,255,255,0.7);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 4px solid var(--color-gold);
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}
footer h3 {
    color: var(--color-white);
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 40px;
    height: 2px;
    background: var(--color-gold);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: inherit;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}
[dir="rtl"] .footer-links a:hover {
    transform: translateX(-4px);
}
.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    margin-top: 1rem;
}
.social-icons a {
    display: inline-flex;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}
.social-icons a:hover {
    color: var(--color-gold);
    transform: translateY(-3px);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    inset-inline-end: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-wa, .floating-call {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); /* Real WA Colors */
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}
.floating-wa:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.floating-call {
    background: linear-gradient(135deg, var(--color-navy) 0%, #1a365d 100%);
    box-shadow: 0 10px 25px rgba(10, 25, 47, 0.4);
    color: var(--color-white);
}
.floating-call:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(10, 25, 47, 0.6);
    color: var(--color-gold);
}

.floating-wa svg, .floating-call svg {
    fill: currentColor;
}

/* Responsive */
@media (max-width: 992px) {
    .hero { background-attachment: scroll; }
    .h1 { font-size: clamp(2rem, 5vw, 3rem); }
    .hero { padding: 8rem 0 4rem 0; min-height: 60vh; }
}

@media (max-width: 768px) {
    header .logo {
        height: 70%;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .nav-links, .nav-actions .btn:not(#langToggle) {
        display: none;
    }
        .nav-container {
        position: relative;
    }
    .mobile-menu-btn {
        display: block;
        position: absolute;
        inset-inline-end: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    #langToggle {
        display: block !important;
        position: absolute;
        inset-inline-end: 60px;
        top: 50%;
        transform: translateY(-50%);
        padding: 0.25rem 0.5rem !important;
        font-size: 0.85rem;
    }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 25, 47, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: var(--spacing-md);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .section { padding: var(--spacing-lg) 0; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .floating-actions { bottom: 20px; inset-inline-end: 20px; gap: 10px; }
    .floating-wa, .floating-call { width: 55px; height: 55px; }
}




/* Ticker Animation for Partners */
.ecosystem-ticker-wrap { width: 100%; overflow: hidden; position: relative; padding: 1rem 0; }
.ecosystem-ticker-wrap::before, .ecosystem-ticker-wrap::after { content: ''; position: absolute; top: 0; width: 80px; height: 100%; z-index: 2; pointer-events: none; }
.ecosystem-ticker-wrap::before { inset-inline-start: 0; background: linear-gradient(to right, var(--color-offwhite), transparent); }
.ecosystem-ticker-wrap::after { inset-inline-end: 0; background: linear-gradient(to left, var(--color-offwhite), transparent); }
.ecosystem-ticker { display: flex; align-items: center; gap: 4rem; width: max-content; animation: ticker 25s linear infinite; }
[dir="rtl"] .ecosystem-ticker { animation: tickerRtl 25s linear infinite; }
.ecosystem-ticker:hover { animation-play-state: paused; }
.partner-logo-item { display: flex; align-items: center; justify-content: center; height: 50px; }
.partner-logo-svg { height: 100%; width: auto; filter: grayscale(100%); opacity: 0.6; transition: all 0.3s ease; }
.partner-logo-svg:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 2rem)); } }
@keyframes tickerRtl { 0% { transform: translateX(0); } 100% { transform: translateX(calc(50% + 2rem)); } }


/* Work Steps Animation */
.work-step {
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.work-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.work-step:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(215, 172, 92, 0.2);
}
.work-step:hover::before {
  transform: scaleX(1);
}
.work-step-num {
  font-size: 4rem; 
  font-weight: 700; 
  color: var(--primary); 
  opacity: 0.2; 
  margin-bottom: 1rem; 
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}
.work-step:hover .work-step-num {
  opacity: 0.8;
  transform: scale(1.1);
}

/* Float animation for devices without hover (mobile) */
@media (hover: none) {
  @keyframes floatStep {
    0% { transform: translateY(0); box-shadow: none; border-color: rgba(255, 255, 255, 0.05); }
    50% { transform: translateY(-8px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); border-color: rgba(215, 172, 92, 0.15); }
    100% { transform: translateY(0); box-shadow: none; border-color: rgba(255, 255, 255, 0.05); }
  }
  .work-step {
    animation: floatStep 4s ease-in-out infinite;
  }
  .work-step:nth-child(2) {
    animation-delay: 1.3s;
  }
  .work-step:nth-child(3) {
    animation-delay: 2.6s;
  }
  .work-step::before {
    transform: scaleX(1);
    opacity: 0.5;
  }
  .work-step-num {
    opacity: 0.5;
  }
}

/* Testimonials Layout */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  text-align: right;
}
[dir="ltr"] .testimonials-grid {
  text-align: left;
}
.testimonial-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card::before {
  content: '""';
  font-size: 4rem;
  position: absolute;
  top: -10px;
  right: 1.5rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: serif;
}
[dir="ltr"] .testimonial-card::before {
  right: auto;
  left: 1.5rem;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  border-color: rgba(215, 172, 92, 0.3);
}
.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 500; /* Removed italic and 300 weight to match main font */
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
}
.testimonial-name {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.testimonial-role {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Trip Cards */
.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.trip-card {
  background: var(--bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-color: rgba(215, 172, 92, 0.3);
}
.trip-image {
  height: 220px;
  background-color: #1e293b;
  background-size: cover;
  background-position: center;
  position: relative;
}
.trip-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
}
[dir="ltr"] .trip-duration {
  right: auto;
  left: 1rem;
}
.trip-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.trip-title {
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.trip-route {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trip-highlights {
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
}
.trip-highlights li {
  position: relative;
  padding-right: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
[dir="ltr"] .trip-highlights li {
  padding-right: 0;
  padding-left: 1.5rem;
}
.trip-highlights li::before {
  content: '?';
  position: absolute;
  right: 0;
  color: var(--primary);
  font-weight: bold;
}
[dir="ltr"] .trip-highlights li::before {
  right: auto;
  left: 0;
}
.trip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.trip-badge {
  background: rgba(215, 172, 92, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.trip-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}
.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-whatsapp:hover {
  background-color: #128C7E;
  color: white;
  transform: scale(1.02);
}
