/* ===========================
   IHK Advisory — Multi-Page
   Educational Professional Design
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Educational palette: deep trustworthy blues, clean whites, warm teal accents */
  --blue-900: #1a2744;
  --blue-800: #1e3054;
  --blue-700: #24436e;
  --blue-600: #2d5494;
  --blue-500: #3366b8;
  --blue-100: #e8eef8;
  --blue-50: #f1f5fb;

  --teal-600: #0f7b6c;
  --teal-500: #14967f;
  --teal-400: #1aad92;
  --teal-100: #ddf5ef;

  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f1f3f7;
  --gray-200: #e2e6ee;
  --gray-300: #d0d5e0;
  --gray-400: #9ba3b5;
  --gray-500: #6b7385;
  --gray-600: #4a5163;
  --gray-700: #2f3542;
  --gray-800: #1e232e;
  --gray-900: #12161e;

  --amber-500: #e59a2e;
  --amber-100: #fef4e2;

  --gradient-blue: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  --gradient-teal: linear-gradient(135deg, var(--teal-500), var(--teal-600));

  --font-body: 'Inter', -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --max-width: 1200px;
  --section-pad: clamp(72px, 9vw, 120px);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(30, 48, 84, 0.06);
  --shadow-md: 0 4px 20px rgba(30, 48, 84, 0.08);
  --shadow-lg: 0 8px 40px rgba(30, 48, 84, 0.1);
  --shadow-blue: 0 4px 20px rgba(51, 102, 184, 0.2);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue-600);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--blue-500);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--blue-900);
  line-height: 1.18;
  font-weight: 700;
}

p {
  margin-bottom: 16px;
}

/* ---------- Container & Section ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--light {
  background: var(--gray-50);
}

.section--blue {
  background: var(--blue-900);
  color: var(--blue-100);
}

.section--blue h2,
.section--blue h3 {
  color: var(--white);
}

.section--blue p,
.section--blue li {
  color: rgba(232, 238, 248, 0.8);
}

.text-center {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.section-sub--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section--blue .section-sub {
  color: rgba(232, 238, 248, 0.7);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(51, 102, 184, 0.3);
  color: var(--white);
}

.btn-teal {
  background: var(--gradient-teal);
  color: var(--white);
}

.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(20, 150, 127, 0.25);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border: 2px solid var(--blue-100);
}

.btn-outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-500);
  color: var(--blue-600);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 40px;
  font-size: 1rem;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo-mark,
.logo>span:not(.logo-img) {
  /* hide old text elements when SVG logo is present */
}

.logo--has-img .logo-mark,
.logo--has-img>span {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--blue-600);
}

.nav-cta {
  padding: 10px 22px !important;
  background: var(--gradient-blue) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  box-shadow: var(--shadow-blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-600);
  border-radius: 2px;
  transition: 0.3s;
}

/* ========== PAGE HERO ========== */
.page-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: var(--blue-900);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(26, 39, 68, 0.92) 0%, rgba(26, 39, 68, 0.8) 50%, rgba(26, 39, 68, 0.9) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 56px 0;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--white);
}

.page-hero h1 .highlight {
  color: var(--teal-400);
}

.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(232, 238, 248, 0.85);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(20, 150, 127, 0.15);
  border: 1px solid rgba(20, 150, 127, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-full {
  min-height: 100vh;
}

/* ========== IMAGE/TEXT SPLITS ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split--reverse .split-image {
  order: -1;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  transition: transform 0.6s var(--ease);
}

.split-image:hover img {
  transform: scale(1.02);
}

.split-text h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  margin-bottom: 14px;
}

.split-text p {
  color: var(--gray-500);
  margin-bottom: 14px;
  max-width: 500px;
}

.split-text .btn {
  margin-top: 12px;
}

/* Feature checklist */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 11px;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-500);
  font-weight: 700;
}

/* ========== CARDS GRID ========== */
.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-100);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 0;
}

.card--center {
  text-align: center;
}

.card--center .card-icon {
  margin: 0 auto 18px;
}

/* on dark backgrounds */
.section--blue .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.section--blue .card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.section--blue .card-icon {
  background: rgba(20, 150, 127, 0.15);
}

.section--blue .card h3 {
  color: var(--white);
}

.section--blue .card p {
  color: rgba(232, 238, 248, 0.7);
}

/* ========== IMAGE OVERLAY CARDS ========== */
.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s var(--ease);
}

.img-card:hover {
  transform: translateY(-4px);
}

.img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.img-card:hover img {
  transform: scale(1.04);
}

.img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.95) 0%, rgba(26, 39, 68, 0.35) 50%, transparent 100%);
}

.img-card-content {
  position: relative;
  z-index: 1;
  padding: 30px 26px;
}

.img-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--white);
}

.img-card-content p {
  font-size: 0.88rem;
  color: rgba(232, 238, 248, 0.75);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========== STEPS ========== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

/* Vertical steps */
.steps-vertical {
  max-width: 680px;
}

.step-v {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 36px;
  position: relative;
}

.step-v:last-child {
  margin-bottom: 0;
}

.step-v-num {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--blue-50);
  border: 2px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-600);
}

.step-v-content h3 {
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.step-v-content p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.step-v:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 26px;
  top: 60px;
  width: 2px;
  height: calc(100% - 28px);
  background: linear-gradient(to bottom, var(--blue-100), transparent);
}

/* Step card */
.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.35s var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue-50);
  border: 2px solid var(--blue-100);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========== CONTENT BLOCKS ========== */
