/* =========================================================
   01. ROOT VARIABLES & BASE STYLES
   ========================================================= */
:root {
  --cream: #fff8f0;
  --peach: #e17b63;
  --peach-light: #f0c3b1;
  --ink: #2b2b2b;
  --deep: #0c3d4a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }

/* =========================================================
   02. HEADER / NAVIGATION BAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-text {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.5px;
}
.navbar.scrolled .logo-text { color: var(--ink); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar.scrolled .nav-link { color: var(--ink); }
.nav-link:hover { color: var(--peach); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content {
  position: absolute;
  top: 100%; left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99;
}
.dropdown:hover .dropdown-content {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
}
.dropdown-content a:hover {
  background: var(--peach);
  color: #fff;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive Mobile Nav */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 64px; left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 1001;
  }
  .nav-links.active {
    height: auto;
    overflow-y: auto;
    max-height: 80vh;
  }

  .nav-link {
    color: var(--ink);
    padding: 12px 0;
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border-top: 1px dashed #f2d6c5;
    background: #fffdfc;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .dropdown.open .dropdown-content { display: block; }
  .dropdown-content a { padding: 10px 24px; }
}
/* ===== MOBILE MENU FIX ===== */
@media (max-width: 768px) {

  /* Ensure nav links fill the full width neatly */
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  .nav-links.active {
    height: auto;
    overflow-y: auto;
    max-height: 80vh;
  }

  /* Mobile link styling */
  .nav-link {
    color: var(--ink);
    padding: 14px 24px;
    display: block;
    width: 100%;
    border-bottom: 1px solid #f6e8e2;
  }

  /* Remove the floating right shift on dropdowns */
  .dropdown-content {
    position: static;
    background: #fffdfc;
    box-shadow: none;
    border-top: 1px dashed #f2d6c5;
    margin: 0;
    padding: 0;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  /* Dropdown links full width and left aligned */
  .dropdown-content a {
    display: block;
    width: 100%;
    padding: 12px 40px; /* increased left padding for visual nesting */
    text-align: left;
    color: var(--ink);
    background: transparent;
    border-bottom: 1px solid #f9f2ee;
  }

  .dropdown-content a:hover {
    background: var(--peach);
    color: #fff;
  }
}

/* =========================================================
   03. HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  min-height: 90vh;
  background: url('https://besthoneymoondeals.com/images/couple-vacations-goa1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 40px 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}
.hero-inner h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
}
.hero-tagline {
  font-size: 1.1rem;
  color: #f1f1f1;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 300;
}

/* =========================================================
   04. SIDE FORM / DRAWER FORM
   ========================================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 1099;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 380px;
  max-width: 92vw;
  background: #fff;
  box-shadow: -12px 0 28px rgba(0,0,0,0.18);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #eee;
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #f1e8e4;
}
.drawer-header h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--peach);
  font-weight: 700;
}
.drawer-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #666;
  cursor: pointer;
}

.drawer-body {
  padding: 16px 18px 22px;
  overflow: auto;
}
.drawer-body label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  color: #333;
  margin: 10px 0 6px;
}
.drawer-body input,
.drawer-body textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font: inherit;
}
.drawer-body input:focus,
.drawer-body textarea:focus {
  outline: none;
  border-color: var(--peach);
}
.drawer-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.drawer-actions .btn {
  background: var(--peach);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 28px;
  cursor: pointer;
}
.drawer-actions .btn.secondary {
  background: #f3e2db;
  color: #333;
}
@media (max-width:480px) {
  .drawer { width: 100%; }
}

/* =========================================================
   05. FORM ELEMENTS (GLOBAL)
   ========================================================= */
input, select, textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
  color: #333;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--peach);
  box-shadow: 0 0 0 3px rgba(225, 123, 99, 0.15);
}

/* =========================================================
   06. FOOTER SECTION
   ========================================================= */
.footer {
  padding: 40px 0;
  background: #fff;
  border-top: 2px solid #eee;
  text-align: center;
}
.footer .wrap {
  max-width: 1000px;
  margin: auto;
}
.footer strong {
  color: var(--deep);
  font-family: "Playfair Display", serif;
}
.footer small {
  display: block;
  color: #777;
  margin-top: 4px;
  font-size: 0.9rem;
}
.footer a {
  color: var(--peach);
  text-decoration: none;
}
.footer a:hover { text-decoration: underline; }
/* =========================================================
   07. ICON GRID / HONEYMOON SECTION
   ========================================================= */

.section {
  padding: 90px 20px;
  text-align: center;
  background: #fffdf9;
}

.section .wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--deep);
  margin-bottom: 14px;
}

.section .lead {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ICON GRID */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  justify-items: center;
}

.icon-card {
  background: #fff;
  border: 1.5px solid var(--peach-light);
  border-radius: 16px;
  padding: 28px 20px 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 260px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.icon-card i {
  color: var(--peach);
  font-size: 36px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.icon-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 8px 0;
}

.icon-card p {
  font-size: 0.93rem;
  color: #666;
  line-height: 1.55;
}

/* Hover Effects */
.icon-card:hover {
  transform: translateY(-6px);
  border-color: var(--peach);
  box-shadow: 0 10px 20px rgba(0,0,0,0.07);
  background: #fffaf8;
}
.icon-card:hover i {
  transform: scale(1.15);
  color: #cf6f54;
}

/* Tablet Responsive (2 per row) */
@media (max-width: 992px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .icon-card {
    max-width: 340px;
  }
}

/* Mobile Responsive (1 per row) */
@media (max-width: 600px) {
  .section {
    padding: 70px 15px;
  }
  .icon-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .icon-card {
    max-width: 100%;
    min-height: 200px;
  }
  .icon-card i {
    font-size: 32px;
  }
  .section .lead {
    font-size: 1rem;
    margin-bottom: 36px;
  }
}
/* =========================================================
   08. HONEYMOON ENQUIRY FORM SECTION
   ========================================================= */

.form-section {
  background: #fffdf9;
  padding: 90px 20px;
  text-align: center;
}

.form-section .wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.form-wrap {
  background: #ffffff;
  border: 1.5px solid var(--peach-light);
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.form-wrap h3 {
  font-family: "Playfair Display", serif;
  color: var(--deep);
  font-size: 2rem;
  margin-bottom: 8px;
  text-align: center;
}

.form-wrap p.mini {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 36px;
  text-align: center;
}

/* Label styling */
label {
  display: block;
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

/* Input + Select + Textarea styling */
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #333;
  background: #fff;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--peach);
  outline: none;
  box-shadow: 0 0 0 3px rgba(225, 123, 99, 0.15);
}

/* Grid layout (2 columns for paired fields) */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 16px;
}

/* Button styles */
.btn {
  background: var(--peach);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #cf6f54;
  transform: translateY(-2px);
}

/* WhatsApp button override */
.btn[href*="wa.me"] {
  background: #25D366 !important;
  color: #fff;
}
.btn[href*="wa.me"]:hover {
  background: #1eb45a !important;
}

/* Note text under buttons */
.note {
  margin-top: 16px;
  font-size: 0.92rem;
  color: #555;
  text-align: center;
}

/* Textarea spacing */
textarea {
  resize: vertical;
  min-height: 120px;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
  .form-wrap {
    padding: 40px 25px;
  }
  .form-wrap h3 {
    font-size: 1.7rem;
  }
  .form-wrap p.mini {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .form-wrap {
    padding: 30px 20px;
  }
}
