@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --navy: #003D7A;
  --navy-light: #0047AB;
  --accent: #87CEEB;
  --accent-bright: #ADD8E6;
  --cream: #F5F0E8;
  --text-light: #FFFFFF;
  --text-muted: #D0D8E0;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.9;
  font-size: 22px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--accent-bright);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── NAVIGATION ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 27, 46, 0.98) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.nav-logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-logo-container:hover {
  transform: scale(1.05);
}

.nav-logo-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 0.06em;
  line-height: 1.2;
  background: linear-gradient(135deg, #0047AB, #003D7A);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  border: 2px solid var(--accent-bright);
  box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
}

.nav-logo-text .accent {
  color: var(--accent);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Fallback for old .nav-logo class */
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.06em;
}

.nav-logo .accent {
  color: var(--accent-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 1.1rem;
  font-weight: 700 !important;
  transition: all 0.25s;
  position: relative;
  color: #FFFFFF !important;
}

.nav-link:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-bright);
  transition: width 0.3s;
}

.nav-link:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--navy);
  color: #FFFFFF;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  display: inline-block;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 184, 109, 0.3);
}

/* ─── HERO SECTION ───────────────────────────────────── */
.hero {
  padding-top: 140px;
  scroll-margin-top: 80px;
  padding-bottom: 80px;
  background: var(--navy);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(212, 165, 116, 0.15);
  border: 1px solid rgba(212, 165, 116, 0.3);
  color: var(--accent-bright);
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.2rem, 11vw, 6.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2.5rem;
  color: white;
  letter-spacing: 0.06em;
}

.hero-h1 .accent {
  color: var(--accent-bright);
}

.hero-sub {
  font-size: 1.55rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  max-width: 400px;
}

.hero-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
}

.hero-form input::placeholder {
  color: #999;
}

.hero-btn {
  padding: 1rem 2rem;
  background: var(--accent-bright);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 184, 109, 0.3);
}

.hero-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  flex: 1;
}

.stat-num {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--accent-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.hero-graphic {
  position: relative;
}

.hero-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ─── VALUES SECTION ─────────────────────────────────── */
.values-section {
  padding: 6rem 0;
  background: var(--cream);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8.5vw, 5rem);
  font-weight: 400;
  margin-bottom: 3rem;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.05em;
}

.values-section .section-title {
  color: var(--navy);
}

.services-section .section-title,
.faq-section .section-title {
  color: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem;
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 61, 122, 0.1);
  transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(0, 61, 122, 0.08);
}

.value-card:hover {
  background: white;
  border-color: var(--navy-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 61, 122, 0.15);
}