.content-block {
  max-width: 780px;
}

.content-block h2 {
  font-size: clamp(1.5rem, 2.3vw, 1.9rem);
  margin-top: 44px;
  margin-bottom: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.content-block h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-block h3 {
  font-size: 1.05rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.content-block ul {
  list-style: none;
  padding: 0;
}

.content-block ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--teal-500);
  border-radius: 50%;
}

.inline-link {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========== NOTICE BOX ========== */
.notice-box {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-top: 32px;
}

.notice-box p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 0;
}

.notice-box strong {
  color: var(--blue-700);
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-900);
  text-align: left;
  transition: color 0.2s;
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--teal-500);
}

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--blue-600);
  transition: transform 0.35s var(--ease);
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--gray-500);
  font-size: 0.93rem;
  line-height: 1.8;
}

/* ========== FORM ========== */
.form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(51, 102, 184, 0.1);
  background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.form-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' stroke='%239ba3b5' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-select option {
  background: var(--white);
  color: var(--gray-800);
}

/* ========== CTA BAND ========== */
.cta-band {
  text-align: center;
  padding: var(--section-pad) 0;
  background: var(--blue-900);
  color: var(--blue-100);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 150, 127, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
  color: var(--white);
}

.cta-band p {
  max-width: 520px;
  margin: 0 auto 32px;
  color: rgba(232, 238, 248, 0.75);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--blue-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer .logo {
  color: var(--white);
}

.footer-brand p {
  color: rgba(232, 238, 248, 0.5);
  font-size: 0.85rem;
  margin-top: 14px;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(232, 238, 248, 0.5);
}

.footer-links a:hover {
  color: var(--teal-400);
}

.footer-disclaimer {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-disclaimer p {
  font-size: 0.72rem;
  color: rgba(232, 238, 248, 0.35);
  line-height: 1.8;
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(232, 238, 248, 0.35);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: clamp(48px, 7vw, 80px) 0;
  }

  .section-sub {
    margin-bottom: 32px;
    font-size: 0.95rem;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split--reverse .split-image {
    order: 0;
  }

  .split-image img {
    min-height: 240px;
  }

  .cards-grid-2,
  .cards-grid-3,
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 24px 20px;
  }

  .steps-row {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .form-wrap {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .step-v {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .step-v-number {
    margin: 0 auto;
  }

  .step-v:not(:last-child)::after {
    display: none;
  }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 39, 68, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    font-size: 1.2rem;
    color: var(--white);
  }

  .nav .btn-teal {
    width: 80%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
    padding: 16px 32px;
    margin-top: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 48px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero-sub {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.62rem;
    padding: 10px 20px;
    margin-bottom: 18px;
  }

  .img-card {
    min-height: 300px;
  }

  /* CTA band */
  .cta-band {
    padding: 48px 0;
  }

  .cta-band h2 {
    font-size: 1.5rem;
  }

  .cta-band p {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  /* Content block pages */
  .content-block h2 {
    font-size: 1.35rem;
    margin-top: 32px;
  }

  .content-block ul li {
    padding-left: 20px;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.95rem;
    padding: 16px 0;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  /* Admin login */
  .form-wrap {
    margin: 24px auto;
    padding: 24px 18px;
  }

  /* Touch-friendly minimum tap targets */
  .btn {
    min-height: 44px;
  }

  /* Table overflow */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Notice box */
  .notice-box p {
    font-size: 0.82rem;
  }

  /* Footer links */
  .footer-links li {
    padding: 4px 0;
  }

  .footer h4 {
    margin-bottom: 8px;
  }

  .footer-disclaimer {
    font-size: 0.72rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .page-hero-sub {
    font-size: 0.88rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .section-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 2px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.92rem;
  }

  .card {
    padding: 20px 16px;
  }

  .card h3 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.88rem;
  }

  .hero-full {
    min-height: auto;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .header {
    padding: 0 12px;
  }

  .logo img {
    height: 24px;
  }
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: waFloatIn 0.6s var(--ease) both;
  animation-delay: 1s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.whatsapp-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes waFloatIn {
  from {
    opacity: 0;
    transform: scale(0.3) translateY(40px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ---------- Language Toggle ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-800);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.lang-switch:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

@media (max-width: 768px) {
  .lang-switch {
    position: absolute;
    top: 50%;
    right: 54px;
    transform: translateY(-50%);
    font-size: 0.72rem;
    padding: 4px 10px;
  }
}

/* ===========================
   Booking Form — Premium Design
   =========================== */

.booking-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(26, 39, 68, 0.06);
  margin-top: 28px;
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.booking-form .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.booking-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--gray-400);
  font-weight: 400;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(20, 150, 127, 0.12);
}

.booking-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7385' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  padding-right: 40px;
}

.booking-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

.booking-form .notice-box {
  background: linear-gradient(135deg, var(--blue-50), var(--teal-100));
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.booking-form .notice-box::before {
  content: '🔒';
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.5;
}

.booking-form .notice-box p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}

.booking-form button[type="submit"] {
  display: block;
  width: 100%;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 4px 16px rgba(15, 123, 108, 0.25);
  letter-spacing: 0.02em;
}

.booking-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15, 123, 108, 0.35);
}

.booking-form button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(15, 123, 108, 0.2);
}

.booking-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Success state */
#formSuccess {
  animation: fadeUp 0.5s ease;
}

#formSuccess h3 {
  font-size: 1.5rem;
  color: var(--gray-800);
}

#formSuccess p {
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .booking-form {
    padding: 24px 18px;
  }

  .booking-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}