@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- CUSTOM PROPERTIES & TOKENS --- */
:root {
  --color-bg-dark: #121110;
  --color-bg-card: rgba(26, 24, 23, 0.8);
  --color-bg-card-hover: rgba(38, 35, 33, 0.95);
  --color-primary: #e87722;
  --color-primary-hover: #ff8c3a;
  --color-primary-rgb: 232, 119, 34;
  --color-secondary: #f2b795;
  --color-accent: #c5a880;
  --color-accent-light: #dfcfb9;
  --color-text-light: #fdfdfd;
  --color-text-muted: #b5afaa;
  --color-text-dark: #1c1a19;
  --color-border: rgba(197, 168, 128, 0.25);
  --color-border-glow: rgba(232, 119, 34, 0.4);
  
  --font-headings: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  
  --blur-glass: blur(16px);
  --container-max: 1280px;
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset for sticky header */
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(197, 168, 128, 0.3);
  border-radius: 5px;
  border: 2px solid var(--color-bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p {
  font-weight: 300;
  color: var(--color-text-muted);
}

strong {
  font-weight: 600;
  color: var(--color-text-light);
}

/* --- LAYOUT UTILITIES --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

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

/* --- GRID SYSTEM --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* --- GLASSMORPHISM CARD --- */
.glass-card {
  background: var(--color-bg-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--color-border-glow);
  background: var(--color-bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
  gap: 10px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border: 1px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 119, 34, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.2);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(18, 17, 16, 0.85);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  background: rgba(12, 11, 10, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 60px;
  width: auto;
  transition: var(--transition-smooth);
}

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

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary);
}

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

.nav-link.active {
  color: var(--color-primary);
}

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

/* --- LANGUAGE SWITCHER --- */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 3px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 16px;
  transition: var(--transition-fast);
}

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

.lang-btn.active {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

/* --- MOBILE MENU TOGGLE --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(18, 17, 16, 0.98);
    backdrop-filter: var(--blur-glass);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transform: translateY(-120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }
  
  nav.open {
    transform: translateY(0);
  }
}

/* --- HERO SECTION --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(18, 17, 16, 0.4), rgba(18, 17, 16, 0.85)), 
              url('assets/hero_catering.png') no-repeat center center/cover;
  padding-top: 80px;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-tagline {
  font-family: var(--font-headings);
  font-size: 20px;
  font-style: italic;
  color: var(--color-secondary);
  margin-bottom: 12px;
  display: block;
}

.hero-title {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text-light);
}

.hero-title span {
  color: var(--color-primary);
}

.hero-desc {
  font-size: 16px;
  margin-bottom: 40px;
  color: var(--color-text-muted);
}

.hero-btns {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }
  .hero-tagline {
    font-size: 18px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- SECTION HEADERS --- */
.section-header {
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 0 auto;
}

/* --- ABOUT SECTION --- */
#about {
  background: linear-gradient(to bottom, #121110, #181615);
}

.about-img-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.about-img-container:hover .about-img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(232, 119, 34, 0.95);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  backdrop-filter: var(--blur-glass);
}

.about-badge span {
  display: block;
  text-align: center;
  color: var(--color-text-light);
}

.about-badge-yr {
  font-size: 20px;
  font-weight: 700;
}

.about-badge-txt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--color-accent-light);
}

.about-text p {
  margin-bottom: 20px;
}

/* --- QUALITY CODE / PHILOSOPHY --- */
#quality {
  background: #181615;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.quality-card {
  text-align: center;
  padding: 40px 24px;
}

.quality-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px auto;
  background: rgba(232, 119, 34, 0.15);
  border: 1px solid rgba(232, 119, 34, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 24px;
}

.quality-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-accent);
}

/* --- BUFFETS SECTION --- */
#buffets {
  background: linear-gradient(to bottom, #181615, #121110);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--color-primary-hover);
  color: var(--color-text-light);
}

.filter-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: 0 6px 16px rgba(232, 119, 34, 0.2);
}

