/* ==========================================================================
   DC Clinic - Main Stylesheet
   Bootstrap 5.3 Custom Theme
   ==========================================================================

   Table of Contents:
   1. CSS Variables (Design Tokens)
   2. Base Typography
   3. Layout Helpers
   4. Header & Navigation
   5. Hero Section
   6. Buttons
   7. Cards
   8. Service Cards
   9. Testimonials
   10. Founder / Stats Section
   11. CTA Section
   12. Footer
   13. Forms
   14. FAQ Accordion
   15. Back To Top
   16. Utilities
   17. Material Symbols
   18. Animations
   ========================================================================== */

/* ==========================================================================
   1. CSS Variables (Design Tokens)
   ========================================================================== */
:root {
  /* Colors - Navy & Gold */
  --dc-navy-deep: #0A192F;
  --dc-navy-dark: #050b14;
  --dc-primary: #000613;
  --dc-gold: #C5A059;
  --dc-gold-light: #D4AF37;
  --dc-gold-soft: #E2CF9F;
  --dc-secondary: #735c00;

  /* Surfaces */
  --dc-bg: #f7f9fb;
  --dc-surface: #fcf9f8;
  --dc-surface-low: #f6f3f2;
  --dc-surface-container: #f0eded;
  --dc-surface-high: #eae7e7;
  --dc-surface-highest: #e5e2e1;
  --dc-surface-variant: #e5e2e1;

  /* Text */
  --dc-on-surface: #191c1e;
  --dc-on-surface-variant: #43474e;
  --dc-outline: #74777f;
  --dc-outline-variant: #c4c6cf;

  /* Containers */
  --dc-primary-container: #001f3f;
  --dc-on-primary: #ffffff;
  --dc-on-primary-container: #6f88ad;

  /* Error */
  --dc-error: #ba1a1a;

  /* Typography — PRD: Hanken Grotesk (Primary), Be Vietnam Pro (Secondary) */
  --dc-font-body: 'Be Vietnam Pro', 'Noto Sans Thai', sans-serif;
  --dc-font-headline: 'Hanken Grotesk', 'Be Vietnam Pro', 'Noto Sans Thai', sans-serif;
  --dc-font-mono: 'Hanken Grotesk', monospace;

  /* Font Sizes */
  --dc-text-caption: 12px;
  --dc-text-label: 14px;
  --dc-text-body: 16px;
  --dc-text-body-lg: 18px;
  --dc-text-headline-md: 24px;
  --dc-text-headline-lg: 32px;
  --dc-text-display: 48px;

  /* Spacing */
  --dc-space-xs: 8px;
  --dc-space-sm: 16px;
  --dc-space-md: 24px;
  --dc-space-lg: 40px;
  --dc-space-xl: 80px;
  --dc-gutter: 24px;
  --dc-container-max: 1200px;

  /* Border Radius — PRD: Standardized 4px corner roundness */
  --dc-radius-sm: 4px;
  --dc-radius: 4px;
  --dc-radius-lg: 4px;
  --dc-radius-xl: 4px;
  --dc-radius-2xl: 4px;
  --dc-radius-full: 9999px;

  /* Shadows */
  --dc-shadow-sm: 0 4px 20px rgba(10, 25, 47, 0.04);
  --dc-shadow-md: 0 10px 30px -10px rgba(0, 31, 63, 0.08);
  --dc-shadow-lg: 0 10px 40px -15px rgba(0, 31, 63, 0.08);
  --dc-shadow-xl: 0 20px 40px rgba(0, 31, 63, 0.08);

  /* Transitions */
  --dc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --dc-transition-slow: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);

  /* Header height */
  --dc-header-height: 80px;
}

/* ==========================================================================
   2. Base Typography
   ========================================================================== */
html {
  scroll-padding-top: calc(var(--dc-header-height) + 16px);
}

body {
  font-family: var(--dc-font-body);
  background-color: var(--dc-bg);
  color: var(--dc-on-surface);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  letter-spacing: -0.011em;
  padding-top: var(--dc-header-height);
}

