/* 
  =========================================
  Hone Clinic - Premium Design System (CSS)
  Developer: เดฟเป็ด ไอที (DavePed IT)
  =========================================
*/

/* 1. Reset & Setup */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Prompt:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Color Palette - Royal Navy & Champagne Gold */
  --primary-navy: #0A1931;       /* สีน้ำเงินเข้มขรึม แสดงถึงความปลอดภัยและความน่าเชื่อถือทางการแพทย์ */
  --primary-navy-light: #15305B;
  --accent-gold: #C5A880;        /* สีทองแชมเปญ ให้ความรู้สึกพรีเมียม หรูหรา */
  --accent-gold-hover: #B4966E;
  --bg-light: #F9F9FB;           /* พื้นหลังสะอาดตา สบายตา */
  --bg-white: #FFFFFF;
  --text-dark: #2B2D42;          /* สีตัวอักษรหลัก อ่านง่าย ไม่ดำสนิทเกินไป */
  --text-muted: #6C757D;         /* สีตัวอักษรรอง */
  --border-color: #E2E8F0;
  
  /* Fonts */
  --font-en: 'Outfit', sans-serif;
  --font-th: 'Prompt', sans-serif;
  
  /* Layout & Spacing */
  --container-max-width: 1200px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-th);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-th);
  color: var(--primary-navy);
  font-weight: 600;
  line-height: 1.3;
}

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

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

/* 2. Navigation Header (Glassmorphism) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(197, 168, 128, 0.3);
  box-shadow: 0 4px 20px rgba(10, 25, 49, 0.05);
}

header.scrolled .nav-logo {
  color: var(--primary-navy);
}

header.scrolled .nav-links a {
  color: var(--primary-navy);
}

header.scrolled .nav-links a:hover {
  color: var(--accent-gold);
}

header.scrolled .btn-nav-cta {
  color: #FFFFFF !important;
}

header.scrolled .btn-nav-cta:hover {
  color: #FFFFFF !important;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(10, 25, 49, 0.08);
  background: #FFFFFF;
}

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

.logo-main {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-navy);
}

.logo-main span {
  color: var(--accent-gold);
}

.logo-sub {
  font-family: var(--font-th);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-navy);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

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

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  border: 1px solid var(--primary-navy);
}

.btn-primary:hover {
  background-color: var(--primary-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 25, 49, 0.15);
}

@keyframes goldWave {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes auraShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-accent {
  position: relative;
  z-index: 1;
  background: linear-gradient(270deg, #8a6f27, #c5a03c, #f9d976, #ffffff, #f9d976, #c5a03c, #8a6f27) !important;
  background-size: 200% 200% !important;
  color: #121212 !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  animation: goldWave 4s linear infinite !important;
  border: 1px solid rgba(249, 217, 118, 0.8) !important;
}

.btn-accent::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(270deg, #8a6f27, #f9d976, #ffffff, #c5a03c, #8a6f27) !important;
  background-size: 200% 200% !important;
  border-radius: inherit;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.85;
  animation: auraShift 3s linear infinite !important;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.btn-accent:hover {
  transform: translateY(-3px) scale(1.02) !important;
}

.btn-accent:hover::before {
  filter: blur(14px);
  opacity: 1;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
}

.btn-outline:hover {
  background-color: var(--primary-navy);
  color: #FFFFFF;
}

.btn-nav-cta {
  position: relative;
  z-index: 1;
  background: linear-gradient(270deg, #8a6f27, #c5a03c, #f9d976, #ffffff, #f9d976, #c5a03c, #8a6f27) !important;
  background-size: 200% 200% !important;
  color: #121212 !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  animation: goldWave 4s linear infinite !important;
  border: 1px solid rgba(249, 217, 118, 0.8) !important;
  font-size: 14px;
  padding: 10px 20px;
}

.btn-nav-cta::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(270deg, #8a6f27, #f9d976, #ffffff, #c5a03c, #8a6f27) !important;
  background-size: 200% 200% !important;
  border-radius: inherit;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.85;
  animation: auraShift 3s linear infinite !important;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.btn-nav-cta:hover {
  transform: translateY(-2px) scale(1.02) !important;
}

.btn-nav-cta:hover::before {
  filter: blur(14px);
  opacity: 1;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-navy);
  transition: var(--transition-smooth);
}

/* 3. Hero Section (Conversion-Optimized) */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(135deg, rgba(245, 247, 250, 0.95) 30%, rgba(255, 255, 255, 0.7) 100%),
              url('assets/marble_bg.png') no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-tagline {
  display: inline-block;
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--primary-navy-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--accent-gold);
  background: linear-gradient(120deg, var(--accent-gold) 0%, var(--primary-navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(10, 25, 49, 0.1);
  padding-top: 24px;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-navy);
  font-family: var(--font-en);
}

.stat-number span {
  color: var(--accent-gold);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-bg {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 750px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--bg-white);
  transition: var(--transition-smooth);
}

.hero-image:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Floating badge */
.floating-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  border: 1px solid rgba(197, 168, 128, 0.3);
  animation: float 4s ease-in-out infinite;
}

