





/* ===========================
   FONT OVERRIDES
=========================== */
:root {
  --font-display: 'Barlow', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-alt: 'Work Sans', sans-serif;
}

body {
  font-family: var(--font-body);
}

/* ===========================
   DESTINATIONS
=========================== */
.destinations { padding: 70px 0 80px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 48px; height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dest-card:active { transform: scale(0.98); }

.dest-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.dest-dubai    { background: linear-gradient(160deg, #e8a87c 0%, #d4a050 30%, #c8873a 60%, #9b6b2f 100%); }
.dest-dubai::after    { content: '🏙️ Dubai'; }
.dest-bangkok  { background: linear-gradient(160deg, #f9a825 0%, #e65100 40%, #c62828 100%); }
.dest-bangkok::after  { content: '🛕 Bangkok'; }
.dest-singapore{ background: linear-gradient(160deg, #1565c0 0%, #0288d1 50%, #00acc1 100%); }
.dest-singapore::after{ content: '🦁 Singapore'; }
.dest-london   { background: linear-gradient(160deg, #546e7a 0%, #37474f 50%, #263238 100%); }
.dest-london::after   { content: '🎡 London'; }
.dest-paris    { background: linear-gradient(160deg, #e91e63 0%, #9c27b0 50%, #3f51b5 100%); }
.dest-paris::after    { content: '🗼 Paris'; }
.dest-newyork  { background: linear-gradient(160deg, #1a237e 0%, #283593 40%, #1565c0 100%); }
.dest-newyork::after  { content: '🗽 New York'; }

/* City label overlay shared styles */
.dest-dubai::after, .dest-bangkok::after, .dest-singapore::after,
.dest-london::after, .dest-paris::after, .dest-newyork::after {
  position: absolute;
  bottom: 12px; left: 14px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.dest-info { padding: 16px 18px; }

.dest-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.dest-info p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }

.dest-price {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0,87,255,0.08);
  padding: 3px 10px;
  border-radius: 30px;
}

/* ===========================
   FLIGHT PRICES SECTION
=========================== */
.flight-prices {
  padding: 64px 0 72px;
  background: #f4f7ff;
}

.fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fp-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.fp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fp-img {
  position: relative;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fp-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
}

.fp-city-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  color: #fff;
  z-index: 2;
}

.fp-city-label h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.fp-city-label p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  margin-top: 2px;
}

.fp-table {
  padding: 6px 0 10px;
}

.fp-table-head {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}

.fp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 16px;
  font-size: 0.88rem;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f4ff;
  transition: background var(--transition);
}

.fp-row:last-child { border-bottom: none; }

.fp-row:hover { background: #f4f7ff; }

.fp-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}



/* ===========================
   USPs SECTION
=========================== */
.usps-section {
  padding: 60px 0;
  background: #f8f9ff;
  border-top: 1px solid var(--border);
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.usp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.usp-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 87, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--primary);
}

.usp-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.usp-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .usps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .usps-grid { grid-template-columns: 1fr; gap: 12px; }
  .usps-section { padding: 40px 0; }
}

/* ===========================
   HOTELS SECTION
=========================== */
.hotels-section {
  padding: 60px 0 72px;
  background: #fff;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: -20px;
  margin-bottom: 28px;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hotel-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  background: #fff;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.hotel-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.hotel-card:hover .hotel-img img {
  transform: scale(1.06);
}

.hotel-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 14px 16px;
}

.hotel-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hotel-country {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hotel-price {
  text-align: right;
  white-space: nowrap;
}

.hotel-from {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.hotel-amount {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hotel-night {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hotels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .hotels-grid { grid-template-columns: 1fr; }
  .hotels-section { padding: 40px 0 50px; }
}

/* ===========================
   FAQs SECTION
=========================== */
.faqs-section {
  padding: 64px 0 80px;
  background: #fff;
  border-top: 1px solid var(--border);
}

.faqs-header {
  text-align: center;
  margin-bottom: 40px;
}

.faqs-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.faqs-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: 0 3px 12px rgba(0,0,0,0.09);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 87, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 18px 16px 60px;
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .faqs-section { padding: 40px 0 56px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .faq-item.open .faq-answer { padding-left: 18px; }
}

  .fp-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
  .flight-prices { padding: 48px 0 56px; }
  .fp-grid { grid-template-columns: 1fr; gap: 16px; }
  .fp-img { height: 180px; }
  .fp-city-label h3 { font-size: 1.4rem; }
  .fp-card:hover { transform: none; }
}

@media (max-width: 480px) {
  .flight-prices { padding: 36px 0 48px; }
  .fp-img { height: 160px; }
  .fp-row { padding: 8px 14px; font-size: 0.84rem; }
  .fp-table-head { padding: 8px 14px; }
  .fp-city-label { left: 14px; bottom: 12px; }
}





.hotels-section a {
  text-decoration: none;
}


/* ===========================
   CONTENT FORMATTING
=========================== */
.Content11 .container {
  
  margin: 50px auto;
  padding: 0 20px;
}

.Content11 h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.Content11 h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.Content11 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.Content11 ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.Content11 ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Optional: FAQ Q&A formatting inside content */
.Content11 h3 + p {
  margin-top: 0;
}

@media (max-width: 768px) {
  .Content11 .container {
    padding: 0 16px;
  }
  .Content11 h2 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }
  .Content11 h3 {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
  .Content11 p, .Content11 ul li {
    font-size: 0.95rem;
  }
}