h1, h2, h3, h4, h5, h6, .headline {
  font-family: var(--dc-font-headline);
  color: var(--dc-navy-deep);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: var(--dc-text-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: var(--dc-text-headline-lg);
  font-weight: 600;
}

h3 {
  font-size: var(--dc-text-headline-md);
  font-weight: 600;
}

p {
  line-height: 1.6;
}

.label-caps {
  font-family: var(--dc-font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: var(--dc-text-caption);
  font-weight: 500;
}

.text-gold {
  color: var(--dc-gold) !important;
}

.text-navy {
  color: var(--dc-navy-deep) !important;
}

.text-muted-dc {
  color: var(--dc-on-surface-variant) !important;
}

/* ==========================================================================
   3. Layout Helpers
   ========================================================================== */
.dc-container {
  max-width: var(--dc-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--dc-gutter);
  padding-right: var(--dc-gutter);
}

.dc-section {
  padding-top: var(--dc-space-xl);
  padding-bottom: var(--dc-space-xl);
}

.dc-section--surface-low {
  background-color: var(--dc-surface-low);
}

.dc-section--navy {
  background-color: var(--dc-navy-deep);
  color: var(--dc-on-primary);
}

.dc-section--navy h1,
.dc-section--navy h2,
.dc-section--navy h3,
.dc-section--navy h4,
.dc-section--navy h5,
.dc-section--navy h6 {
  color: var(--dc-on-primary);
}

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

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

/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */
.dc-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--dc-header-height);
  z-index: 1030;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 31, 63, 0.05);
  transition: var(--dc-transition);
}

.dc-header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--dc-shadow-sm);
}

.dc-header--solid {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 31, 63, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dc-header--solid .dc-nav__link {
  color: var(--dc-on-surface-variant);
}

.dc-header--solid .dc-nav__link:hover,
.dc-header--solid .dc-nav__link.active {
  color: var(--dc-navy-deep);
}

.dc-header--solid .dc-logo__img {
  filter: none;
}

.dc-header--solid .dc-header__icon-btn {
  color: var(--dc-navy-deep);
}

.dc-header--solid .dc-menu-toggle span {
  background: var(--dc-navy-deep);
}

.dc-header--solid .btn-dc-primary {
  background: var(--dc-navy-deep);
  color: #fff;
}

.dc-header__inner {
  max-width: var(--dc-container-max);
  margin: 0 auto;
  padding: 0 var(--dc-gutter);
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dc-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.dc-logo__img {
  height: 40px;
  width: auto;
  display: block;
}

.dc-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

@media (min-width: 1024px) {
  .dc-nav {
    display: flex;
  }
}

.dc-nav__link {
  font-size: var(--dc-text-label);
  font-weight: 600;
  color: var(--dc-on-surface-variant);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.dc-nav__link:hover,
.dc-nav__link.active {
  color: var(--dc-navy-deep);
}

.dc-nav__link.active {
  border-bottom: 2px solid var(--dc-navy-deep);
  padding-bottom: 4px;
}

/* Mega Menu Dropdown */
.dc-nav__item--dropdown {
  position: relative;
  padding: 20px 0;
}

.dc-nav__item--dropdown > .dc-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dc-nav__item--dropdown > .dc-nav__link .material-symbols-outlined {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.dc-nav__item--dropdown:hover > .dc-nav__link .material-symbols-outlined {
  transform: rotate(180deg);
}

.dc-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: var(--dc-radius-xl);
  box-shadow: var(--dc-shadow-xl);
  border: 1px solid var(--dc-outline-variant);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: var(--dc-transition);
  z-index: 60;
}

.dc-nav__item--dropdown:hover .dc-mega-menu,
.dc-nav__item--dropdown:focus-within .dc-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Mega Menu - Surgery (3 columns text-only, 1000px) */
.dc-mega-menu--surgery {
  width: 1000px;
}

.dc-mega-menu__body {
  padding: 32px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.dc-mega-menu--surgery .dc-mega-menu__body {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

/* Mega Menu Text Links (for surgery with many items) */
.dc-mega-menu__text-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dc-mega-menu__text-link {
  display: block;
  font-size: var(--dc-text-label);
  color: var(--dc-on-surface-variant);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--dc-radius);
  transition: background 0.2s ease, color 0.2s ease;
}

.dc-mega-menu__text-link:hover {
  background: var(--dc-surface-low);
  color: var(--dc-navy-deep);
}

/* Mega Menu - Skin (2 columns, 800px) */
.dc-mega-menu--skin {
  width: 800px;
}

.dc-mega-menu--skin .dc-mega-menu__body {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Simple Dropdown (for PT, Service Info) */
.dc-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: var(--dc-radius-lg);
  box-shadow: var(--dc-shadow-xl);
  border: 1px solid var(--dc-outline-variant);
  padding: 12px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--dc-transition);
  z-index: 60;
}

.dc-nav__item--dropdown:hover .dc-dropdown,
.dc-nav__item--dropdown:focus-within .dc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dc-dropdown a {
  display: block;
  font-size: var(--dc-text-label);
  color: var(--dc-on-surface-variant);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--dc-radius);
  transition: background 0.2s ease, color 0.2s ease;
}

.dc-dropdown a:hover {
  background: var(--dc-surface-low);
  color: var(--dc-navy-deep);
}

/* Mega Menu - Reviews (image card grid, 760px) */
.dc-mega-menu--reviews {
  width: 760px;
}

.dc-mega-menu--reviews .dc-mega-menu__body {
  grid-template-columns: 1fr;
  gap: 0;
}

/* Reviews Mega Menu - Category Image Cards */
.dc-mega-menu__reviews-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 8px 0 0;
}

.dc-mega-menu__reviews-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
  overflow: hidden;
}

