* { margin: 0; padding: 0; box-sizing: border-box; }
  
  :root {
    --primary: #f97316;
    --primary-light: #fb923c;
    --primary-dark: #ea580c;
    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --blue-dark: #1e40af;
    --dark: #030712;
    --gold: #fbbf24;
  }
  
  html { scroll-behavior: smooth; }
  
  body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  
  h1, h2, h3 { font-family: 'Poppins', sans-serif; }
  
  /* ==========================================
     STARRY BACKGROUND
     ========================================== */
  .stars-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  
  .star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: starTwinkle var(--duration, 3s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
  }
  
  @keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
  }
  
  .shooting-star {
    position: absolute;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, white, transparent);
    animation: shootingStar 8s linear infinite;
    opacity: 0;
  }
  
  @keyframes shootingStar {
    0% { transform: translateX(-100px) translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(100vw) translateY(100px); opacity: 0; }
  }
  
  .bg-layer {
    position: fixed;
    inset: 0;
    background: 
      radial-gradient(ellipse 80% 50% at 20% 20%, rgba(249, 115, 22, 0.15), transparent),
      radial-gradient(ellipse 80% 50% at 80% 80%, rgba(59, 130, 246, 0.2), transparent),
      radial-gradient(ellipse 60% 40% at 50% 50%, rgba(139, 92, 246, 0.1), transparent),
      linear-gradient(180deg, #030712 0%, #0c1425 50%, #1a1332 100%);
    z-index: -1;
  }
  
  /* Floating orbs */
  .orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
  }
  
  .orb-1 {
    top: 10%; left: 15%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.4), transparent);
  }
  
  .orb-2 {
    top: 60%; right: 10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
    animation-delay: -10s;
  }
  
  .orb-3 {
    bottom: 20%; left: 40%;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    animation-delay: -5s;
  }
  
  @keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 80px) scale(0.9); }
  }
  
  /* ==========================================
     BLESSING BAR
     ========================================== */
  .blessing-bar {
    background: linear-gradient(90deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
    padding: 12px 60px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 101;
    font-weight: 600;
    font-size: 13px;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 2px 30px rgba(249, 115, 22, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: blessingGlow 4s ease-in-out infinite;
  }
  
  @keyframes blessingGlow {
    0%, 100% { box-shadow: 0 2px 30px rgba(249, 115, 22, 0.6); }
    50% { box-shadow: 0 4px 50px rgba(249, 115, 22, 0.9); }
  }
  
  .blessing-bar .symbol {
    font-size: 18px;
    filter: drop-shadow(0 0 10px white);
  }
  
  /* ==========================================
     NAVIGATION
     ========================================== */
  nav {
    position: sticky;
    top: 43px;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(3, 7, 18, 0.7);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.5s;
  }
  
  .logo:hover { transform: translateZ(20px) rotateY(5deg); }
  
  .logo-icon {
    width: 70px;
    height: 48px;
    filter: drop-shadow(0 8px 20px rgba(249, 115, 22, 0.6));
    animation: logoFloat 4s ease-in-out infinite;
  }
  
  @keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotateZ(0deg); }
    50% { transform: translateY(-6px) rotateZ(2deg); }
  }
  
  .logo-flight {
    color: white;
    font-style: italic;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
  }
  
  .logo-deals {
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    filter: drop-shadow(0 4px 20px rgba(249, 115, 22, 0.5));
  }
  
  .nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
  }
  
  .nav-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
  }
  
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transition: width 0.3s;
  }
  
  .nav-menu a:hover {
    color: var(--primary);
  }
  
  .nav-menu a:hover::after { width: 100%; }
  
  .btn-signin {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
  }
  
  .btn-signin::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
  }
  
  .btn-signin:hover::before { transform: translateX(100%); }
  
  .btn-signin:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.7);
  }
  
  /* ==========================================
     HERO
     ========================================== */
  .hero {
    position: relative;
    padding: 100px 60px 120px;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
  }
  
  .moon {
    position: absolute;
    top: 40px;
    right: 100px;
    font-size: 80px;
    filter: drop-shadow(0 0 40px rgba(255,255,255,0.7));
    animation: moonGlow 4s ease-in-out infinite;
  }
  
  @keyframes moonGlow {
    0%, 100% { transform: scale(1) rotateZ(0); }
    50% { transform: scale(1.08) rotateZ(10deg); }
  }
  
  .palm-left, .palm-right {
    position: absolute;
    font-size: 140px;
    opacity: 0.5;
    bottom: -40px;
    animation: palmSway 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  }
  
  .palm-left { left: -40px; transform: rotate(-15deg); }
  .palm-right { right: -40px; transform: rotate(15deg) scaleX(-1); animation-delay: -3s; }
  
  @keyframes palmSway {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(-10deg); }
  }
  
  .plane-decorative {
    position: absolute;
    top: 150px;
    left: 10%;
    font-size: 60px;
    animation: planeFly 12s linear infinite;
    filter: drop-shadow(0 10px 20px rgba(249, 115, 22, 0.5));
    opacity: 0.7;
  }
  
  @keyframes planeFly {
    0% { transform: translate(0, 0) rotate(15deg); }
    50% { transform: translate(400px, -50px) rotate(15deg); }
    100% { transform: translate(0, 0) rotate(15deg); }
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    border: 1px solid rgba(249, 115, 22, 0.4);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: tagFloat 3s ease-in-out infinite;
  }
  
  @keyframes tagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }
  
  .hero-title {
    font-size: 84px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -3px;
  }
  
  .hero-title .line1 {
    display: block;
    color: white;
    text-shadow: 0 10px 40px rgba(255,255,255,0.1);
  }
  
  .hero-title .line2 {
    display: block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    filter: drop-shadow(0 10px 30px rgba(249, 115, 22, 0.4));
  }
  
  .hero-subtitle {
    font-size: 22px;
    color: white;
    margin-bottom: 48px;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
  }
  
  /* SEARCH BOX */
  .search-box {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 
      0 30px 80px rgba(0,0,0,0.6),
      0 0 0 1px rgba(255,255,255,0.05),
      inset 0 1px 0 rgba(255,255,255,0.1);
    max-width: 1100px;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s;
  }
  
  .search-box:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 
      0 40px 100px rgba(0,0,0,0.8),
      0 0 40px rgba(249, 115, 22, 0.2);
  }
  
  .tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
  }
  
  .tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
  }
  
  .tab.active {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.15));
    color: var(--primary);
    border: 1px solid rgba(249, 115, 22, 0.3);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
  }
  
  .tab:hover:not(.active) {
    background: rgba(255,255,255,0.05);
    color: white;
  }
  
  .search-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
  }
  
  .field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .field label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
  }
  
  .field input, .field select {
    background: white;
    border: none;
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 15px;
    color: #1f2937;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .field input:focus, .field select:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3);
  }
  
  .btn-search {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 
      0 10px 30px rgba(249, 115, 22, 0.5),
      inset 0 1px 0 rgba(255,255,255,0.3);
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .btn-search:hover {
    transform: translateY(-3px);
    box-shadow: 
      0 15px 40px rgba(249, 115, 22, 0.7),
      inset 0 1px 0 rgba(255,255,255,0.3);
  }
  
  /* ==========================================
     STATS BAR
     ========================================== */
  .stats-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
    margin-top: -40px;
  }
  
  .stat-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  
  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.2), transparent);
    transition: left 0.5s;
  }
  
  .stat-card:hover::before { left: 100%; }
  
  .stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.4);
  }
  
  .stat-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: inline-block;
    animation: iconBounce 3s ease-in-out infinite;
  }
  
  @keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  
  .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
  }
  
  .stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
  }
  
  /* ==========================================
     SECTIONS
     ========================================== */
  .section {
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .section-title {
    text-align: center;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -2px;
  }
  
  .section-title span {
    background: linear-gradient(135deg, var(--gold), var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
  }
  
  .section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    margin-bottom: 64px;
    font-style: italic;
  }
  
  /* DEALS CARDS */
  .deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 56px;
  }
  
  .deal-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
  }
  
  .deal-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
      0 30px 60px rgba(249, 115, 22, 0.3),
      0 0 40px rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.4);
  }
  
  .deal-image {
    width: 100%;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .deal-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8));
  }
  
  .deal-1 { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
  .deal-2 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
  .deal-3 { background: linear-gradient(135deg, #06b6d4, #0891b2); }
  .deal-4 { background: linear-gradient(135deg, #f59e0b, #d97706); }
  
  .deal-emoji {
    font-size: 110px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    position: relative;
    z-index: 1;
    animation: dealEmojiFloat 4s ease-in-out infinite;
  }
  
  @keyframes dealEmojiFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
  }
  
  .deal-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(249, 115, 22, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
  }
  
  .deal-content { padding: 24px; }
  
  .deal-name {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
  }
  
  .deal-country {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
  }
  
  .deal-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .deal-nights {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
  }
  
  .deal-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .deal-from-text {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .deal-price {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
  }
  
  .view-all {
    display: block;
    margin: 0 auto;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 16px 48px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .view-all:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.5);
  }
  
  /* FEATURES */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
  }
  
  .feature-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.5s;
  }
  
  .feature-card:hover::before { transform: scaleX(1); }
  
  .feature-card:hover {
    transform: translateY(-10px) rotateX(3deg);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
  }
  
  .feature-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--gold));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 28px;
    box-shadow: 
      0 15px 40px rgba(249, 115, 22, 0.5),
      inset 0 2px 0 rgba(255,255,255,0.3);
    transform: rotateZ(-5deg);
    transition: transform 0.5s;
  }
  
  .feature-card:hover .feature-icon-wrapper {
    transform: rotateZ(5deg) scale(1.1);
  }
  
  .feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
  }
  
  .feature-card p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
  }
  
  /* TESTIMONIALS */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  
  .testimonial-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
  }
  
  .testimonial-stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }
  
  .testimonial-text {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
  }
  
  .testimonial-name {
    font-weight: 700;
    color: white;
    font-size: 15px;
  }
  
  .testimonial-location {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
  }
  
  /* CTA SECTION */
  .cta-section {
    margin: 100px auto;
    max-width: 1200px;
    padding: 0 60px;
  }
  
  .cta-box {
    background: linear-gradient(135deg, 
      rgba(249, 115, 22, 0.15) 0%, 
      rgba(251, 191, 36, 0.1) 50%,
      rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
  }
  
  .cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.2), transparent 50%);
    animation: ctaPulse 6s ease-in-out infinite;
  }
  
  @keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
  }
  
  .cta-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
  }
  
  .cta-title .highlight {
    background: linear-gradient(135deg, var(--gold), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
  }
  
  .cta-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    font-style: italic;
  }
  
  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-primary-big {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 18px 48px;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .btn-primary-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.7);
  }
  
  .btn-secondary-big {
    background: transparent;
    color: white;
    padding: 18px 48px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .btn-secondary-big:hover {
    background: white;
    color: var(--dark);
    border-color: white;
  }
  
  /* ==========================================
     AIRLINE LOGOS STRIP
     ========================================== */
  .airlines-section {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  
  .airlines-caption {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 32px;
  }
  
  .airlines-container {
    overflow: hidden;
    position: relative;
  }
  
  .airlines-container::before,
  .airlines-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  
  .airlines-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 1), transparent);
  }
  
  .airlines-container::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(15, 23, 42, 1), transparent);
  }
  
  .airlines-track {
    display: flex;
    gap: 24px;
    animation: scroll 40s linear infinite;
    align-items: center;
    width: fit-content;
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  .airline-pill {
    flex: 0 0 auto;
    height: 56px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: white;
    transition: transform 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    letter-spacing: 1px;
  }
  
  .airline-pill:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  }
  
  /* Airline brand colors */
  .airline-ita { background: linear-gradient(135deg, #0066B3, #004a85); }
  .airline-af { background: linear-gradient(135deg, #002157, #001a47); }
  .airline-kl { background: linear-gradient(135deg, #00A1DE, #0088bd); }
  .airline-lh { background: linear-gradient(135deg, #05164D, #0a2571); color: #FFAD00; }
  .airline-tk { background: linear-gradient(135deg, #E21E26, #c01920); }
  .airline-ek { background: linear-gradient(135deg, #C8102E, #a50d26); }
  .airline-qr { background: linear-gradient(135deg, #5C0632, #7a0842); }
  .airline-et { background: linear-gradient(135deg, #168B3F, #0f6e31); }
  .airline-tp { background: linear-gradient(135deg, #CC092F, #a80727); }
  .airline-ba { background: linear-gradient(135deg, #075AAA, #054a8a); }
  .airline-sv { background: linear-gradient(135deg, #006C35, #005128); }
  .airline-ms { background: linear-gradient(135deg, #003893, #002a6e); }
  
  /* ==========================================
     FOOTER
     ========================================== */
  footer {
    background: linear-gradient(180deg, 
      rgba(3, 7, 18, 0.9), 
      rgba(249, 115, 22, 0.05) 50%,
      rgba(3, 7, 18, 0.95));
    padding: 80px 60px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .footer-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -1px;
  }
  
  .footer-tagline .accent {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* POWERED BY ONE SECTION - CLEAN */
  .one-section {
    padding: 48px;
    margin: 40px auto;
    max-width: 600px;
    background: linear-gradient(135deg, 
      rgba(249, 115, 22, 0.1), 
      rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
  }
  
  .one-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, 
      rgba(249, 115, 22, 0.15), 
      transparent);
    animation: oneGlow 3s ease-in-out infinite;
  }
  
  @keyframes oneGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  
  .one-content {
    position: relative;
    z-index: 2;
  }
  
  .one-symbol {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin-bottom: 16px;
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    animation: symbolFloat 4s ease-in-out infinite;
    line-height: 1;
  }
  
  @keyframes symbolFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  .powered-label {
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 700;
  }
  
  .one-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 64px;
    background: linear-gradient(135deg, var(--gold), var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 24px;
  }
  
  .one-philosophy {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 2px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .one-philosophy span {
    color: var(--primary-light);
    font-weight: 700;
  }

  /* Premium 3D "Powered by ONE" — sun-ray aura + depth */
  .one-section-3d {
    transform-style: preserve-3d;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.06) inset,
      0 24px 60px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(249, 115, 22, 0.25);
  }

  .one-sun-rays {
    position: absolute;
    inset: -40% -20% -50%;
    pointer-events: none;
    z-index: 0;
    background:
      conic-gradient(from 210deg at 50% 55%,
        transparent 0deg,
        rgba(251, 191, 36, 0.35) 38deg,
        transparent 72deg,
        rgba(249, 115, 22, 0.25) 120deg,
        transparent 160deg,
        rgba(96, 165, 250, 0.2) 220deg,
        transparent 280deg,
        rgba(251, 191, 36, 0.3) 320deg,
        transparent 360deg);
    opacity: 0.55;
    filter: blur(2px);
    animation: fdSunRayPulse 5s ease-in-out infinite;
    mix-blend-mode: screen;
  }

  @keyframes fdSunRayPulse {
    0%, 100% { opacity: 0.45; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.75; transform: scale(1.04) rotate(2deg); }
  }

  .one-name-wrap {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 8px 12px 16px;
    margin: 0 auto 8px;
  }

  .one-name-wrap::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 140%;
    height: 42px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center,
      rgba(251, 191, 36, 0.55) 0%,
      rgba(249, 115, 22, 0.35) 35%,
      transparent 70%);
    filter: blur(10px);
    z-index: -1;
    pointer-events: none;
    animation: fdNameGlow 4s ease-in-out infinite;
  }

  @keyframes fdNameGlow {
    0%, 100% { opacity: 0.65; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
  }
  
  /* FOOTER BOTTOM */
  .footer-bottom {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  
  .footer-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -1px;
    margin-bottom: 20px;
    display: inline-block;
  }
  
  .footer-brand .flight { color: white; font-style: italic; }
  .footer-brand .deals {
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
  }
  
  .footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 32px auto;
    max-width: 900px;
  }
  
  .footer-info-item {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-info-card-3d {
    position: relative;
    text-align: left;
    padding: 22px 22px 20px;
    border-radius: 20px;
    background: linear-gradient(155deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(15, 23, 42, 0.55) 45%,
      rgba(3, 7, 18, 0.75) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.08) inset,
      0 18px 40px rgba(0, 0, 0, 0.35),
      0 0 0 1px rgba(249, 115, 22, 0.12);
    transform: translateY(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(14px);
  }

  .footer-info-card-3d:hover {
    transform: translateY(-4px);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.1) inset,
      0 26px 55px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(249, 115, 22, 0.22);
  }

  .footer-info-card-title {
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .footer-info-domain {
    opacity: 0.72;
  }
  
  .footer-info-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
  }
  
  .footer-info a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
  }
  
  .footer-info a:hover { color: var(--primary); }
  
  .footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 32px;
  }

  .footer-cross-site {
    margin: 28px auto 4px;
    text-align: center;
  }

  .footer-cross-site-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 24px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #0f172a;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(226, 232, 240, 0.98) 100%);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.65) inset,
      0 14px 36px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .footer-cross-site-link:hover {
    transform: translateY(-2px);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.75) inset,
      0 20px 48px rgba(0, 0, 0, 0.42);
  }
  
  .footer-links {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }
  
  .footer-links a:hover { color: var(--primary); }
  
  /* ==========================================
     RESPONSIVE
     ========================================== */
  @media (max-width: 968px) {
    .blessing-bar { padding: 10px 20px; font-size: 11px; letter-spacing: 2px; flex-wrap: wrap; }
    nav { padding: 16px 24px; top: 66px; }
    .nav-menu { display: none; }
    .hero { padding: 60px 24px 80px; }
    .hero-title { font-size: 48px; letter-spacing: -1px; }
    .hero-subtitle { font-size: 16px; }
    .search-fields { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
    .section { padding: 60px 24px; }
    .section-title { font-size: 36px; }
    .deals-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .moon, .palm-left, .palm-right, .plane-decorative { display: none; }
    .cta-title { font-size: 36px; }
    .footer-info { grid-template-columns: 1fr; }
    .one-name { font-size: 48px; }
    .airlines-section { padding: 40px 0; }
    .airline-pill { padding: 0 20px; font-size: 15px; height: 48px; }
  }
  
  @media (max-width: 480px) {
    .deals-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr; }
    .hero-title { font-size: 38px; }
    .one-name { font-size: 40px; }
  }

  /* Floating WhatsApp — flightdeals-public has no Tailwind; utility classes on the partial are ignored */
  a.tkt-whatsapp-float {
    position: fixed !important;
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    left: auto !important;
    top: auto !important;
    z-index: 9999 !important;
    width: 3.5rem !important;
    height: 3.5rem !important;
    min-width: 3.5rem !important;
    min-height: 3.5rem !important;
    max-width: 3.5rem !important;
    max-height: 3.5rem !important;
    box-sizing: border-box;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  }

  a.tkt-whatsapp-float svg {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    flex-shrink: 0;
    display: block;
  }

  @media (prefers-reduced-motion: reduce) {
    .one-sun-rays,
    .one-name-wrap::after,
    .footer-info-card-3d {
      animation: none !important;
      transition: none !important;
    }
    .one-sun-rays { opacity: 0.5; transform: none; }
    .one-name-wrap::after { opacity: 0.75; transform: translateX(-50%); }
  }