.badge-icon {
  background: rgba(197, 168, 128, 0.2);
  color: var(--primary-navy);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-info h4 {
  font-size: 14px;
  font-weight: 600;
}

.badge-info p {
  font-size: 12px;
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* 4. Section Commons */
.section {
  padding: 100px 0;
}

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

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-subtitle {
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
}

/* 5. Services Section (Interactive Grid) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(10, 25, 49, 0.08);
  border-color: rgba(197, 168, 128, 0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background-color: var(--primary-navy);
}

.service-card:hover .service-icon svg {
  stroke: var(--accent-gold);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-navy);
  stroke-width: 1.5;
  fill: none;
  transition: var(--transition-smooth);
}

.service-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-price {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-label {
  font-size: 13px;
  color: var(--text-muted);
}

.price-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-navy);
  font-family: var(--font-en);
}

.price-value span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-th);
}

/* 6. Why Choose Us (Credibility & Doctor Profile) */
.why-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.why-image-wrapper {
  position: relative;
}

.why-image {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 4px solid var(--bg-white);
}

.doctor-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  border-left: 4px solid var(--accent-gold);
}

.doctor-badge h4 {
  color: #FFFFFF;
  font-size: 16px;
}

.doctor-badge p {
  color: var(--accent-gold);
  font-size: 13px;
}

.why-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
}

.why-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(197, 168, 128, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-gold);
  stroke-width: 2;
  fill: none;
}

.why-item-text h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.why-item-text p {
  font-size: 14px;
  color: var(--text-muted);
}

/* 7. Testimonials & Before/After */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.gallery-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
  border: 1px solid var(--border-color);
}

.ba-slider {
  position: relative;
  display: flex;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.ba-side {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.ba-side::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.ba-before {
  border-right: 2px solid #FFFFFF;
}

.ba-before::after {
  right: 12px;
}

.ba-after::after {
  left: 12px;
}

.gallery-info {
  padding: 24px;
}

.gallery-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.gallery-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* 8. Booking Section with Form (Conversion focus) */
.booking-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #050E1A 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.booking-section::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.booking-section .section-title, 
.booking-section .section-desc {
  color: #FFFFFF;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.booking-info h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 20px;
}

.booking-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-size: 16px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.channel-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.channel-details h4 {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
}

.channel-details p {
  color: var(--accent-gold);
  font-size: 14px;
  margin-bottom: 0;
}

/* High Contrast Readable Form for Joint Patients */
.booking-card {
  background: #FFFFFF;
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(197, 168, 128, 0.3);
}

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

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

.form-label {
  display: block;
  font-size: 14px;
  color: var(--primary-navy);
  margin-bottom: 8px;
  font-weight: 600; /* ตัวหนาเพิ่มความชัดเจน */
}

.form-input {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: var(--border-radius-sm);
  padding: 14px 16px; /* ขยายขนาดช่องเพื่อให้กดและมองง่าย */
  color: var(--text-dark);
  font-size: 15px;
  font-family: var(--font-th);
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

.form-input::placeholder {
  color: #64748B; /* สีเข้มขึ้นให้อ่านง่าย */
}

select.form-input option {
  background-color: #FFFFFF;
  color: var(--text-dark);
}

/* PDPA Consent Checkbox */
.pdpa-group {
  margin: 24px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px; /* ใหญ่ขึ้นเล็กน้อย */
  color: var(--text-dark); /* ข้อความสีเข้ม */
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input {
  margin-top: 4px;
  width: 16px;
  height: 16px; /* ขยายกล่อง checkbox */
  cursor: pointer;
  accent-color: var(--accent-gold);
}

.checkbox-label a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.form-error-msg {
  color: #FF5A5F;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.form-error .form-input {
  border-color: #FF5A5F;
}

.form-error .form-error-msg {
  display: block;
}

/* 9. FAQ Section (Accordion) */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-navy);
  font-family: var(--font-th);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-navy);
  stroke-width: 2;
  fill: none;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  stroke: var(--accent-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer-inner {
  border-top-color: var(--border-color);
}

/* 10. Footer Section */
footer {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  padding: 60px 0 30px;
  border-top: 4px solid var(--accent-gold);
}

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

.footer-info h3 {
  color: #FFFFFF;
  font-family: var(--font-en);
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-info h3 span {
  color: var(--accent-gold);
}

.footer-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4,
.footer-map-column h4 {
  color: var(--accent-gold);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Modal for Booking Success */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 49, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.success-modal {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 48px 40px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(197, 168, 128, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent-gold);
}

.success-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.success-modal h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.success-modal p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* 11. Responsive Styles (Mobile-First Adjustments) */
@media (max-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    width: 100%;
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-image-wrapper {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .booking-info {
    text-align: center;
  }
  
  .contact-channels {
    align-items: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-info p {
    margin: 0 auto 20px;
  }
}

@media (max-width: 768px) {
  /* Navigation mobile menu */
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    align-items: stretch;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links a {
    color: var(--primary-navy);
    font-size: 18px;
    display: block;
    padding: 10px 0;
    text-align: center;
  }
  
  .btn-nav-cta {
    width: 100%;
    text-align: center;
  }
  
  header.scrolled .nav-links {
    background-color: var(--primary-navy);
  }
  
  /* Hero Content scaling */
  .hero-content h1 {
    font-size: 36px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .booking-card {
    padding: 24px;
  }
}