.dc-mega-menu__reviews-tab:hover {
  border-color: var(--dc-gold);
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.15);
  transform: translateY(-2px);
}

.dc-mega-menu__reviews-tab img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  display: block;
}

.dc-mega-menu__reviews-tab span {
  display: block;
  padding: 8px 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--dc-navy-deep);
  white-space: nowrap;
}

.dc-mega-menu__reviews-tab:hover span {
  color: var(--dc-gold);
}

/* Mega Menu Column Title */
.dc-mega-menu__col-title {
  font-size: var(--dc-text-label);
  font-weight: 600;
  color: var(--dc-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding-bottom: 8px;
  margin-bottom: 24px;
}

/* Mega Menu Items with Image Thumbnails */
.dc-mega-menu__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dc-mega-menu__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px;
  border-radius: var(--dc-radius-lg);
  text-decoration: none;
  transition: background 0.2s ease;
}

.dc-mega-menu__item:hover {
  background: var(--dc-surface-low);
}

.dc-mega-menu__item-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--dc-radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.dc-mega-menu__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-mega-menu__item-title {
  font-size: var(--dc-text-label);
  font-weight: 600;
  color: var(--dc-navy-deep);
  margin: 0;
  transition: color 0.2s ease;
}

.dc-mega-menu__item:hover .dc-mega-menu__item-title {
  color: var(--dc-gold);
}

.dc-mega-menu__item-sub {
  font-size: 10px;
  color: var(--dc-on-surface-variant);
  margin: 2px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Mega Menu Promo Card (3rd column in Surgery) */
.dc-mega-menu__promo {
  background: var(--dc-surface-low);
  border-radius: var(--dc-radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.dc-mega-menu__promo-icon {
  font-size: 40px !important;
  color: var(--dc-gold);
  margin-bottom: 16px;
}

.dc-mega-menu__promo-title {
  font-family: var(--dc-font-headline);
  font-size: var(--dc-text-headline-md);
  font-weight: 600;
  color: var(--dc-navy-deep);
  margin-bottom: 8px;
}

.dc-mega-menu__promo-desc {
  font-size: 12px;
  color: var(--dc-on-surface-variant);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Mega Menu Reviews */
.dc-mega-menu__reviews-header {
  font-size: var(--dc-text-label);
  font-weight: 600;
  color: var(--dc-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: 1px solid var(--dc-outline-variant);
  padding-bottom: 8px;
  margin-bottom: 24px;
}

.dc-mega-menu__reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dc-mega-menu__review-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-radius: var(--dc-radius-xl);
  border: 1px solid transparent;
  text-decoration: none;
  transition: var(--dc-transition);
}

.dc-mega-menu__review-card:hover {
  border-color: rgba(197, 160, 89, 0.3);
  background: var(--dc-surface);
}

.dc-mega-menu__review-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--dc-radius-xl);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.dc-mega-menu__review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.dc-mega-menu__review-card:hover .dc-mega-menu__review-thumb img {
  filter: grayscale(0%);
}

.dc-mega-menu__review-card h5 {
  font-size: var(--dc-text-label);
  font-weight: 600;
  color: var(--dc-navy-deep);
  margin-bottom: 4px;
}

.dc-mega-menu__review-card p {
  font-size: 10px;
  color: var(--dc-on-surface-variant);
  margin: 0;
  line-height: 1.5;
}

.dc-mega-menu__reviews-footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.dc-mega-menu__reviews-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dc-on-surface-variant);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.dc-mega-menu__reviews-footer a:hover {
  color: var(--dc-gold);
}

.dc-mega-menu__reviews-footer .material-symbols-outlined {
  font-size: 18px;
  flex-shrink: 0;
}

/* Reviews Mega Menu - rv-mm classes */
.dc-rv-mm__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dc-rv-mm__col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--dc-text-label);
  font-weight: 600;
  color: var(--dc-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.dc-rv-mm__col-title .material-symbols-outlined {
  font-size: 18px;
}

.dc-rv-mm__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--dc-radius-lg);
  text-decoration: none;
  font-size: var(--dc-text-body);
  color: var(--dc-navy-deep);
  transition: background 0.2s ease;
}

