/* =============================================
   GSCS-DMC Golf Website — CSS (Kapalua-inspired)
   Fully Responsive: Desktop + Mobile Portrait
   ============================================= */

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

:root {
  --white: #ffffff;
  --off-white: #f5f0e8;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --dark: #0d1a0f;
  --dark-green: #1a3c2e;
  --medium-green: #2d5a3d;
  --overlay-dark: rgba(0, 0, 0, 0.55);
  --overlay-medium: rgba(0, 0, 0, 0.40);
  --overlay-light: rgba(0, 0, 0, 0.30);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   NAVIGATION
   ============================================= */

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.4s ease, padding 0.4s ease;
}

/* Nav right group: lang toggle + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 5px 14px;
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.16);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.lang-btn.active {
  color: var(--white);
}

.lang-btn:hover {
  color: var(--gold);
}

.lang-divider {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  user-select: none;
}

/* Hero eyebrow sub */
.section-eyebrow-sub {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.95;
}

/* Hero brand title */
.hero-brand {
  line-height: 1.05;
}

.hero-subtitle-brand {
  font-style: italic;
  font-weight: 300;
  font-size: 0.72em;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
}

#main-header.scrolled {
  background: rgba(13, 26, 15, 0.92);
  backdrop-filter: blur(8px);
  padding: 14px 40px;
}

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

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(70%) sepia(60%) saturate(600%) hue-rotate(5deg) brightness(95%);
  transition: opacity 0.2s, height 0.3s;
}

.nav-logo-img:hover {
  opacity: 0.85;
}

#main-header.scrolled .nav-logo-img {
  height: 50px;
}

/* Hero full logo image */
.hero-logo-img {
  width: min(420px, 75vw);
  height: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(0,0,0,0.35));
  animation: fadeUp 1.1s ease both;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  animation: fadeUp 1.3s ease both;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Slide-out nav */
.nav-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: rgba(13, 26, 15, 0.97);
  backdrop-filter: blur(12px);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu.open {
  right: 0;
}

.nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.nav-close:hover { opacity: 1; }

.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.nav-menu ul li a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  display: block;
  padding: 4px 0;
}

.nav-menu ul li a:hover {
  color: var(--gold);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =============================================
   FIXED CTA BUTTON
   ============================================= */

.fixed-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
}

.cta-book {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-green);
  color: var(--white);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1px solid rgba(201, 168, 76, 0.5);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.cta-book:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.cta-icon {
  font-size: 1rem;
}

/* =============================================
   FULLSCREEN SECTIONS
   ============================================= */

.fullscreen-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.fullscreen-section:hover .section-bg {
  transform: scale(1.0);
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}

.section-overlay.overlay-light { background: var(--overlay-light); }
.section-overlay.overlay-medium { background: var(--overlay-medium); }
.section-overlay.overlay-dark { background: rgba(0,0,0,0.65); }

.section-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 120px 40px 80px;
  width: 100%;
}

.section-content.center {
  text-align: center;
  margin: 0 auto;
}

.section-content.left-content {
  text-align: left;
  padding-left: 8%;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.9;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.section-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 620px;
}

.section-content.center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Ghost Button */
.ghost-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 16px;
  -webkit-tap-highlight-color: transparent;
}

.ghost-btn:hover,
.ghost-btn:active {
  background: var(--white);
  color: var(--dark);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero-section .section-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  margin-bottom: 16px;
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  opacity: 0.6;
}

.scroll-hint span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

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

/* =============================================
   COURSE GROWTH SECTION
   ============================================= */

.course-growth {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 8px;
  padding: 20px 28px;
  margin: 24px auto 32px;
  max-width: 620px;
  text-align: left;
}

.growth-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.growth-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
}

/* =============================================
   SERVICES SECTION
   ============================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.service-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.service-card p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* =============================================
   ABOUT SECTION — STATS
   ============================================= */

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.contact-item p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  /* Prevent iOS zoom on focus */
  font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.form-group select option {
  background: var(--dark-green);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* =============================================
   FOOTER
   ============================================= */

#footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 70px 8% 30px;
}

/* ── Three-column footer main area ── */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
  align-items: start;
}

/* Left: Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(1.1);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-brand-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 240px;
}

/* Middle: Navigation */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav ul li a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav ul li a:hover {
  color: var(--white);
}

/* Right: Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-contact p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.footer-link {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s;
  margin-left: 5px;
}

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

/* =============================================
   TOAST NOTIFICATION
   ============================================= */

.toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: var(--dark-green);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================= */

