/*
 * Andaman Landing Page styles.
 * Every rule is scoped under .andaman-landing so it never leaks into the
 * theme's (Bootstrap-based) header/footer, which render via get_header()/get_footer().
 * The standalone header/nav/footer styles from the original static page were
 * removed on purpose — the website's own header & footer are used instead.
 */

.andaman-landing {
  --blue: #003264;
  --black: #202124;
  --white: #f8f9fa;
  --red: #8B0000;
  font-family: 'Comic Neue', cursive;
  background-color: #f4f4f4;
}

.andaman-landing,
.andaman-landing *,
.andaman-landing *::before,
.andaman-landing *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ===== BTN ===== */
.andaman-landing .btn {
  background: var(--red); color: #fff;
  padding: 10px 22px; border-radius: 30px;
  text-decoration: none; font-weight: bold;
  font-size: 1rem; border: none; cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.andaman-landing .btn:hover { background: var(--blue); transform: translateY(-3px); }

/* ===== HERO ===== */
.andaman-landing .pkg-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: url('../images/honeymoon_hero.jpg') center/cover no-repeat;
}
.andaman-landing .pkg-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,50,100,0.6) 100%);
}
.andaman-landing .pkg-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 40px 20px;
}
.andaman-landing .pkg-hero-content h1 {
  font-size: 3rem; font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  margin-bottom: 12px;
}
.andaman-landing .pkg-hero-content h1 span { color: #ffcc00; }
.andaman-landing .pkg-hero-content p {
  font-size: 1.3rem; margin-bottom: 8px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.andaman-landing .pkg-hero-content .price-tag {
  display: inline-block;
  background: var(--red); color: #fff;
  padding: 8px 24px; border-radius: 30px;
  font-size: 1.2rem; font-weight: bold;
  margin-top: 10px; margin-bottom: 20px;
}
.andaman-landing .pkg-hero-content .price-tag span {
  text-decoration: line-through; opacity: 0.75; margin-right: 6px;
}

/* ===== STATS BAR ===== */
.andaman-landing .stats-bar {
  background: linear-gradient(135deg, var(--blue), #8B0000);
  padding: 40px 20px;
}
.andaman-landing .stats-grid {
  max-width: 900px; margin: auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.andaman-landing .stat-item { color: #fff; }
.andaman-landing .stat-number {
  font-size: 2.5rem; font-weight: bold;
  color: #ffcc00; line-height: 1;
}
.andaman-landing .stat-label { font-size: 0.9rem; margin-top: 6px; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }

/* ===== SECTION TITLES ===== */
.andaman-landing .section-title {
  text-align: center; font-size: 2rem;
  color: var(--red); margin-bottom: 50px;
}
.andaman-landing .section-title span { color: var(--blue); }
.andaman-landing .section-title-pill {
  display: inline-block;
  background: #fff; border-radius: 30px;
  padding: 10px 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* ===== PACKAGES SECTION ===== */
.andaman-landing .packages-section {
  background: linear-gradient(to right, #8b0000, #003264);
  padding: 80px 20px;
  text-align: center;
}
.andaman-landing .packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px; max-width: 1200px; margin: auto;
}

.andaman-landing .pkg-card {
  background: #fff; border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
  text-align: left;
}
.andaman-landing .pkg-card:hover { transform: translateY(-6px); }

.andaman-landing .pkg-card-header {
  background: linear-gradient(135deg, var(--blue), #005499);
  padding: 18px 20px 14px;
  color: #fff;
}
.andaman-landing .pkg-card-header-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 6px;
}
.andaman-landing .pkg-card-header h3 { font-size: 1.15rem; flex: 1; }
.andaman-landing .emi-badge {
  background: #ffcc00; color: #333;
  font-size: 0.7rem; font-weight: bold;
  padding: 3px 10px; border-radius: 20px;
  white-space: nowrap;
}
.andaman-landing .pkg-duration {
  margin-top: 8px; font-size: 0.95rem;
  background: rgba(255,255,255,0.18);
  display: inline-block; padding: 3px 12px;
  border-radius: 20px;
}
.andaman-landing .pkg-features {
  display: flex; gap: 16px; padding: 12px 20px;
  background: #f0f4ff; flex-wrap: wrap;
}
.andaman-landing .pkg-feature {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--blue); font-weight: bold;
}
.andaman-landing .pkg-feature i { color: var(--red); }

/* Card Image */
.andaman-landing .pkg-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.andaman-landing .pkg-card:hover .pkg-card-img { transform: scale(1.04); }
.andaman-landing .pkg-card-img-wrap { overflow: hidden; }

/* Dual Action Buttons */
.andaman-landing .pkg-actions {
  display: flex; gap: 10px; margin-top: 12px;
}
.andaman-landing .btn-details {
  flex: 1; text-align: center;
  padding: 10px 14px; border-radius: 30px;
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
  font-weight: bold; font-size: 0.88rem;
  text-decoration: none; transition: all 0.3s ease;
  display: inline-block;
}
.andaman-landing .btn-details:hover { background: var(--blue); color: #fff; }
.andaman-landing .btn-enquire-sm {
  flex: 1; text-align: center;
  padding: 10px 14px; border-radius: 30px;
  background: var(--red); color: #fff;
  border: none; font-weight: bold; font-size: 0.88rem;
  text-decoration: none; transition: all 0.3s ease;
  display: inline-block; cursor: pointer;
  font-family: 'Comic Neue', cursive;
}
.andaman-landing .btn-enquire-sm:hover { background: var(--blue); }

/* Star Tabs */
.andaman-landing .star-tabs {
  display: flex; border-bottom: 2px solid #eee;
  background: #fafafa;
}
.andaman-landing .star-tab {
  flex: 1; padding: 10px 5px;
  text-align: center; cursor: pointer;
  font-weight: bold; font-size: 0.9rem;
  color: #666; border: none; background: none;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
}
.andaman-landing .star-tab.active {
  color: var(--blue);
  border-bottom: 3px solid var(--red);
  background: #fff;
}
.andaman-landing .star-tab:hover { background: #f0f4ff; }

.andaman-landing .star-panels { padding: 18px 20px 20px; }
.andaman-landing .star-panel { display: none; }
.andaman-landing .star-panel.active { display: block; }

.andaman-landing .price-display { margin-bottom: 14px; }
.andaman-landing .original-price {
  font-size: 1.1rem; color: #999;
  text-decoration: line-through; margin-right: 8px;
}
.andaman-landing .discounted-price {
  font-size: 1.8rem; font-weight: bold;
  color: var(--red);
}
.andaman-landing .per-person {
  display: block; font-size: 0.8rem;
  color: #666; margin-top: 2px;
}
.andaman-landing .tc-note {
  font-size: 0.75rem; color: #999;
  margin-bottom: 12px; display: block;
}

/* ===== CONTACT FORM ===== */
.andaman-landing .contact-section {
  padding: 80px 20px;
  background: linear-gradient(270deg, #890303, #230c88);
  background-size: 600% 600%;
  animation: andamanBgShift 15s ease infinite;
}
@keyframes andamanBgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.andaman-landing .contact-wrap {
  max-width: 700px; margin: auto;
  background: rgba(255,255,255,0.97);
  border-radius: 20px; padding: 40px 36px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.andaman-landing .contact-wrap h2 {
  text-align: center; font-size: 1.8rem;
  color: var(--blue); margin-bottom: 8px;
}
.andaman-landing .contact-wrap .sub {
  text-align: center; color: #666;
  margin-bottom: 28px; font-size: 1rem;
}
.andaman-landing .form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.andaman-landing .form-group { display: flex; flex-direction: column; }
.andaman-landing .form-group.full { grid-column: 1 / -1; }
.andaman-landing .form-group label {
  font-size: 0.85rem; font-weight: bold;
  color: var(--blue); margin-bottom: 5px;
}
.andaman-landing .form-group input,
.andaman-landing .form-group select,
.andaman-landing .form-group textarea {
  padding: 10px 14px; border: 2px solid #ddd;
  border-radius: 10px; font-family: 'Comic Neue', cursive;
  font-size: 0.95rem; transition: border-color 0.3s ease;
  outline: none;
}
.andaman-landing .form-group input:focus,
.andaman-landing .form-group select:focus,
.andaman-landing .form-group textarea:focus {
  border-color: var(--blue);
}
.andaman-landing .form-group textarea { resize: vertical; min-height: 80px; }
.andaman-landing .submit-btn {
  width: 100%; padding: 14px;
  background: var(--red); color: #fff;
  border: none; border-radius: 30px;
  font-size: 1.1rem; font-weight: bold;
  font-family: 'Comic Neue', cursive;
  cursor: pointer; transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 8px;
}
.andaman-landing .submit-btn:hover { background: var(--blue); transform: translateY(-2px); }

/* ===== WHY BOOK WITH US ===== */
.andaman-landing .why-section {
  padding: 80px 20px;
  background: #fff;
}
.andaman-landing .why-grid {
  max-width: 900px; margin: 40px auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.andaman-landing .why-card {
  background: linear-gradient(135deg, #f0f4ff, #fff);
  border: 2px solid #e0e8ff; border-radius: 16px;
  padding: 24px 20px; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.andaman-landing .why-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,50,100,0.15); }
.andaman-landing .why-card i {
  font-size: 2rem; color: var(--red); margin-bottom: 12px;
}
.andaman-landing .why-card h4 { color: var(--blue); font-size: 1rem; margin-bottom: 6px; }
.andaman-landing .why-card p { color: #555; font-size: 0.88rem; line-height: 1.5; }

/* ===== HOW TO REACH / BEST MONTHS ===== */
.andaman-landing .reach-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #003264, #8b0000);
}
.andaman-landing .reach-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.andaman-landing .reach-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px; padding: 28px 24px;
  color: #fff; backdrop-filter: blur(4px);
}
.andaman-landing .reach-card i {
  font-size: 2.2rem; color: #ffcc00; margin-bottom: 14px;
}
.andaman-landing .reach-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.andaman-landing .reach-card p { font-size: 0.9rem; line-height: 1.6; opacity: 0.9; }

/* ===== ITINERARY ===== */
.andaman-landing .itinerary-section {
  padding: 80px 20px;
  background: #f4f4f4;
}
.andaman-landing .itinerary-tabs {
  display: flex; justify-content: center;
  gap: 14px; margin-bottom: 36px; flex-wrap: wrap;
}
.andaman-landing .itin-tab {
  padding: 10px 28px; border-radius: 30px;
  border: 2px solid var(--blue); background: #fff;
  color: var(--blue); font-weight: bold; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s ease;
}
.andaman-landing .itin-tab.active,
.andaman-landing .itin-tab:hover {
  background: var(--blue); color: #fff;
}
.andaman-landing .itin-panel { display: none; max-width: 800px; margin: auto; }
.andaman-landing .itin-panel.active { display: block; }

.andaman-landing .itin-day {
  display: flex; gap: 20px; margin-bottom: 20px;
  align-items: flex-start;
}
.andaman-landing .day-num {
  background: var(--red); color: #fff;
  min-width: 52px; height: 52px;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-weight: bold; font-size: 0.85rem;
  flex-shrink: 0; text-align: center;
}
.andaman-landing .day-content {
  background: #fff; border-radius: 12px;
  padding: 14px 18px; flex: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.andaman-landing .day-content h4 { color: var(--blue); margin-bottom: 4px; }
.andaman-landing .day-content p { color: #555; font-size: 0.9rem; line-height: 1.5; }

/* ===== TYPES OF PACKAGES ===== */
.andaman-landing .types-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8b0000, #003264);
  text-align: center;
}
.andaman-landing .types-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.andaman-landing .type-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px; padding: 22px 20px;
  color: #fff; text-align: left;
  transition: background 0.3s ease;
}
.andaman-landing .type-card:hover { background: rgba(255,255,255,0.2); }
.andaman-landing .type-card i { color: #ffcc00; font-size: 1.6rem; margin-bottom: 10px; }
.andaman-landing .type-card h4 { font-size: 1rem; margin-bottom: 6px; }
.andaman-landing .type-card p { font-size: 0.85rem; opacity: 0.85; line-height: 1.5; }

/* ===== POPULAR PLACES ===== */
.andaman-landing .places-section {
  padding: 80px 20px;
  background: #fff;
}
.andaman-landing .places-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.andaman-landing .place-chip {
  background: linear-gradient(135deg, #f0f4ff, #e8eeff);
  border: 2px solid #c8d8ff;
  border-radius: 12px; padding: 14px 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.andaman-landing .place-chip:hover {
  background: linear-gradient(135deg, var(--blue), #005499);
  color: #fff; border-color: var(--blue);
  transform: translateY(-3px);
}
.andaman-landing .place-chip i { color: var(--red); font-size: 1.2rem; display: block; margin-bottom: 6px; }
.andaman-landing .place-chip:hover i { color: #ffcc00; }
.andaman-landing .place-chip span { font-size: 0.85rem; font-weight: bold; color: var(--blue); }
.andaman-landing .place-chip:hover span { color: #fff; }

/* ===== SEO CONTENT ===== */
.andaman-landing .seo-section {
  padding: 80px 20px;
  background: #f4f4f4;
}
.andaman-landing .seo-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.andaman-landing .seo-block {
  background: #fff; border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border-left: 4px solid var(--red);
}
.andaman-landing .seo-block h3 { color: var(--blue); font-size: 1.1rem; margin-bottom: 10px; }
.andaman-landing .seo-block p { color: #555; font-size: 0.9rem; line-height: 1.7; }

/* ===== SEARCH TAGS ===== */
.andaman-landing .tags-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #003264, #8b0000);
  text-align: center;
}
.andaman-landing .tags-section h3 {
  color: #fff; font-size: 1.3rem; margin-bottom: 24px;
}
.andaman-landing .tags-cloud {
  max-width: 1000px; margin: auto;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 10px;
}
.andaman-landing .tag {
  background: rgba(255,255,255,0.15);
  color: #fff; border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px; border-radius: 20px;
  font-size: 0.85rem; transition: all 0.3s ease;
  cursor: default;
}
.andaman-landing .tag:hover { background: rgba(255,255,255,0.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .andaman-landing .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .andaman-landing .stat-number { font-size: 2rem; }
  .andaman-landing .form-row { grid-template-columns: 1fr; }
  .andaman-landing .contact-wrap { padding: 28px 20px; }
}

@media (max-width: 768px) {
  .andaman-landing .pkg-hero-content h1 { font-size: 2rem; }
  .andaman-landing .section-title { font-size: 1.6rem; }
  .andaman-landing .itinerary-tabs { gap: 8px; }
  .andaman-landing .itin-tab { padding: 8px 18px; font-size: 0.85rem; }
}