.dc-rv-mm__link:hover {
  background: var(--dc-surface-low);
}

.dc-rv-mm__link-icon {
  font-size: 16px;
  color: var(--dc-gold);
}

.dc-rv-mm__count {
  font-size: var(--dc-text-label);
  font-weight: 600;
  color: var(--dc-on-surface-variant);
  background: var(--dc-surface-low);
  padding: 2px 10px;
  border-radius: 100px;
}

.dc-rv-mm__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--dc-outline-variant);
}

.dc-rv-mm__footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--dc-text-label);
  font-weight: 600;
  color: var(--dc-navy-deep);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--dc-radius-lg);
  transition: background 0.2s ease;
}

.dc-rv-mm__footer-link:hover {
  background: var(--dc-surface-low);
}

.dc-rv-mm__footer-link .material-symbols-outlined {
  font-size: 16px;
  color: var(--dc-gold);
}

/* Mega Menu Footer */
.dc-mega-menu__footer {
  background: var(--dc-navy-deep);
  padding: 12px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dc-mega-menu__footer-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.dc-mega-menu__footer-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--dc-gold);
  text-decoration: none;
}

.dc-mega-menu__footer-link:hover {
  text-decoration: underline;
}

/* Header CTA */
.dc-header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Header Icon Buttons */
.dc-header__icon-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: var(--dc-navy-deep);
  transition: background 0.2s ease, transform 0.1s ease;
}

.dc-header__icon-btn:hover {
  background: var(--dc-surface-variant);
  color: var(--dc-gold);
}

.dc-header__icon-btn:active {
  transform: scale(0.9);
}

@media (min-width: 768px) {
  .dc-header__icon-btn {
    display: flex;
  }
}

/* Language dropdown */
.dc-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--dc-outline-variant);
  border-radius: var(--dc-radius-lg);
  box-shadow: var(--dc-shadow-lg);
  padding: 8px;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--dc-transition);
  z-index: 70;
}

.dc-lang-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dc-lang-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 8px 12px;
  font-size: var(--dc-text-label);
  font-weight: 600;
  color: var(--dc-on-surface-variant);
  cursor: pointer;
  border-radius: var(--dc-radius);
  transition: background 0.2s ease;
}

.dc-lang-dropdown button:hover,
.dc-lang-dropdown button.active {
  background: var(--dc-surface-low);
  color: var(--dc-navy-deep);
}

.dc-header__lang-wrapper {
  position: relative;
}

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

@media (min-width: 1025px) {
  .dc-menu-toggle {
    display: none;
  }
}

.dc-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dc-navy-deep);
  transition: var(--dc-transition);
}

.dc-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.dc-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.dc-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu Drawer — replaced by enterprise.css new drawer */
/* Old styles removed to prevent conflicts */

@media (min-width: 1025px) {
  .dc-mobile-menu {
    display: none;
  }
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.dc-hero {
  position: relative;
  min-height: calc(100vh - var(--dc-header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dc-navy-deep);
}

.dc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--dc-navy-deep);
}

.dc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
}

.dc-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 60px 0;
}

.dc-hero__label {
  color: var(--dc-gold);
  margin-bottom: 16px;
  display: block;
}

.dc-hero__title {
  margin-bottom: 32px;
}

.dc-hero__desc {
  font-size: var(--dc-text-body-lg);
  color: var(--dc-on-surface-variant);
  max-width: 512px;
  margin-bottom: 48px;
}

.dc-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.dc-hero__image {
  display: none;
}