@media (max-width: 900px) {
  #main-header {
    padding: 16px 24px;
  }

  #main-header.scrolled {
    padding: 12px 24px;
  }

  .section-content {
    padding: 100px 24px 60px;
  }

  .section-content.left-content {
    padding-left: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .stats-row {
    gap: 28px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE PORTRAIT (≤ 480px)
   ============================================= */

@media (max-width: 480px) {

  /* ── Hero mobile portrait image ── */
  #hero .section-bg {
    background-size: cover;
    background-position: center center;
  }

  /* ── Navigation ── */
  #main-header {
    padding: 14px 18px;
  }

  #main-header.scrolled {
    padding: 10px 18px;
  }

  .nav-logo-img {
    height: 48px;
  }

  #main-header.scrolled .nav-logo-img {
    height: 40px;
  }

  .lang-toggle {
    padding: 4px 10px;
    gap: 4px;
  }

  .lang-btn {
    font-size: 0.68rem;
    padding: 2px 3px;
  }

  /* ── Nav Menu — full-width on mobile ── */
  .nav-menu {
    width: 100%;
    right: -100%;
    padding: 80px 32px 40px;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu ul {
    gap: 24px;
  }

  .nav-menu ul li a {
    font-size: 2rem;
  }

  /* ── Hero Section ── */
  .hero-logo-img {
    width: min(300px, 80vw);
    margin-bottom: 20px;
  }

  .hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
    padding: 0 8px;
  }

  .ghost-btn {
    padding: 14px 32px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .scroll-hint {
    bottom: 24px;
  }

  .scroll-line {
    height: 36px;
  }

  /* ── Section Content ── */
  .section-content {
    padding: 90px 20px 60px;
  }

  .section-content.left-content {
    padding-left: 20px;
    text-align: center;
  }

  .section-title {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
  }

  .section-desc {
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  /* ── Course Growth Box ── */
  .course-growth {
    padding: 16px 20px;
    margin: 20px 0 24px;
  }

  .growth-title {
    font-size: 1rem;
  }

  .growth-desc {
    font-size: 0.84rem;
  }

  /* ── Services Grid ── */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 28px 0;
    max-width: 100%;
  }

  .service-card {
    padding: 24px 20px;
    border-radius: 10px;
  }

  .service-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }

  .service-card p {
    font-size: 0.82rem;
  }

  /* ── Stats Row ── */
  .stats-row {
    gap: 0;
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 2.4rem;
  }

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

  /* ── Contact Section ── */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }

  .contact-item {
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
  }

  .contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    min-width: 24px;
    text-align: center;
  }

  .contact-item h4 {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
  }

  .contact-item p {
    font-size: 0.82rem;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .contact-info {
    padding: 0 4px;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .contact-form h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  /* ── Fixed CTA ── */
  .fixed-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .cta-book {
    padding: 14px 20px;
    font-size: 0.8rem;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  }

  /* ── Footer ── */
  #footer {
    padding: 40px 18px 20px;
  }

  /* Footer responsive */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
    margin-bottom: 36px;
  }

  /* Brand block spans full width at top, centered on mobile */
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-logo-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-col-title {
    margin-bottom: 12px;
  }

  .footer-nav ul {
    gap: 8px;
  }

  .footer-bottom p {
    font-size: 0.7rem;
  }

  /* ── Toast ── */
  .toast {
    right: 16px;
    left: 16px;
    bottom: 90px;
    text-align: center;
  }
}

/* =============================================
   MOBILE — EXTRA SMALL (≤ 360px)
   ============================================= */

@media (max-width: 360px) {
  .hero-logo-img {
    width: 75vw;
  }

  .section-title {
    font-size: clamp(1.9rem, 12vw, 2.8rem);
  }

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

/* =============================================
   TOUCH DEVICE OPTIMISATIONS
   ============================================= */

@media (hover: none) and (pointer: coarse) {
  /* Remove hover-only effects that don't work on touch */
  .service-card:hover {
    transform: none;
  }

  .ghost-btn:hover {
    background: transparent;
    color: var(--white);
  }

  /* Active states for touch feedback */
  .service-card:active {
    background: rgba(255,255,255,0.14);
    border-color: rgba(201, 168, 76, 0.5);
  }

  .ghost-btn:active {
    background: var(--white);
    color: var(--dark);
  }

  .cta-book:active {
    background: var(--gold);
    color: var(--dark);
  }

  /* Disable parallax on touch (performance) */
  .section-bg {
    transform: scale(1.0) !important;
    transition: none !important;
  }

  .fullscreen-section:hover .section-bg {
    transform: scale(1.0);
  }
}

/* =============================================
   LANDSCAPE MOBILE (short viewport)
   ============================================= */

@media (max-height: 500px) and (orientation: landscape) {
  .fullscreen-section {
    min-height: 100svh;
  }

  .section-content {
    padding-top: 70px;
    padding-bottom: 40px;
  }

  .hero-logo-img {
    width: min(200px, 40vw);
    margin-bottom: 12px;
  }

  .hero-tagline {
    margin-bottom: 16px;
  }

  .scroll-hint {
    display: none;
  }
}

/* =============================================
   COURSE SECTION (REGIONAL)
   ============================================= */

.course-section .section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 16px;
}

.course-section .section-desc {
  font-size: 1rem;
  max-width: 700px;
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  .course-section .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}