.value-graphic {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.value-svg {
  width: 100%;
  height: 100%;
}

.value-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-text {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
}

/* ─── SERVICES SECTION ───────────────────────────────── */
.services-section {
  padding: 6rem 0;
  background: var(--navy);
  scroll-margin-top: 80px;
}

/* ─── ABOUT SECTION ──────────────────────────────────── */
.about-section {
  padding: 6rem 0;
  background: var(--cream);
  scroll-margin-top: 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3/4;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.about-intro {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 600;
}

.about-text {
  font-size: 1.15rem;
  color: rgba(0, 61, 122, 0.8);
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(0, 61, 122, 0.2);
}

.value-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.value-icon {
  font-size: 2rem;
}

.value-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── SERVICES PAGE ──────────────────────────────────── */
.services-page {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.values-section .section-subtitle {
  color: #666;
}

.faq-section .section-subtitle {
  color: #666;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  min-height: 400px;
}

@media (max-width: 1024px) {
  .service-item {
    grid-template-columns: 1fr 1fr;
    min-height: 350px;
    padding: 2rem;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.5rem;
  }
}

.service-item:nth-child(odd) {
  background: linear-gradient(135deg, rgba(0, 61, 122, 0.3) 0%, rgba(0, 75, 171, 0.3) 100%);
  border-left: 4px solid var(--accent-bright);
}

.service-item:nth-child(even) {
  background: linear-gradient(135deg, #F5F0E8 0%, #E8E0D0 100%);
  border-left: 4px solid var(--navy);
}

.service-item:nth-child(even) .service-name {
  color: var(--navy);
}

.service-item:nth-child(even) .service-description {
  color: rgba(0, 61, 122, 0.8);
}

.service-item:nth-child(even) .service-description strong {
  color: var(--navy-light);
  font-weight: 700;
}

.service-item.image-right {
  direction: rtl;
}

.service-item.image-right > * {
  direction: ltr;
}

.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  aspect-ratio: 1/1;
  background: transparent;
  width: 100%;
  height: auto;
  min-width: 250px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.service-description {
  font-size: 1.2rem;
  color: rgba(250, 246, 242, 0.75);
  line-height: 1.7;
  max-width: 450px;
}

.service-description strong {
  color: var(--accent-bright);
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--navy-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(232, 184, 109, 0.2);
}

.service-graphic {
  width: 100%;
  aspect-ratio: 1/0.8;
  overflow: hidden;
}

.service-svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  padding: 1.5rem 1.5rem 1rem;
  font-size: 1.2rem;
  color: white;
}

.service-btn {
  margin: 0 1.5rem 1.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--accent-bright);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 184, 109, 0.3);
}

/* ─── BOOKING PAGE ───────────────────────────────────── */
.booking-page {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.booking-page-header {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-light);
  background: linear-gradient(135deg, #0047AB 0%, #003D7A 100%);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 61, 122, 0.3);
  position: relative;
  overflow: hidden;
}

.booking-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(135, 206, 235, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.booking-page-header > * {
  position: relative;
  z-index: 1;
}

.booking-header-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ADD8E6;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.booking-page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.booking-header-subtitle {
  font-size: 1.2rem;
  color: #FFFFFF;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.booking-header-confirmation {
  font-size: 0.95rem;
  color: #ADD8E6;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0.95;
}

.booking-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--cream) !important;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 2rem !important;
}

.form-group label {
  display: block !important;
  font-weight: 700 !important;
  margin-bottom: 0.8rem !important;
  color: #003D7A !important;
  font-size: 1.1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100% !important;
  padding: 1.2rem !important;
  background: white !important;
  border: 2px solid #E0E0E0 !important;
  border-radius: 8px !important;
  color: #003D7A !important;
  font-family: inherit !important;
  font-size: 1.1rem !important;
  transition: all 0.25s !important;
  line-height: 1.5 !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none !important;
  border-color: #ADD8E6 !important;
  box-shadow: 0 0 0 3px rgba(173, 216, 230, 0.1) !important;
}

.form-group input::placeholder {
  color: #999 !important;
}

/* Style disabled options in select dropdowns */
.form-group select option:disabled {
  color: #999 !important;
  background-color: #F5F5F5 !important;
  opacity: 0.6 !important;
}

.form-group select option {
  color: #003D7A !important;
  background-color: white !important;
  padding: 0.5rem !important;
}

.form-group select option:not(:disabled) {
  color: #003D7A !important;
  background-color: white !important;
  opacity: 1 !important;
}

/* Indicate disabled select element */
.form-group select:has(option:checked:disabled) {
  background-color: #f9f9f9 !important;
  color: #999 !important;
}

.address-line-2 {
  margin-top: -1.2rem !important;
  margin-bottom: 0.5rem !important;
  padding-top: 0.8rem !important;
}

.address-line-2 label {
  margin-bottom: 0.4rem !important;
}

.checkbox-group {
  margin-bottom: 1.5rem !important;
}

.checkbox-label {
  display: flex !important;
  align-items: center !important;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
  color: #003D7A !important;
  font-size: 1rem !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  cursor: pointer !important;
  user-select: none !important;
}

.checkbox-label input[type="checkbox"] {
  width: auto !important;
  height: 20px !important;
  min-width: 20px !important;
  margin-right: 1rem !important;
  padding: 0 !important;
  border: 2px solid #003D7A !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  accent-color: #87CEEB !important;
}

.checkbox-label input[type="checkbox"]:focus {
  box-shadow: 0 0 0 3px rgba(173, 216, 230, 0.3) !important;
}

.checkbox-label span {
  line-height: 1.4 !important;
}

.checkbox-label a {
  color: #87CEEB !important;
  text-decoration: underline !important;
  cursor: pointer !important;
}

.checkbox-label a:hover {
  color: #ADD8E6 !important;
}

.policy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.policy-modal-content {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 3rem;
  color: #003D7A;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.policy-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #003D7A;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.policy-modal-close:hover {
  color: #87CEEB;
}

.policy-modal-body h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #003D7A;
}