@media (min-width: 1024px) {
  .dc-hero__image {
    display: flex;
    justify-content: flex-end;
  }
}

.dc-hero__image-card {
  position: relative;
  width: 500px;
  height: 600px;
  border-radius: var(--dc-radius);
  overflow: hidden;
  box-shadow: var(--dc-shadow-xl);
  border: 4px solid #fff;
}

.dc-hero__image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-hero__badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: var(--dc-radius);
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: var(--dc-shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.dc-hero__badge-icon {
  width: 48px;
  height: 48px;
  background: var(--dc-navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */
.btn-dc-primary {
  background-color: var(--dc-navy-deep);
  color: var(--dc-on-primary);
  border: none;
  padding: 12px 24px;
  font-family: var(--dc-font-body);
  font-size: var(--dc-text-label);
  font-weight: 600;
  border-radius: 9999px;
  transition: var(--dc-transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-dc-primary:hover {
  background-color: #1a2a44;
  color: #fff;
  opacity: 0.9;
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.15);
}

.btn-dc-outline {
  background: transparent;
  border: 1px solid var(--dc-navy-deep);
  color: var(--dc-navy-deep);
  padding: 12px 24px;
  font-family: var(--dc-font-body);
  font-size: var(--dc-text-label);
  font-weight: 600;
  border-radius: var(--dc-radius);
  transition: var(--dc-transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-dc-outline:hover {
  background-color: var(--dc-surface-low);
  color: var(--dc-navy-deep);
}

.btn-dc-gold {
  background-color: var(--dc-gold);
  color: var(--dc-navy-deep);
  border: none;
  padding: 12px 24px;
  font-family: var(--dc-font-body);
  font-size: var(--dc-text-label);
  font-weight: 600;
  border-radius: var(--dc-radius);
  transition: var(--dc-transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-dc-gold:hover {
  filter: brightness(1.1);
  color: var(--dc-navy-deep);
  transform: translateY(-1px);
}

.btn-dc-ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 12px 24px;
  font-family: var(--dc-font-body);
  font-size: var(--dc-text-label);
  font-weight: 600;
  border-radius: var(--dc-radius);
  transition: var(--dc-transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-dc-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-dc-lg {
  padding: 16px 40px;
  font-size: var(--dc-text-body);
}

.btn-dc-sm {
  padding: 8px 16px;
  font-size: var(--dc-text-caption);
  min-height: 36px;
}

.btn-dc-full {
  width: 100%;
}

.btn-dc-ghost {
  background: transparent;
  border: 1px solid var(--dc-outline-variant);
  color: var(--dc-on-surface);
  padding: 12px 24px;
  font-family: var(--dc-font-body);
  font-size: var(--dc-text-label);
  font-weight: 600;
  border-radius: var(--dc-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--dc-transition);
  cursor: pointer;
}

.btn-dc-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--dc-navy-deep);
}

/* ==========================================================================
   7. Cards
   ========================================================================== */
.dc-card {
  background: #fff;
  border: 1px solid rgba(196, 198, 207, 0.3);
  border-radius: var(--dc-radius);
  padding: 40px;
  transition: var(--dc-transition);
  height: 100%;
}

.dc-card:hover {
  border-color: rgba(197, 160, 89, 0.5);
  box-shadow: var(--dc-shadow-lg);
}

.dc-card__icon {
  width: 64px;
  height: 64px;
  background: var(--dc-surface-low);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--dc-radius);
  color: var(--dc-gold);
  margin-bottom: 32px;
  transition: var(--dc-transition);
}

.dc-card:hover .dc-card__icon {
  background: var(--dc-gold);
  color: #fff;
}

.dc-card__icon .material-symbols-outlined {
  font-size: 32px;
}

/* ==========================================================================
   8. Service Cards (Image Overlay)
   ========================================================================== */
.dc-service-card {
  position: relative;
  border-radius: var(--dc-radius);
  overflow: hidden;
  box-shadow: var(--dc-shadow-sm);
  height: 450px;
}

.dc-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.dc-service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.2) 60%, transparent 100%);
}

.dc-service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 48px;
  width: 100%;
}

.dc-service-card__content h3 {
  color: #fff;
  margin-bottom: 12px;
}

.dc-service-card__content p {
  color: rgba(255, 255, 255, 0.8);
}

.dc-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: var(--dc-text-label);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
  transition: border-color 0.2s ease;
}

.dc-service-card__link:hover {
  color: #fff;
  border-bottom-color: var(--dc-gold);
}

/* Package Card */
.dc-package-card {
  background: #fff;
  border: 1px solid var(--dc-outline-variant);
  border-radius: var(--dc-radius);
  overflow: hidden;
  box-shadow: var(--dc-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--dc-transition);
  height: 100%;
}

.dc-package-card:hover {
  box-shadow: var(--dc-shadow-lg);
}

.dc-package-card__image {
  position: relative;
  height: 288px;
  overflow: hidden;
}

.dc-package-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dc-package-card:hover .dc-package-card__image img {
  transform: scale(1.05);
}

.dc-package-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  font-family: var(--dc-font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--dc-radius-sm);
}

