/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1b2a4a;
  --navy-light: #2c3e6b;
  --navy-dark: #111d35;
  --gold: #c8a951;
  --gold-light: #e0c97a;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --gray-light: #e8eaef;
  --gray: #8a92a6;
  --gray-dark: #4a5268;
  --text: #2d3142;
  --text-light: #5c6178;
  --shadow-sm: 0 1px 3px rgba(27,42,74,0.08);
  --shadow-md: 0 4px 12px rgba(27,42,74,0.1);
  --shadow-lg: 0 8px 30px rgba(27,42,74,0.12);
  --radius: 6px;
  --radius-lg: 10px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  color: var(--navy);
  font-weight: 600;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

/* ===== Header / Navbar ===== */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-top {
  background: var(--navy-dark);
  padding: 6px 0;
  font-size: 0.82rem;
  color: var(--gray);
  display: flex;
  justify-content: center;
}

.header-top span {
  color: var(--gray-light);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo:hover {
  color: var(--white);
}

.logo-shield {
  width: 30px;
  height: 36px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.85);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--white);
}

.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
  font-weight: 400;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  display: block;
  padding: 22px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: var(--white);
  border-bottom-color: var(--gold);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  padding: 8px 0;
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  rotate: 45deg;
  border-radius: 2px;
}

.main-nav > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text);
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--navy);
  padding-left: 24px;
}

/* CTA Button in Nav */
.nav-cta {
  margin-left: 12px;
}

.nav-cta a {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  border: none !important;
  transition: all var(--transition);
}

.nav-cta a:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,169,81,0.3);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(200,169,81,0.04);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
}

.hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.hero .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,169,81,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== Page Hero (smaller, for inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 50px 0 55px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--off-white);
  padding: 12px 0;
  font-size: 0.84rem;
  border-bottom: 1px solid var(--gray-light);
}

.breadcrumb a {
  color: var(--gray);
}

.breadcrumb a:hover {
  color: var(--navy);
}

.breadcrumb .sep {
  color: var(--gray-light);
  margin: 0 8px;
}

.breadcrumb .current {
  color: var(--navy);
  font-weight: 500;
}

/* ===== Section Styles ===== */
.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ===== Card Grid ===== */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-3px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
  color: var(--gold);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 0.92rem;
}

.card .card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.card .card-link:hover {
  color: var(--gold);
}

/* ===== Feature List (icon + text rows) ===== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item .fi-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  border: 1px solid var(--gray-light);
}

.feature-item h4 {
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== Split Layout (two columns) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-content h2 {
  margin-bottom: 16px;
}

.split-content p {
  margin-bottom: 14px;
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ===== Content Block (for info pages) ===== */
.content-block {
  padding: 60px 0;
}

.content-block + .content-block {
  border-top: 1px solid var(--gray-light);
}

.content-narrow {
  max-width: 780px;
  margin: 0 auto;
}

.content-narrow h2 {
  margin-bottom: 16px;
}

.content-narrow h3 {
  margin: 28px 0 10px;
}

.content-narrow p {
  font-size: 0.95rem;
}

.content-narrow ul, .content-narrow ol {
  margin: 12px 0 20px 20px;
}

.content-narrow ul {
  list-style: disc;
}

.content-narrow ol {
  list-style: decimal;
}

.content-narrow li {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===== Accordion (FAQ) ===== */
.accordion {
  max-width: 780px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all var(--transition);
}

.accordion-item.active {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: background var(--transition);
}

.accordion-header:hover {
  background: var(--off-white);
}

.accordion-header .toggle-icon {
  font-size: 1.2rem;
  color: var(--gray);
  transition: transform 0.3s ease;
}

.accordion-item.active .toggle-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body-inner {
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: var(--text-light);
}

/* ===== Comparison Table ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
}

.comparison-table thead th:first-child {
  width: 200px;
}

.comparison-table tbody td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-light);
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--off-white);
}

.comparison-table tbody tr:hover {
  background: rgba(200,169,81,0.05);
}

.comparison-table .check {
  color: var(--gold);
  font-weight: 700;
}

/* ===== Timeline ===== */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.timeline-item h3 {
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.92rem;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 56px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ===== Booking Section ===== */
.booking-section {
  padding: 60px 0 80px;
}

.booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.booking-wrapper iframe {
  width: 100%;
  min-height: 700px;
  border: none;
}

/* ===== Team Grid ===== */
.team-item {
  text-align: center;
  padding: 28px 20px;
}

.team-item .team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-dark);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-col p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.3);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ===== Notice Bar ===== */
.notice-bar {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 16px 22px;
  border-radius: var(--radius);
  margin: 20px 0;
}

.notice-bar p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ===== Contact Form ===== */
.contact-section {
  padding: 60px 0 80px;
}

.contact-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.contact-wrapper h3 {
  margin-bottom: 6px;
}

.contact-wrapper > p {
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.08);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%238a92a6' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

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

.consent-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 20px 0 24px;
}

.consent-group input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  cursor: pointer;
}

.consent-group label {
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--gray-dark);
  cursor: pointer;
}

.consent-group label strong {
  color: var(--text);
}

.consent-group label a {
  color: var(--navy);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 14px 30px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200,169,81,0.3);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.form-success h3 {
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-wrapper { padding: 28px 20px; }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 50px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero .btn-group { flex-direction: column; align-items: center; }
  .section { padding: 48px 0; }

  /* Mobile Nav */
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav > li > a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    background: rgba(0,0,0,0.15);
    display: none;
  }

  .dropdown-menu::before { display: none; }

  .main-nav > li:hover .dropdown-menu,
  .main-nav > li.dropdown-open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: rgba(255,255,255,0.7);
    padding: 10px 36px;
  }

  .dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--white);
  }

  .nav-cta {
    margin: 12px 24px 0;
  }

  .nav-cta a {
    display: block;
    text-align: center;
  }

  .mobile-toggle { display: flex; }
}

@media (max-width: 600px) {
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .comparison-table { font-size: 0.82rem; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 10px 12px; }
}