.policy-modal-body h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: #0047AB;
}

.policy-modal-body p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

.policy-modal-body ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-modal-body li {
  margin-bottom: 0.5rem;
  color: #333;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(232, 184, 109, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 184, 109, 0.5);
}

/* ─── FAQ SECTION ────────────────────────────────────── */
.faq-section {
  padding: 6rem 0;
  background: var(--navy);
  scroll-margin-top: 80px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent-bright);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-bright);
  width: fit-content;
}

.faq-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-section .section-title {
  color: var(--text-light);
  text-align: left;
  margin: 0;
}

.faq-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 100%;
}

.faq-contact-btn {
  padding: 1rem 1.5rem;
  background: white;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-contact-btn:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 61, 122, 0.2);
}

.faq-right {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-section .section-title {
    text-align: center;
  }

  .faq-badge,
  .faq-contact-btn {
    margin: 0 auto;
  }
}

/* ─── FAQ PAGE ───────────────────────────────────────── */
.faq-page {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 50px;
  overflow: hidden;
  background: var(--cream);
  transition: all 0.3s ease;
  border: 2px solid rgba(135, 206, 235, 0.3);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.faq-question {
  padding: 1.6rem 2.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question h3 {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 1.8rem;
  color: var(--navy);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1.5rem;
}

.faq-answer {
  padding: 0 2.2rem 1.5rem;
  color: var(--navy);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ─── POLICIES SECTION ───────────────────────────────── */
.policies-section {
  padding: 6rem 0;
  background: var(--cream);
  scroll-margin-top: 80px;
}

.policies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.policies-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.policies-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--navy);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  width: fit-content;
}

.policies-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policies-section .section-title {
  color: var(--navy);
  text-align: left;
  margin: 0;
}

.policies-description {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  max-width: 100%;
}

.policies-right {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .policies-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .policies-section .section-title {
    text-align: center;
  }

  .policies-badge {
    margin: 0 auto;
  }
}

.policies-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.policies-item {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  background: #1E5BA8;
  transition: all 0.3s ease;
}

.policies-item:hover {
  background: #1F7DBE;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 91, 168, 0.4);
}

.policies-card {
  padding: 2rem 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.policies-card h3 {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  flex: 1;
}

.policies-arrow {
  font-size: 1.8rem;
  color: #FFFFFF;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1.5rem;
}

.policies-item:hover .policies-arrow {
  transform: translateX(4px);
}


/* ─── CTA SECTION ────────────────────────────────────── */
.cta-section {
  padding: 0;
  text-align: left;
  background: linear-gradient(135deg, rgba(0, 61, 122, 0.95) 0%, rgba(0, 75, 171, 0.95) 100%);
  border-radius: 16px;
  margin: 6rem 0;
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cta-section-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.cta-section-image {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: white;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-btn {
  background: linear-gradient(135deg, #87CEEB 0%, #5BA3D0 100%);
  color: #003D7A;
  padding: 1.3rem 3.5rem;
  border-radius: 50px;
  border: none;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 32px rgba(0, 61, 122, 0.3);
  letter-spacing: 0.04em;
  text-shadow: none;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(173, 216, 230, 0.6);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(212, 165, 116, 0.15);
  padding: 3rem 0;
  margin-top: 6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 165, 116, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── ABOUT PAGE ─────────────────────────────────────── */
.about-page {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
}

/* ─── MODERN BOOKING FORM ────────────────────────────── */
.booking-container {
  max-width: 700px;
  margin: 0 auto;
  perspective: 1000px;
}

.booking-form-modern {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-section {
  padding: 2rem !important;
  background: rgba(245, 240, 232, 0.95) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(0, 61, 122, 0.15) !important;
  transition: all 0.3s ease !important;
  margin-bottom: 1.5rem !important;
  color: #003D7A !important;
}

.form-section:hover {
  background: rgba(245, 240, 232, 0.98) !important;
  border-color: rgba(0, 61, 122, 0.2) !important;
  box-shadow: 0 4px 16px rgba(0, 61, 122, 0.08) !important;
}

.form-section-title {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #003D7A !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.service-option {
  position: relative;
  cursor: pointer;
}

.service-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.service-option span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.2rem 1rem !important;
  background: white !important;
  border: 2px solid #E0E0E0 !important;
  border-radius: 12px !important;
  color: #003D7A !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
}

.service-option input[type="radio"]:checked + span {
  background: #ADD8E6 !important;
  color: #003D7A !important;
  border-color: #ADD8E6 !important;
  box-shadow: 0 4px 12px rgba(173, 216, 230, 0.3) !important;
}

.service-option:hover span {
  border-color: #ADD8E6 !important;
  background: rgba(173, 216, 230, 0.05) !important;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.flex-1 {
  flex: 1;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  padding: 1rem 1.2rem;
  background: rgba(250, 246, 242, 0.08);
  border: 1.5px solid rgba(212, 165, 116, 0.25);
  border-radius: 10px;
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.form-input::placeholder {
  color: rgba(212, 165, 116, 0.5);
}

.form-input:focus {
  outline: none;
  background: rgba(250, 246, 242, 0.12);
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(173, 216, 230, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.booking-submit {
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(173, 216, 230, 0.3);
  margin-top: 1rem;
}

.booking-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(173, 216, 230, 0.5);
}

.booking-submit:active {
  transform: translateY(-1px);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── ADDRESS AUTOCOMPLETE ─────────────────────────────── */
.address-autocomplete-container {
  position: relative;
}

.address-input {
  width: 100%;
}

.address-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  list-style: none;
  background: rgba(15, 27, 46, 0.98);
  border: 1.5px solid rgba(173, 216, 230, 0.3);
  border-top: none;
  border-radius: 0 0 10px 10px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 100;
  margin: 0;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.suggestion-item {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(173, 216, 230, 0.1);
  cursor: pointer;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.suggestion-item:hover {
  background: rgba(173, 216, 230, 0.1);
  padding-left: 1.5rem;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.address-error {
  display: block;
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

/* ─── PAYMENT SECTION ─────────────────────────────────── */
.payment-info {
  background: linear-gradient(135deg, #003D7A 0%, #0047AB 100%);
  border: 3px solid #87CEEB;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.payment-method h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #87CEEB;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.payment-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payment-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border-left: 5px solid #87CEEB;
  min-height: 70px;
}

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

.payment-label {
  color: #87CEEB;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 140px;
}

.payment-value {
  color: #FFFFFF;
  font-weight: 800;
  font-family: 'Courier New', monospace;
  font-size: 1.4rem;
  text-align: right;
  letter-spacing: 0.05em;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
}

/* File Upload Styles */
.file-upload-box {
  position: relative;
  cursor: pointer;
}

.file-upload-box input[type="file"] {
  display: none;
}

.file-upload-content {
  border: 2px dashed rgba(173, 216, 230, 0.4);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  background: rgba(173, 216, 230, 0.05);
  transition: all 0.3s ease;
}

.file-upload-box:hover .file-upload-content {
  background: rgba(173, 216, 230, 0.1);
  border-color: rgba(173, 216, 230, 0.6);
}

.file-upload-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.file-upload-content p {
  color: #003D7A;
  margin: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.file-upload-hint {
  color: var(--text-muted);
  font-size: 0.85rem !important;
}

.file-name {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--accent-bright);
  font-weight: 500;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */

/* MOBILE: Extra Small (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  body {
    font-size: 18px;
  }

  .nav {
    padding: 1rem;
  }

  .nav-logo-text {
    font-size: 1rem;
    padding: 0.3rem 0.8rem;
  }

  .nav-links {
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  .booking-page-header h1 {
    font-size: 1.8rem;
  }

  .booking-container {
    padding: 1rem;
    max-width: 100% !important;
  }

  .form-section {
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
  }

  .form-section-title {
    font-size: 1.3rem;
  }

  .form-input {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .payment-info {
    padding: 0.8rem;
    border: 2px solid #87CEEB;
    width: 100%;
    overflow: hidden;
  }

  .payment-method h4 {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.03em;
    width: 100%;
  }

  .payment-details {
    width: 100%;
  }

  .payment-detail-row {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0.8rem;
    min-height: auto;
    gap: 0.3rem;
    border-left: 3px solid #87CEEB;
    width: 100%;
    box-sizing: border-box;
  }

  .payment-label {
    font-size: 0.75rem;
    min-width: auto;
    letter-spacing: 0.02em;
    width: 100%;
  }

  .payment-value {
    font-size: 0.75rem;
    text-align: left;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: block;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  }

  .file-upload-content {
    padding: 1.5rem;
  }

  .file-upload-icon {
    font-size: 2rem;
  }

  .file-upload-content p {
    font-size: 0.85rem;
  }

  .submit-btn {
    padding: 1rem;
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-num {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .hero-graphic {
    max-height: 300px;
  }

  .hero-img {
    border-radius: 12px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-height: 300px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    min-height: auto;
  }

  .service-image {
    width: 100%;
    min-width: auto;
    min-height: 200px;
  }

  .service-name {
    font-size: 1.2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .policies-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* TABLET: Small (480px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  body {
    font-size: 20px;
  }

  .nav {
    padding: 1.2rem 1.5rem;
  }

  .booking-page-header h1 {
    font-size: 2rem;
  }

  .booking-container {
    padding: 1.5rem;
    max-width: 100% !important;
  }

  .form-section {
    padding: 1.5rem;
    width: 100%;
  }

  .form-section-title {
    font-size: 1.4rem;
  }

  .form-input {
    padding: 0.9rem 1.1rem;
    font-size: 0.97rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .payment-info {
    padding: 1.8rem;
  }

  .payment-method h4 {
    font-size: 1.3rem;
  }

  .payment-label {
    font-size: 1.1rem;
  }

  .payment-value {
    font-size: 1.2rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .service-image {
    min-width: auto;
    min-height: 250px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .policies-grid {
    grid-template-columns: 1fr;
  }
}

/* DESKTOP: Medium (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .booking-page-header h1 {
    font-size: 2.2rem;
  }

  .form-section-title {
    font-size: 1.6rem;
  }

  .payment-method h4 {
    font-size: 1.4rem;
  }

  .service-item {
    min-height: 350px;
  }
}

/* DESKTOP: Large (1024px+) */
@media (min-width: 1025px) {
  .container {
    max-width: 1400px;
  }

  .form-section-title {
    font-size: 1.8rem;
  }
}

/* ─── THANK YOU MODAL ──────────────────────────────────── */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: linear-gradient(135deg, #0047AB 0%, #003D7A 100%);
  border-radius: 16px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h2 {
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.modal-body {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-message {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.modal-message strong {
  color: #ADD8E6;
  font-weight: 700;
}

.modal-subtext {
  color: #ADD8E6;
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 1.5rem;
}

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

.modal-btn {
  background: #FFFFFF;
  color: #0047AB;
  border: none;
  padding: 12px 40px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-btn:active {
  transform: translateY(0);
}