.dc-package-card__badge--popular {
  background: var(--dc-navy-deep);
  color: #fff;
}

.dc-package-card__badge--value {
  background: var(--dc-gold);
  color: var(--dc-navy-deep);
}

.dc-package-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dc-package-card__title {
  font-family: var(--dc-font-headline);
  font-size: var(--dc-text-headline-md);
  font-weight: 600;
  color: var(--dc-navy-deep);
}

.dc-package-card__price {
  font-family: var(--dc-font-headline);
  font-size: var(--dc-text-headline-md);
  font-weight: 600;
  color: var(--dc-gold);
  margin: 8px 0 16px;
}

.dc-package-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.dc-package-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--dc-text-body);
}

.dc-package-card__features li .material-symbols-outlined {
  color: var(--dc-gold);
  font-size: 18px;
  font-variation-settings: 'FILL' 1;
  margin-top: 2px;
}

/* ==========================================================================
   9. Testimonials
   ========================================================================== */
.dc-testimonial {
  background: var(--dc-surface-low);
  padding: 32px;
  border-radius: var(--dc-radius);
  position: relative;
  height: 100%;
}

.dc-testimonial__quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 64px;
  color: rgba(10, 25, 47, 0.05);
}

.dc-testimonial__stars {
  display: flex;
  gap: 4px;
  color: var(--dc-gold);
  margin-bottom: 24px;
}

.dc-testimonial__stars .material-symbols-outlined {
  font-size: 16px;
  font-variation-settings: 'FILL' 1;
}

.dc-testimonial__text {
  font-style: italic;
  color: var(--dc-on-surface);
  margin-bottom: 32px;
}

.dc-testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dc-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--dc-outline-variant);
  flex-shrink: 0;
}

.dc-testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-testimonial__name {
  font-weight: 700;
  color: var(--dc-navy-deep);
  font-size: 14px;
}

.dc-testimonial__role {
  font-size: 12px;
  color: var(--dc-on-surface-variant);
}

/* Rating Badge */
.dc-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dc-surface-low);
  padding: 8px 24px;
  border-radius: var(--dc-radius-full);
  border: 1px solid rgba(196, 198, 207, 0.3);
}

.dc-rating-badge__score {
  font-weight: 700;
  color: var(--dc-navy-deep);
}

.dc-rating-badge__stars {
  display: flex;
  color: var(--dc-gold);
}

.dc-rating-badge__stars .material-symbols-outlined {
  font-size: 16px;
  font-variation-settings: 'FILL' 1;
}

/* ==========================================================================
   10. Founder / Stats Section
   ========================================================================== */
.dc-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

@media (min-width: 768px) {
  .dc-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dc-stat__value {
  font-size: 24px;
  font-weight: 700;
  color: var(--dc-gold);
}

.dc-stat__label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--dc-font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dc-founder-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(197, 160, 89, 0.3);
  margin: 0 auto 32px;
}

.dc-founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   11. CTA Section
   ========================================================================== */
.dc-cta {
  background: var(--dc-navy-deep);
  padding: 80px var(--dc-gutter);
  text-align: center;
}

.dc-cta__inner {
  max-width: 896px;
  margin: 0 auto;
}

.dc-cta__title {
  font-size: var(--dc-text-headline-lg);
  color: #fff;
  margin-bottom: 24px;
}

.dc-cta__desc {
  font-size: var(--dc-text-body-lg);
  color: var(--dc-on-surface-variant);
  margin-bottom: 40px;
}

.dc-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ==========================================================================
   12. Footer
   ========================================================================== */