.buffet-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.buffet-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.buffet-badge-type {
  font-size: 10px;
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid var(--color-accent);
  color: var(--color-accent-light);
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.buffet-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--color-text-light);
}

.buffet-desc {
  margin-bottom: 24px;
  flex-grow: 1;
}

.buffet-cta {
  width: 100%;
  margin-top: auto;
}

/* --- SERVICES SECTION --- */
#services {
  background: #121110;
  position: relative;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}

.service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
  z-index: 1;
}

.service-card:hover .service-bg {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(12, 11, 10, 0.95) 15%, rgba(12, 11, 10, 0.4) 60%, rgba(12, 11, 10, 0.1) 100%);
  z-index: 2;
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  z-index: 3;
}

.service-icon {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--color-text-light);
}

.service-content p {
  font-size: 13px;
}

/* --- CLIENTS & TESTIMONIALS --- */
#testimonials {
  background: linear-gradient(to bottom, #121110, #181615);
}

.embassy-wrapper {
  margin-top: 80px;
}

.embassy-title {
  text-align: center;
  font-size: 20px;
  color: var(--color-accent);
  margin-bottom: 40px;
  font-family: var(--font-headings);
  font-style: italic;
}

.embassy-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.embassy-badge {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.embassy-badge:hover {
  border-color: var(--color-primary);
  color: var(--color-text-light);
  background: rgba(232, 119, 34, 0.05);
  transform: translateY(-2px);
}

/* --- ENQUIRY / BOOKING SECTION --- */
#enquiry {
  background: #181615;
  border-top: 1px solid var(--color-border);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
  gap: 40px;
  align-items: start;
}

@media (max-width: 1024px) {
  .enquiry-grid {
    grid-template-columns: 1fr;
  }
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-light);
  transition: var(--transition-fast);
  outline: none;
  -webkit-appearance: auto;
  appearance: auto;
  pointer-events: all;
  cursor: pointer;
  position: relative;
  z-index: 1;
  width: 100%;
}

select.form-control {
  background-color: #1c1a19;
  color: #fdfdfd;
  cursor: pointer;
}

select.form-control option {
  background-color: #1c1a19;
  color: #fdfdfd;
}

input.form-control {
  cursor: text;
}

.form-control:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.08);
}

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

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  cursor: pointer;
}

/* Calculator Summary Box */
.calculator-box {
  position: sticky;
  top: 100px;
}

.calc-title {
  font-size: 22px;
  color: var(--color-accent-light);
  margin-bottom: 24px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
}

.calc-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.calc-item span:first-child {
  color: var(--color-text-muted);
}

.calc-item span:last-child {
  font-weight: 500;
  color: var(--color-text-light);
}

.calc-divider {
  border-top: 1px solid var(--color-border);
  margin: 16px 0;
}

.calc-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 8px;
}

.calc-total span:first-child {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}

.calc-total-val {
  font-size: 28px;
  font-family: var(--font-headings);
  font-weight: 700;
}

.voucher-badge {
  background: rgba(232, 119, 34, 0.1);
  border: 1px dashed var(--color-primary);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--color-secondary);
  text-align: center;
  margin-top: 24px;
}

/* --- MODAL DIALOG STYLE --- */
/* CRITICAL: Ensure dialog is completely hidden and non-interactive when closed */
dialog:not([open]) {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

dialog {
  background: rgba(18, 17, 16, 0.95);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  width: calc(100% - 32px);
  margin: auto;
  padding: 40px;
  color: var(--color-text-light);
  outline: none;
}

dialog::backdrop {
  background: rgba(10, 9, 8, 0.8);
  backdrop-filter: blur(8px);
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
}

.dialog-header h2 {
  font-size: 28px;
  color: var(--color-primary);
}

.dialog-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dialog-close:hover {
  color: var(--color-primary);
  transform: rotate(90deg);
}

.dialog-content h3 {
  font-size: 18px;
  color: var(--color-accent);
  margin: 20px 0 10px 0;
}

.dialog-menu-list {
  list-style: none;
}

.dialog-menu-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-muted);
}