.dc-footer {
  background: var(--dc-navy-dark);
  color: #fff;
  padding-top: 96px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dc-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .dc-footer__grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.dc-footer__col--brand { grid-column: span 4; }
.dc-footer__col--services { grid-column: span 2; }
.dc-footer__col--contact { grid-column: span 3; }
.dc-footer__col--hours { grid-column: span 3; }

.dc-footer__logo {
  font-family: var(--dc-font-headline);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 32px;
}

.dc-footer__logo-img {
  max-height: 48px;
  width: auto;
  display: block;
  margin-bottom: 32px;
}

.dc-footer__desc {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  line-height: 1.6;
}

.dc-footer__heading {
  font-family: var(--dc-font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 32px;
}

.dc-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dc-footer__links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.dc-footer__social {
  display: flex;
  gap: 16px;
}

.dc-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--dc-radius);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: var(--dc-transition);
}

.dc-footer__social a:hover {
  background: var(--dc-gold);
  color: var(--dc-navy-deep);
}

.dc-footer__bottom {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .dc-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.dc-footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.dc-footer__legal {
  display: flex;
  gap: 32px;
}

.dc-footer__legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dc-footer__legal a:hover {
  color: #fff;
}

/* ==========================================================================
   13. Forms
   ========================================================================== */
.dc-form-label {
  display: block;
  font-size: var(--dc-text-label);
  font-weight: 600;
  color: var(--dc-on-surface-variant);
  margin-bottom: 8px;
}

.dc-form-control,
.dc-form-select,
.dc-form-textarea {
  width: 100%;
  background: var(--dc-surface);
  border: 1px solid var(--dc-outline-variant);
  border-radius: var(--dc-radius-lg);
  padding: 12px 16px;
  font-family: var(--dc-font-body);
  font-size: var(--dc-text-body);
  color: var(--dc-on-surface);
  transition: var(--dc-transition);
  min-height: 44px;
}

.dc-form-control:focus,
.dc-form-select:focus,
.dc-form-textarea:focus {
  border-color: var(--dc-navy-deep);
  outline: none;
  box-shadow: 0 0 0 1px var(--dc-navy-deep);
}

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

/* ==========================================================================
   14. FAQ Accordion
   ========================================================================== */
.dc-faq-item {
  border: 1px solid var(--dc-outline-variant);
  border-radius: var(--dc-radius);
  margin-bottom: 16px;
  overflow: hidden;
}

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

.dc-faq-question .material-symbols-outlined {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.dc-faq-item.is-open .dc-faq-question .material-symbols-outlined {
  transform: rotate(180deg);
}

.dc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.dc-faq-item.is-open .dc-faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

.dc-faq-answer p {
  color: var(--dc-on-surface-variant);
  margin: 0;
}

/* ==========================================================================
   15. Back To Top
   ========================================================================== */
.dc-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--dc-navy-deep);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--dc-transition);
  z-index: 999;
}

.dc-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.dc-back-to-top:hover {
  background: var(--dc-gold);
  color: var(--dc-navy-deep);
  transform: translateY(-4px);
}

/* ==========================================================================
   16. Utilities
   ========================================================================== */
.dc-rounded { border-radius: var(--dc-radius) !important; }
.dc-rounded-lg { border-radius: var(--dc-radius-lg) !important; }
.dc-rounded-xl { border-radius: var(--dc-radius-xl) !important; }
.dc-rounded-full { border-radius: var(--dc-radius-full) !important; }

.dc-shadow-sm { box-shadow: var(--dc-shadow-sm) !important; }
.dc-shadow-lg { box-shadow: var(--dc-shadow-lg) !important; }

.bg-navy { background-color: var(--dc-navy-deep) !important; }
.bg-surface-low { background-color: var(--dc-surface-low) !important; }

.text-white-50 { color: rgba(255, 255, 255, 0.5) !important; }
.text-white-30 { color: rgba(255, 255, 255, 0.3) !important; }

/* Skip link */
.dc-skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--dc-navy-deep);
  color: #fff;
  padding: 8px 16px;
  z-index: 1100;
  text-decoration: none;
  transition: top 0.2s ease;
}

.dc-skip-link:focus {
  top: 0;
}

/* ==========================================================================
   17. Material Symbols
   ========================================================================== */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* ==========================================================================
   18. Animations
   ========================================================================== */
.dc-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.dc-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus visible */
*:focus-visible {
  outline: 2px solid var(--dc-gold);
  outline-offset: 2px;
}