.dialog-menu-item::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* --- FOOTER --- */
footer {
  background: #0d0c0b;
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px 0;
}

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

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

.footer-brand h3 {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  margin-bottom: 20px;
  max-width: 350px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contact p {
  font-size: 13px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact span.icon {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 11px;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

/* Hide sections only after JavaScript confirms that reveal handling is ready.
   If the script is blocked or fails, all website content remains readable. */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-preparing .reveal {
  transition: none;
}

.reveal-ready .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- STRUCTURED ENQUIRY FORM --- */
.enquiry-intro {
  max-width: 760px;
  margin: -10px auto 32px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.7;
}

.enquiry-form-card { padding: clamp(22px, 4vw, 42px); }

.form-section {
  min-width: 0;
  margin: 0 0 30px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid var(--color-border);
}

.form-section legend {
  width: 100%;
  margin-bottom: 22px;
  color: var(--color-accent-light);
  font-family: var(--font-headings);
  font-size: clamp(20px, 2.5vw, 25px);
  font-weight: 700;
}

.required-mark, .field-error { color: #ff8f80; }

.label-with-help {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.label-with-help .form-label { margin-bottom: 0; }

.info-button {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background: rgba(232, 119, 34, 0.1);
  color: var(--color-primary);
  cursor: help;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.info-button:hover,
.info-button:focus-visible,
.info-button[aria-expanded="true"] {
  background: var(--color-primary);
  color: #fff;
  outline: 3px solid rgba(232, 119, 34, 0.25);
  outline-offset: 2px;
}

.field-tooltip {
  position: absolute;
  z-index: 40;
  width: min(320px, calc(100vw - 40px));
  padding: 13px 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #211e1c;
  box-shadow: var(--shadow-md);
  color: var(--color-text-light);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 8px 0 20px;
}

.checkbox-label, .compact-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.45;
}

.checkbox-label input, .compact-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.compact-check { margin-top: 9px; font-size: 13px; }
.conditional-panel[hidden] { display: none; }
.conditional-panel { animation: formReveal 180ms ease-out; }

@keyframes formReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.field-error {
  min-height: 20px;
  margin: -10px 0 10px;
  font-size: 13px;
}

.form-control[aria-invalid="true"] {
  border-color: #ff8f80;
  box-shadow: 0 0 0 3px rgba(255, 143, 128, 0.12);
}

.safety-note, .privacy-note {
  margin: 2px 0 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--color-primary);
  background: rgba(232, 119, 34, 0.06);
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.consent-section { border-bottom: 0; padding-bottom: 0; }
.consent-label { font-weight: 600; }

.form-status {
  display: none;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  line-height: 1.55;
}

.form-status.is-error, .form-status.is-success { display: block; }
.form-status.is-error { border: 1px solid rgba(255, 143, 128, 0.35); background: rgba(180, 35, 24, 0.14); color: #ffd0ca; }
.form-status.is-success { border: 1px solid rgba(101, 194, 142, 0.35); background: rgba(35, 107, 70, 0.18); color: #c9f2db; }
.submit-enquiry { width: 100%; margin-top: 4px; }

.enquiry-guide {
  position: sticky;
  top: 110px;
  padding: 30px;
}

.guide-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-guide h3 { margin-bottom: 22px; color: var(--color-accent-light); font-family: var(--font-headings); font-size: 25px; }
.enquiry-guide ol { display: grid; gap: 18px; margin: 0 0 24px; padding-left: 22px; color: var(--color-text-muted); line-height: 1.55; }
.enquiry-guide li::marker { color: var(--color-primary); font-weight: 700; }
.guide-note { padding: 16px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); color: var(--color-text-muted); font-size: 13px; line-height: 1.55; }

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 1024px) {
  .enquiry-guide { position: static; order: -1; }
}

@media (max-width: 600px) {
  .checkbox-grid { grid-template-columns: 1fr; }
  .enquiry-form-card { padding: 20px 16px; }
  .field-tooltip { position: fixed; right: 16px; bottom: 16px; left: 16px !important; width: auto; }
}
