/* ==========================================================================
   DC Clinic - Enterprise Polish Layer
   Enhances every interaction, transition, and user experience
   ==========================================================================

   Table of Contents:
   1. Hero: Ken Burns, Floating Shapes, Sequential Animation, Overlay Gradient
   2. Navigation: Mega Menu Featured Image, Submenu Indicators, Button Animations
   3. Service Cards: Dark Overlay, Animated Icon, Learn More Reveal
   4. CTA: Glow, Ripple, Scale
   5. Forms: Focus/Success/Validation States, Loading Spinner
   6. Statistics: Animated Stars
   7. Reviews: Before/After Slider, Keyboard Nav, Customer Location
   8. Footer: Awards, Certifications, Google Rating, Payment Methods
   9. Cookie Consent: Glassmorphism
   10. Live Chat: Typing Indicator
   11. Theme Panel: Font Family, Border Radius, Animation Speed
   12. Accessibility: High Contrast, Reduced Motion
   13. Mobile: Swipe Hints, Sticky CTA
   14. Premium Micro-Interactions: Hover Glow, Confetti, Shimmer
   15. Page Transition: Loading Spinner
   ========================================================================== */

/* ==========================================================================
   1. Hero Enhancements
   ========================================================================== */

/* Ken Burns slow zoom */
@keyframes dc-ken-burns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.12) translate(-1.5%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}

.dc-hero__bg--ken-burns {
  animation: dc-ken-burns 20s ease-in-out infinite;
  will-change: transform;
}

/* Floating decorative shapes */
.dc-hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.dc-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: dc-float-shape 12s ease-in-out infinite;
}

.dc-shape--1 {
  width: 280px; height: 280px;
  background: var(--dc-gold);
  top: 10%; right: 5%;
  animation-delay: 0s;
}

.dc-shape--2 {
  width: 180px; height: 180px;
  background: var(--dc-navy-deep);
  bottom: 15%; left: 8%;
  animation-delay: 3s;
}

.dc-shape--3 {
  width: 120px; height: 120px;
  background: var(--dc-gold);
  top: 50%; left: 40%;
  animation-delay: 6s;
  opacity: 0.04;
}

.dc-shape--4 {
  width: 80px; height: 80px;
  background: var(--dc-primary-container);
  top: 20%; left: 20%;
  animation-delay: 9s;
  opacity: 0.05;
}

@keyframes dc-float-shape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-15px, 20px) scale(0.95); }
  75% { transform: translate(10px, 15px) scale(1.02); }
}

/* Hero overlay gradient for readability */
.dc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,25,47,0.15) 0%, rgba(10,25,47,0.05) 40%, rgba(10,25,47,0.25) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Sequential hero content animation */
.dc-hero__content > * {
  opacity: 0;
  animation: dc-hero-item-in 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.dc-hero__content > *:nth-child(1) { animation-delay: 0.2s; }
.dc-hero__content > *:nth-child(2) { animation-delay: 0.4s; }
.dc-hero__content > *:nth-child(3) { animation-delay: 0.6s; }
.dc-hero__content > *:nth-child(4) { animation-delay: 0.8s; }
.dc-hero__content > *:nth-child(5) { animation-delay: 1.0s; }
.dc-hero__content > *:nth-child(6) { animation-delay: 1.2s; }

@keyframes dc-hero-item-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero buttons stagger */
.dc-hero__buttons .btn-dc-primary,
.dc-hero__buttons .btn-dc-outline,
.dc-hero__buttons .btn-dc-gold,
.dc-hero__buttons .btn-dc-ghost-light {
  opacity: 0;
  animation: dc-hero-btn-in 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.dc-hero__buttons .btn-dc-primary,
.dc-hero__buttons .btn-dc-gold { animation-delay: 1.0s; }
.dc-hero__buttons .btn-dc-outline,
.dc-hero__buttons .btn-dc-ghost-light { animation-delay: 1.2s; }

@keyframes dc-hero-btn-in {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==========================================================================
   2. Navigation Enhancements
   ========================================================================== */

/* Mega menu featured image */
.dc-mega-menu__featured {
  border-radius: var(--dc-radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  background: var(--dc-surface-low);
}

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

.dc-mega-menu__featured:hover img {
  transform: scale(1.05);
}

.dc-mega-menu__featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,25,47,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.dc-mega-menu__featured-title {
  color: #fff;
  font-family: var(--dc-font-headline);
  font-size: var(--dc-text-body);
  font-weight: 600;
  margin: 0;
}

.dc-mega-menu__featured-sub {
  color: rgba(255,255,255,0.7);
  font-size: var(--dc-text-caption);
  margin: 4px 0 0;
}

/* Active submenu indicator */
.dc-nav__item--dropdown > .dc-nav__link .material-symbols-outlined {
  transition: transform 0.3s ease;
}

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

/* Appointment button hover animation */
.btn-dc-primary {
  position: relative;
  overflow: hidden;
}

.btn-dc-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-dc-primary:hover::before {
  left: 100%;
}

/* Language switch animation */
.dc-lang-dropdown button {
  transition: all 0.25s ease;
}

.dc-lang-dropdown button:hover {
  transform: translateX(4px);
}

/* Mobile menu slide animation */
.dc-mobile-menu {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dc-mobile-menu.is-open {
  animation: dc-mobile-slide-in 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes dc-mobile-slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* ==========================================================================
   3. Service Card Enhancements
   ========================================================================== */
.dc-service-card {
  position: relative;
  overflow: hidden;
}

.dc-service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,25,47,0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  z-index: 3;
}

.dc-service-card:hover .dc-service-card__overlay {
  opacity: 1;
}

.dc-service-card__overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--dc-radius-full);
  background: var(--dc-gold);
  color: var(--dc-navy-deep);
  font-weight: 600;
  font-size: var(--dc-text-label);
  text-decoration: none;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.dc-service-card:hover .dc-service-card__overlay-btn {
  transform: translateY(0);
}

.dc-service-card__overlay-btn .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.dc-service-card__overlay-btn:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* Animated icon on hover */
.dc-service-card__icon {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dc-service-card:hover .dc-service-card__icon {
  transform: scale(1.15) rotate(-5deg);
}

.dc-service-card__icon .material-symbols-outlined {
  transition: transform 0.4s ease;
}

.dc-service-card:hover .dc-service-card__icon .material-symbols-outlined {
  animation: dc-icon-bounce 0.6s ease;
}

@keyframes dc-icon-bounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* Soft shadow on hover */
.dc-service-card:hover {
  box-shadow: 0 20px 50px rgba(10, 25, 47, 0.12);
}

/* ==========================================================================
   4. CTA Enhancements
   ========================================================================== */
.dc-cta .btn-dc-primary,
.dc-cta .btn-dc-gold,
.dc-cta .btn-dc-ghost-light {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dc-cta .btn-dc-primary:hover,
.dc-cta .btn-dc-gold:hover {
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.5), 0 8px 25px rgba(10, 25, 47, 0.2);
  transform: translateY(-3px) scale(1.03);
}

.dc-cta .btn-dc-ghost-light:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* CTA glow pulse */
.dc-cta__inner {
  position: relative;
}

.dc-cta__inner::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--dc-gold), transparent, var(--dc-gold));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  animation: dc-cta-glow 3s ease-in-out infinite;
}

@keyframes dc-cta-glow {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.15; }
}

/* ==========================================================================
   5. Form Enhancements
   ========================================================================== */
.dc-form-group {
  position: relative;
  margin-bottom: 20px;
}

.dc-form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--dc-outline-variant);
  border-radius: var(--dc-radius-lg);
  background: #fff;
  font-size: var(--dc-text-body);
  font-family: var(--dc-font-body);
  color: var(--dc-on-surface);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dc-form-input:focus,
.dc-form-control:focus,
.dc-form-select:focus,
.dc-form-textarea:focus {
  border-color: var(--dc-navy-deep);
  box-shadow: 0 0 0 4px rgba(10, 25, 47, 0.08);
}

.dc-form-input--success,
.dc-form-control.dc-form-input--success,
.dc-form-select.dc-form-input--success,
.dc-form-textarea.dc-form-input--success {
  border-color: #2e7d32;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.08);
}

.dc-form-input--error,
.dc-form-control.dc-form-input--error,
.dc-form-select.dc-form-input--error,
.dc-form-textarea.dc-form-input--error {
  border-color: var(--dc-error);
  box-shadow: 0 0 0 4px rgba(186, 26, 26, 0.08);
  animation: dc-shake 0.4s ease;
}

/* Also support Bootstrap-style is-valid/is-invalid */
.form-control.is-valid,
.dc-form-control.is-valid,
.dc-form-select.is-valid,
.dc-form-textarea.is-valid {
  border-color: #2e7d32;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.08);
}

.form-control.is-invalid,
.dc-form-control.is-invalid,
.dc-form-select.is-invalid,
.dc-form-textarea.is-invalid {
  border-color: var(--dc-error);
  box-shadow: 0 0 0 4px rgba(186, 26, 26, 0.08);
  animation: dc-shake 0.4s ease;
}

@keyframes dc-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.dc-form-label {
  display: block;
  font-size: var(--dc-text-label);
  font-weight: 600;
  color: var(--dc-navy-deep);
  margin-bottom: 6px;
}

.dc-form-error {
  font-size: var(--dc-text-caption);
  color: var(--dc-error);
  margin-top: 4px;
  display: none;
}

.dc-form-error.is-visible {
  display: block;
  animation: dc-fade-in 0.3s ease;
}

.dc-form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.dc-form-success.is-visible {
  display: block;
  animation: dc-zoom-in 0.5s ease;
}

.dc-form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  animation: dc-success-pop 0.5s ease;
}

.dc-form-success__icon .material-symbols-outlined {
  font-size: 36px;
  color: #2e7d32;
}

/* Loading spinner for forms */
.dc-form-loading {
  display: none;
  text-align: center;
  padding: 24px;
}

.dc-form-loading.is-visible {
  display: block;
}

.dc-form-loading__spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--dc-surface-low);
  border-top-color: var(--dc-gold);
  animation: dc-loader-spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

/* ==========================================================================
   6. Statistics: Animated Stars
   ========================================================================== */
.dc-stat-stars {
  display: inline-flex;
  gap: 2px;
}

.dc-stat-stars .material-symbols-outlined {
  font-size: 20px;
  color: var(--dc-gold);
  opacity: 0;
  animation: dc-star-pop 0.4s ease forwards;
}

.dc-stat-stars .material-symbols-outlined:nth-child(1) { animation-delay: 0.1s; }
.dc-stat-stars .material-symbols-outlined:nth-child(2) { animation-delay: 0.2s; }
.dc-stat-stars .material-symbols-outlined:nth-child(3) { animation-delay: 0.3s; }
.dc-stat-stars .material-symbols-outlined:nth-child(4) { animation-delay: 0.4s; }
.dc-stat-stars .material-symbols-outlined:nth-child(5) { animation-delay: 0.5s; }

@keyframes dc-star-pop {
  0% { opacity: 0; transform: scale(0) rotate(-180deg); }
  60% { opacity: 1; transform: scale(1.3) rotate(10deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* ==========================================================================
   7. Reviews: Before/After Slider
   ========================================================================== */
.dc-before-after {
  position: relative;
  border-radius: var(--dc-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: ew-resize;
  user-select: none;
}

.dc-before-after__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.dc-before-after__img--after {
  clip-path: inset(0 0 0 50%);
}

.dc-before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 2;
  cursor: ew-resize;
}

.dc-before-after__handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%230A192F'%3E%3Cpath d='M8 5l-5 7 5 7M16 5l5 7-5 7' stroke='%230A192F' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.dc-before-after__label {
  position: absolute;
  bottom: 12px;
  padding: 4px 12px;
  border-radius: var(--dc-radius-full);
  font-size: 11px;
  font-weight: 600;
  background: rgba(10,25,47,0.8);
  color: #fff;
  z-index: 3;
  pointer-events: none;
}

.dc-before-after__label--before { left: 12px; }
.dc-before-after__label--after { right: 12px; }

/* Customer location badge */
.dc-testimonial__location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--dc-on-surface-variant);
  margin-top: 4px;
}

.dc-testimonial__location .material-symbols-outlined {
  font-size: 14px;
}

/* Review card hover scale */
.dc-testimonial {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dc-testimonial:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.08);
}

/* ==========================================================================
   8. Footer Enhancements
   ========================================================================== */
.dc-footer__awards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.dc-footer__award {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--dc-radius-full);
  background: rgba(255,255,255,0.06);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

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

.dc-footer__certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.dc-footer__cert {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--dc-radius);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dc-footer__google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: var(--dc-radius-lg);
  background: rgba(255,255,255,0.05);
}

.dc-footer__google-rating .google-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.dc-footer__google-rating .dc-stat-stars .material-symbols-outlined {
  font-size: 14px;
}

.dc-footer__google-rating-text {
  font-size: var(--dc-text-caption);
  color: rgba(255,255,255,0.7);
}

.dc-footer__google-rating-text strong {
  color: #fff;
}

.dc-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.dc-footer__payment {
  padding: 6px 12px;
  border-radius: var(--dc-radius);
  background: rgba(255,255,255,0.06);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 4px;
}

.dc-footer__latest-articles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dc-footer__latest-articles li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dc-footer__latest-articles li:last-child {
  border-bottom: none;
}

.dc-footer__latest-articles a {
  font-size: var(--dc-text-caption);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  line-height: 1.4;
}

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

.dc-footer__latest-articles .article-date {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

/* ==========================================================================
   9. Cookie Consent: Glassmorphism
   ========================================================================== */
.dc-cookie-consent {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

body.dc-dark-mode .dc-cookie-consent {
  background: rgba(26, 31, 46, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   10. Live Chat: Typing Indicator
   ========================================================================== */
.dc-chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: var(--dc-surface-low);
  border-radius: var(--dc-radius-lg);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  animation: dc-chat-msg-in 0.3s ease;
}

.dc-chat-typing__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dc-outline);
  animation: dc-typing-bounce 1.4s ease-in-out infinite;
}

.dc-chat-typing__dot:nth-child(2) { animation-delay: 0.2s; }
.dc-chat-typing__dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dc-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ==========================================================================
   11. Theme Panel: Additional Options
   ========================================================================== */
.dc-customizer__select {
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--dc-radius);
  border: 2px solid var(--dc-outline-variant);
  background: #fff;
  font-size: var(--dc-text-caption);
  color: var(--dc-on-surface);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
}

.dc-customizer__select:focus {
  border-color: var(--dc-navy-deep);
}

.dc-customizer__slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 4px;
  background: var(--dc-outline-variant);
  outline: none;
}

.dc-customizer__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--dc-navy-deep);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.dc-customizer__slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.dc-customizer__slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--dc-navy-deep);
  cursor: pointer;
  border: none;
}

.dc-customizer__slider-value {
  font-size: var(--dc-text-caption);
  font-weight: 600;
  color: var(--dc-navy-deep);
  margin-left: 8px;
}

/* Font family previews */
body.dc-font-poppins { font-family: 'Hanken Grotesk', var(--dc-font-body); }
body.dc-font-inter { font-family: 'Be Vietnam Pro', var(--dc-font-body); }
body.dc-font-jakarta { font-family: 'Hanken Grotesk', var(--dc-font-body); }
body.dc-font-default { font-family: var(--dc-font-body); }

/* Border radius options */
body.dc-radius-sharp { --dc-radius-lg: 0.125rem; --dc-radius-xl: 0.25rem; --dc-radius-2xl: 0.5rem; }
body.dc-radius-normal { --dc-radius-lg: 0.5rem; --dc-radius-xl: 0.75rem; --dc-radius-2xl: 1rem; }
body.dc-radius-round { --dc-radius-lg: 1rem; --dc-radius-xl: 1.5rem; --dc-radius-2xl: 2rem; }

/* Animation speed */
body.dc-anim-fast { --dc-transition: all 0.15s ease; }
body.dc-anim-normal { --dc-transition: all 0.3s ease; }
body.dc-anim-slow { --dc-transition: all 0.5s ease; }

/* ==========================================================================
   12. Accessibility
   ========================================================================== */

/* High contrast mode */
body.dc-high-contrast {
  --dc-on-surface: #000000;
  --dc-on-surface-variant: #1a1a1a;
  --dc-outline: #333333;
  --dc-outline-variant: #666666;
  --dc-surface-low: #f0f0f0;
  --dc-surface-high: #e0e0e0;
}

body.dc-high-contrast .dc-nav__link {
  font-weight: 600;
}

body.dc-high-contrast .dc-btn-primary,
body.dc-high-contrast .btn-dc-primary {
  border: 2px solid #000;
}

body.dc-high-contrast img {
  filter: contrast(1.15);
}

body.dc-high-contrast .dc-card,
body.dc-high-contrast .dc-service-card {
  border: 2px solid var(--dc-outline-variant);
}

/* Visible keyboard focus */
*:focus-visible {
  outline: 3px solid var(--dc-gold);
  outline-offset: 2px;
  border-radius: var(--dc-radius);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dc-hero__bg--ken-burns,
  .dc-shape,
  .dc-cta__inner::before,
  .dc-customizer__toggle .material-symbols-outlined {
    animation: none !important;
  }

  .dc-hero__content > *,
  .dc-hero__buttons .btn-dc-primary,
  .dc-hero__buttons .btn-dc-gold,
  .dc-hero__buttons .btn-dc-outline,
  .dc-hero__buttons .btn-dc-ghost-light {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* ==========================================================================
   13. Mobile: Swipe Hints, Sticky CTA
   ========================================================================== */
.dc-swipe-hint {
  display: none;
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  border-radius: var(--dc-radius-full);
  background: rgba(10, 25, 47, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  z-index: 700;
  pointer-events: none;
  animation: dc-swipe-hint-pulse 2s ease-in-out infinite;
}

@keyframes dc-swipe-hint-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(-4px); }
}

@media (max-width: 1023px) {
  .dc-swipe-hint {
    display: flex;
    align-items: center;
    gap: 6px;
  }
}

.dc-swipe-hint .material-symbols-outlined {
  font-size: 16px;
}

/* Sticky mobile CTA */
.dc-mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 72px;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--dc-outline-variant);
  z-index: 890;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dc-mobile-sticky-cta.is-visible {
  transform: translateY(0);
}

.dc-mobile-sticky-cta .btn-dc-primary {
  width: 100%;
  padding: 14px;
  font-size: var(--dc-text-body);
}

@media (max-width: 1023px) {
  .dc-mobile-sticky-cta {
    display: block;
  }
}

/* ==========================================================================
   14. Premium Micro-Interactions
   ========================================================================== */

/* Hover glow utility */
.dc-hover-glow {
  transition: box-shadow 0.3s ease;
}

.dc-hover-glow:hover {
  box-shadow: 0 0 25px rgba(197, 160, 89, 0.3);
}

/* Card elevation utility */
.dc-elevate {
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.dc-elevate:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(10, 25, 47, 0.12);
}

/* Shimmer effect */
.dc-shimmer {
  position: relative;
  overflow: hidden;
}

.dc-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  animation: dc-shimmer-sweep 2s ease-in-out infinite;
}

@keyframes dc-shimmer-sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* Confetti container */
.dc-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99995;
  overflow: hidden;
}

.dc-confetti__piece {
  position: absolute;
  width: 10px;
  height: 10px;
  top: -10px;
  animation: dc-confetti-fall linear forwards;
}

@keyframes dc-confetti-fall {
  to {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Toast enhanced entrance */
.dc-toast {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dc-toast:hover {
  transform: translateX(-4px);
  box-shadow: 0 14px 50px rgba(10, 25, 47, 0.18);
}

/* Icon animation utility */
.dc-icon-spin:hover .material-symbols-outlined {
  animation: dc-loader-spin 0.8s linear;
}

/* Number animation pulse */
.dc-counter.is-counting {
  animation: dc-counter-pulse 0.4s ease;
}

@keyframes dc-counter-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); color: var(--dc-gold); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   15. Page Transition: Loading Spinner
   ========================================================================== */
.dc-page-transition__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--dc-gold);
  animation: dc-loader-spin 0.8s linear infinite;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
}

.dc-page-transition--active .dc-page-transition__spinner {
  opacity: 1;
}

/* ==========================================================================
   16. Premium Header Redesign
   ========================================================================== */

/* --- Header Height --- */
:root {
  --dc-header-height: 72px;
}

@media (max-width: 1023px) {
  :root { --dc-header-height: 68px; }
}

@media (max-width: 767px) {
  :root { --dc-header-height: 64px; }
}

/* --- Base Header Override --- */
.dc-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #ECECEC;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dc-header--scrolled {
  background: #FFFFFF;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-bottom-color: #ECECEC;
}

/* --- Transparent Header State --- */
.dc-header--transparent {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.dc-header--transparent.dc-header--scrolled {
  background: #FFFFFF;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-bottom-color: #ECECEC;
}

/* --- Navigation Colors: Transparent State --- */
.dc-header--transparent .dc-nav__link {
  color: #FFFFFF;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.dc-header--transparent .dc-nav__link:hover,
.dc-header--transparent .dc-nav__link.active {
  color: #D4AF37;
}

/* --- Navigation Colors: Scrolled State --- */
.dc-header--scrolled .dc-nav__link,
.dc-header:not(.dc-header--transparent) .dc-nav__link {
  color: #1F2937;
  text-shadow: none;
}

.dc-header--scrolled .dc-nav__link:hover,
.dc-header--scrolled .dc-nav__link.active,
.dc-header:not(.dc-header--transparent) .dc-nav__link:hover,
.dc-header:not(.dc-header--transparent) .dc-nav__link.active {
  color: #D4AF37;
}

/* --- Animated Underline --- */
.dc-nav__link {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.dc-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: width 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dc-nav__link:hover::after,
.dc-nav__link.active::after {
  width: 100%;
}

/* Remove old static active border */
.dc-nav__link.active {
  border-bottom: none;
}

/* --- Active Menu Enhancement --- */
.dc-nav__link.active {
  font-weight: 700;
}

/* --- Logo Adaptation --- */
.dc-logo__img {
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* White logo on transparent header */
.dc-header--transparent:not(.dc-header--scrolled) .dc-logo__img {
  filter: brightness(0) invert(1);
}

/* Dark logo on scrolled/non-transparent header */
.dc-header--scrolled .dc-logo__img,
.dc-header:not(.dc-header--transparent) .dc-logo__img {
  filter: none;
}

/* --- Header Icons Adaptation --- */
.dc-header--transparent:not(.dc-header--scrolled) .dc-header__icon-btn {
  color: #FFFFFF;
}

.dc-header--transparent:not(.dc-header--scrolled) .dc-header__icon-btn:hover {
  color: #D4AF37;
  background: rgba(255, 255, 255, 0.1);
}

.dc-header--scrolled .dc-header__icon-btn,
.dc-header:not(.dc-header--transparent) .dc-header__icon-btn {
  color: #4B5563;
}

.dc-header--scrolled .dc-header__icon-btn:hover,
.dc-header:not(.dc-header--transparent) .dc-header__icon-btn:hover {
  color: #D4AF37;
  background: rgba(0, 0, 0, 0.05);
}

/* --- Mobile Menu Toggle Adaptation --- */
.dc-header--transparent:not(.dc-header--scrolled) .dc-menu-toggle span {
  background: #FFFFFF;
}

.dc-header--scrolled .dc-menu-toggle span,
.dc-header:not(.dc-header--transparent) .dc-menu-toggle span {
  background: #1F2937;
}

/* --- CTA Button in Header --- */
.dc-header .btn-dc-primary {
  border-radius: var(--dc-radius-full);
  padding: 10px 24px;
  font-size: var(--dc-text-label);
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
}

/* Transparent header: gold bg + dark text, hover = dark bg + gold text */
.dc-header--transparent:not(.dc-header--scrolled) .btn-dc-primary {
  background: #D4AF37;
  color: #0A192F;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.dc-header--transparent:not(.dc-header--scrolled) .btn-dc-primary:hover {
  background: #0A192F;
  color: #D4AF37;
  box-shadow: 0 6px 20px rgba(10, 25, 47, 0.3);
  transform: translateY(-1px);
}

/* Scrolled header: consistent styling */
.dc-header--scrolled .btn-dc-primary,
.dc-header:not(.dc-header--transparent) .btn-dc-primary {
  background: var(--dc-navy-deep);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.15);
}

.dc-header--scrolled .btn-dc-primary:hover,
.dc-header:not(.dc-header--transparent) .btn-dc-primary:hover {
  background: var(--dc-gold);
  color: #0A192F;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
}

/* --- Mega Menu Enhancement --- */
.dc-mega-menu {
  background: #FFFFFF;
  border-radius: var(--dc-radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.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 text links hover */
.dc-mega-menu__text-link {
  position: relative;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.dc-mega-menu__text-link:hover {
  color: #D4AF37;
  padding-left: 8px;
}

/* Mega menu item hover */
.dc-mega-menu__item {
  transition: background 0.2s ease, transform 0.2s ease;
  border-radius: var(--dc-radius-lg);
}

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

/* Mega menu column title */
.dc-mega-menu__col-title {
  font-size: var(--dc-text-label);
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #D4AF37;
  display: inline-block;
}

/* --- Dropdown Enhancement --- */
.dc-dropdown {
  background: #FFFFFF;
  border-radius: var(--dc-radius-lg);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.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 {
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.dc-dropdown a:hover {
  color: #D4AF37;
  padding-left: 20px;
}

/* --- Language Dropdown Enhancement --- */
.dc-lang-dropdown {
  background: #FFFFFF;
  border-radius: var(--dc-radius-lg);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* --- Hero Overlay: Cinematic Dark Gradient --- */
.dc-header--transparent ~ main .dc-hero__overlay,
.dc-hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.20),
    rgba(0, 0, 0, 0.05)
  ) !important;
}

/* --- Navigation Readability --- */
.dc-nav__link {
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ==========================================================================
   17. Announcement Bar Polish
   ========================================================================== */
.dc-announcement {
  max-height: 40px;
  font-size: var(--dc-text-caption);
}

.dc-announcement__inner {
  padding: 8px var(--dc-gutter);
  height: 40px;
}

.dc-announcement__text {
  font-size: var(--dc-text-caption);
  font-weight: 500;
}

.dc-announcement__text .material-symbols-outlined {
  font-size: 16px;
}

.dc-announcement__cta {
  font-size: 12px;
  padding: 4px 14px;
}

.dc-announcement__close {
  top: 50%;
  transform: translateY(-50%);
}

.dc-announcement__close .material-symbols-outlined {
  font-size: 18px;
}

/* Subtle marquee-like animation */
@keyframes dc-announcement-slide {
  0% { transform: translateX(10px); opacity: 0.8; }
  100% { transform: translateX(0); opacity: 1; }
}

.dc-announcement__text {
  animation: dc-announcement-slide 0.6s ease-out;
}

@media (max-width: 767px) {
  .dc-announcement {
    max-height: 36px;
  }
  .dc-announcement__inner {
    height: 36px;
    padding: 6px 40px 6px var(--dc-gutter);
  }
  .dc-announcement__text {
    font-size: 11px;
  }
  .dc-announcement__cta {
    display: none;
  }
}

/* ==========================================================================
   18. Cookie Banner Polish
   ========================================================================== */
.dc-cookie-consent {
  max-width: 420px;
  padding: 20px;
  border-radius: var(--dc-radius-xl);
}

.dc-cookie-consent__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.dc-cookie-consent__icon .material-symbols-outlined {
  font-size: 18px;
}

.dc-cookie-consent__title {
  font-size: var(--dc-text-body);
  margin-bottom: 6px;
}

.dc-cookie-consent__text {
  font-size: var(--dc-text-caption);
  line-height: 1.45;
  margin-bottom: 14px;
}

.dc-cookie-consent__actions {
  gap: 8px;
}

.dc-cookie-consent__btn {
  padding: 8px 16px;
  font-size: var(--dc-text-caption);
}

@media (max-width: 767px) {
  .dc-cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    max-height: 30vh;
    overflow-y: auto;
    padding: 16px;
  }

  .dc-cookie-consent__actions {
    flex-direction: column;
  }

  .dc-cookie-consent__btn {
    width: 100%;
    text-align: center;
    padding: 10px 16px;
  }
}

/* ==========================================================================
   19. Floating Button Spacing - Prevent Overlap
   ========================================================================== */

/* Desktop: Cookie bottom-left, Chat bottom-right, Back-to-top above chat */
.dc-cookie-consent {
  bottom: 24px;
  left: 24px;
}

.dc-chat-widget {
  bottom: 24px;
  right: 24px;
}

.dc-back-to-top {
  bottom: 96px;
  right: 32px;
}

/* Social bar: right side, vertically centered - no conflict on desktop */
.dc-social-bar {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/* Mobile: Stack floating elements with proper spacing */
@media (max-width: 1023px) {
  .dc-social-bar {
    bottom: 16px;
    right: 16px;
    top: auto;
    transform: none;
    flex-direction: row;
  }

  .dc-chat-widget {
    bottom: 76px;
    right: 16px;
  }

  .dc-back-to-top {
    bottom: 140px;
    right: 20px;
  }

  /* Cookie banner above social bar on mobile */
  .dc-cookie-consent {
    bottom: 76px;
    left: 12px;
    right: 12px;
  }
}

@media (max-width: 767px) {
  .dc-back-to-top {
    bottom: 130px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .dc-chat-widget__fab {
    width: 52px;
    height: 52px;
  }

  .dc-social-bar__btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Hide social bar when cookie is visible to prevent overlap */
  .dc-cookie-consent--visible ~ .dc-social-bar,
  .dc-cookie-consent--visible + .dc-social-bar {
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
}

/* ==========================================================================
   20. Mobile Menu Sequential Animation
   ========================================================================== */
.dc-mobile-menu nav > a,
.dc-mobile-menu .dc-mobile-dropdown {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.dc-mobile-menu.is-open nav > a,
.dc-mobile-menu.is-open .dc-mobile-dropdown {
  opacity: 1;
  transform: translateX(0);
}

/* Sequential delay for each item */
.dc-mobile-menu.is-open nav > a:nth-child(1),
.dc-mobile-menu.is-open .dc-mobile-dropdown:nth-child(1) { transition-delay: 0.05s; }
.dc-mobile-menu.is-open nav > a:nth-child(2),
.dc-mobile-menu.is-open .dc-mobile-dropdown:nth-child(2) { transition-delay: 0.10s; }
.dc-mobile-menu.is-open nav > a:nth-child(3),
.dc-mobile-menu.is-open .dc-mobile-dropdown:nth-child(3) { transition-delay: 0.15s; }
.dc-mobile-menu.is-open nav > a:nth-child(4),
.dc-mobile-menu.is-open .dc-mobile-dropdown:nth-child(4) { transition-delay: 0.20s; }
.dc-mobile-menu.is-open nav > a:nth-child(5),
.dc-mobile-menu.is-open .dc-mobile-dropdown:nth-child(5) { transition-delay: 0.25s; }
.dc-mobile-menu.is-open nav > a:nth-child(6),
.dc-mobile-menu.is-open .dc-mobile-dropdown:nth-child(6) { transition-delay: 0.30s; }
.dc-mobile-menu.is-open nav > a:nth-child(7),
.dc-mobile-menu.is-open .dc-mobile-dropdown:nth-child(7) { transition-delay: 0.35s; }
.dc-mobile-menu.is-open nav > a:nth-child(8),
.dc-mobile-menu.is-open .dc-mobile-dropdown:nth-child(8) { transition-delay: 0.40s; }

/* Mobile menu active page highlight */
.dc-mobile-menu nav > a.active {
  color: #D4AF37;
  font-weight: 700;
  border-left: 3px solid #D4AF37;
  padding-left: 12px;
}

/* Mobile menu CTA buttons animation */
.dc-mobile-menu.is-open > div:last-child {
  animation: dc-fade-up 0.5s ease 0.45s both;
}

@keyframes dc-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Blur backdrop when mobile menu is open */
body.dc-mobile-menu-open {
  overflow: hidden;
}

body.dc-mobile-menu-open main,
body.dc-mobile-menu-open footer,
body.dc-mobile-menu-open .dc-hero {
  filter: blur(3px);
  transition: filter 0.3s ease;
}

/* ==========================================================================
   21. Hero Sequential Animation
   ========================================================================== */
.dc-hero__content > .dc-container > .row > .col-lg-7 > * {
  opacity: 0;
  transform: translateY(30px);
  animation: dc-hero-fade-up 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.dc-hero__content > .dc-container > .row > .col-lg-7 > *:nth-child(1) { animation-delay: 0.2s; }
.dc-hero__content > .dc-container > .row > .col-lg-7 > *:nth-child(2) { animation-delay: 0.35s; }
.dc-hero__content > .dc-container > .row > .col-lg-7 > *:nth-child(3) { animation-delay: 0.5s; }
.dc-hero__content > .dc-container > .row > .col-lg-7 > *:nth-child(4) { animation-delay: 0.65s; }
.dc-hero__content > .dc-container > .row > .col-lg-7 > *:nth-child(5) { animation-delay: 0.8s; }

/* Hero image card animation */
.dc-hero__content > .dc-container > .row > .col-lg-5 {
  opacity: 0;
  animation: dc-hero-fade-up 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards;
}

@keyframes dc-hero-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator animation */
.dc-scroll-indicator {
  opacity: 0;
  animation: dc-hero-fade-up 0.6s ease 1.2s forwards;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dc-hero__content > .dc-container > .row > .col-lg-7 > *,
  .dc-hero__content > .dc-container > .row > .col-lg-5,
  .dc-scroll-indicator {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .dc-mobile-menu nav > a,
  .dc-mobile-menu .dc-mobile-dropdown {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   22. Responsive Breakpoint Polish
   ========================================================================== */

/* Large desktop 1920px */
@media (min-width: 1800px) {
  .dc-header__inner {
    max-width: 1600px;
  }
}

/* Laptop 1440px */
@media (max-width: 1440px) and (min-width: 1025px) {
  .dc-nav {
    gap: 18px;
  }
  .dc-header .btn-dc-primary {
    padding: 8px 20px;
  }
}

/* Tablet 1024px */
@media (max-width: 1024px) {
  .dc-header__inner {
    padding: 0 20px;
  }
}

/* Mobile 768px */
@media (max-width: 767px) {
  .dc-header__inner {
    padding: 0 16px;
  }

  .dc-header__icon-btn {
    width: 36px;
    height: 36px;
  }

  .dc-header__icon-btn .material-symbols-outlined {
    font-size: 20px;
  }

  .dc-menu-toggle {
    padding: 6px;
  }

  .dc-menu-toggle span {
    width: 22px;
  }

  .dc-logo__img {
    height: 32px;
  }

  /* Touch-friendly buttons */
  .dc-mobile-menu nav > a,
  .dc-mobile-dropdown__toggle {
    padding: 16px 0;
    font-size: var(--dc-text-body);
  }

  .dc-mobile-dropdown__submenu a {
    padding: 14px 16px;
  }
}

/* Small mobile 390px */
@media (max-width: 390px) {
  .dc-header__inner {
    padding: 0 12px;
  }

  .dc-header__cta {
    gap: 4px;
  }

  .dc-header__icon-btn {
    width: 32px;
    height: 32px;
  }

  .dc-logo__img {
    height: 28px;
  }

  .dc-mobile-menu {
    width: 100vw;
    padding: 70px 16px 16px;
  }

  .dc-cookie-consent {
    padding: 12px;
  }

  .dc-cookie-consent__title {
    font-size: var(--dc-text-label);
  }

  .dc-cookie-consent__text {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .dc-announcement__text {
    font-size: 10px;
  }
}

/* ==========================================================================
   23. Service Card & Page Hero Polish
   ========================================================================== */

/* Service cards as clickable links */
.dc-service-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.dc-service-card .material-symbols-outlined {
  transition: color 0.25s ease, transform 0.25s ease;
}

.dc-service-card:hover .material-symbols-outlined {
  color: #D4AF37;
  transform: scale(1.1);
}

.dc-card__desc {
  font-size: var(--dc-text-caption);
  color: var(--dc-on-surface-variant);
  margin-top: 4px;
  line-height: 1.4;
}

/* Page hero for inner pages */
.dc-page-hero {
  padding-top: calc(var(--dc-header-height) + 60px);
  padding-bottom: 40px;
}

.dc-page-hero h1 {
  font-size: var(--dc-text-h2);
  font-weight: 700;
  margin-bottom: 12px;
}

.dc-page-hero .dc-hero__desc {
  font-size: var(--dc-text-body);
  max-width: 600px;
}

/* --- Mobile Menu Enhancement --- */
.dc-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #FFFFFF;
  z-index: 1040;
  padding: 80px 24px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.dc-mobile-menu.is-open {
  transform: translateX(0);
}

/* Mobile menu close button */
.dc-mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--dc-surface-low);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1F2937;
  transition: background 0.2s ease, color 0.2s ease;
}

.dc-mobile-menu__close:hover {
  background: #D4AF37;
  color: #0A192F;
}

/* Mobile menu links */
.dc-mobile-menu nav > a {
  display: block;
  padding: 14px 0;
  font-size: var(--dc-text-body);
  font-weight: 600;
  color: #1F2937;
  text-decoration: none;
  border-bottom: 1px solid var(--dc-surface-high);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.dc-mobile-menu nav > a:hover {
  color: #D4AF37;
  padding-left: 8px;
}

/* Mobile dropdown accordion */
.dc-mobile-dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: var(--dc-text-body);
  font-weight: 600;
  color: #1F2937;
  background: none;
  border: none;
  border-bottom: 1px solid var(--dc-surface-high);
  cursor: pointer;
  transition: color 0.2s ease;
}

.dc-mobile-dropdown__toggle:hover {
  color: #D4AF37;
}

.dc-mobile-dropdown__toggle .material-symbols-outlined {
  transition: transform 0.3s ease;
}

.dc-mobile-dropdown.is-open .dc-mobile-dropdown__toggle .material-symbols-outlined {
  transform: rotate(180deg);
}

.dc-mobile-dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dc-mobile-dropdown.is-open .dc-mobile-dropdown__submenu {
  max-height: 800px;
}

.dc-mobile-dropdown__submenu h4 {
  font-size: var(--dc-text-caption);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #D4AF37;
  margin-top: 16px;
  margin-bottom: 8px;
}

.dc-mobile-dropdown__submenu a {
  display: block;
  padding: 10px 16px;
  font-size: var(--dc-text-label);
  color: #4B5563;
  text-decoration: none;
  border-radius: var(--dc-radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.dc-mobile-dropdown__submenu a:hover {
  color: #D4AF37;
  background: var(--dc-surface-low);
}

/* Mobile menu overlay */
.dc-mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1035;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.dc-mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* --- Dark Mode Header Overrides --- */
body.dc-dark-mode .dc-header {
  background: rgba(15, 20, 25, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

body.dc-dark-mode .dc-header--scrolled {
  background: rgba(15, 20, 25, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

body.dc-dark-mode .dc-header--transparent:not(.dc-header--scrolled) {
  background: rgba(0, 0, 0, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dc-dark-mode .dc-header--scrolled .dc-nav__link,
body.dc-dark-mode .dc-header:not(.dc-header--transparent) .dc-nav__link {
  color: #E5E7EB;
}

body.dc-dark-mode .dc-header--scrolled .dc-logo__img,
body.dc-dark-mode .dc-header:not(.dc-header--transparent) .dc-logo__img {
  filter: brightness(0) invert(1);
}

body.dc-dark-mode .dc-mobile-menu {
  background: var(--dc-surface);
}

body.dc-dark-mode .dc-mobile-menu nav > a,
body.dc-dark-mode .dc-mobile-dropdown__toggle {
  color: #E5E7EB;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dc-dark-mode .dc-mobile-dropdown__submenu a {
  color: rgba(255, 255, 255, 0.6);
}

/* --- High Contrast Header --- */
body.dc-high-contrast .dc-header--transparent:not(.dc-header--scrolled) .dc-nav__link {
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* --- Light Hero Adaptive: dark text when hero bg is bright --- */
.dc-header--transparent.dc-header--light-hero:not(.dc-header--scrolled) .dc-nav__link {
  color: #1F2937;
  text-shadow: 0 1px 6px rgba(255,255,255,0.25);
}

.dc-header--transparent.dc-header--light-hero:not(.dc-header--scrolled) .dc-nav__link:hover,
.dc-header--transparent.dc-header--light-hero:not(.dc-header--scrolled) .dc-nav__link.active {
  color: #D4AF37;
}

.dc-header--transparent.dc-header--light-hero:not(.dc-header--scrolled) .dc-logo__img {
  filter: none;
}

.dc-header--transparent.dc-header--light-hero:not(.dc-header--scrolled) .dc-header__icon-btn {
  color: #1F2937;
}

.dc-header--transparent.dc-header--light-hero:not(.dc-header--scrolled) .dc-header__icon-btn:hover {
  color: #D4AF37;
  background: rgba(0, 0, 0, 0.05);
}

.dc-header--transparent.dc-header--light-hero:not(.dc-header--scrolled) .dc-menu-toggle span {
  background: #1F2937;
}

.dc-header--transparent.dc-header--light-hero:not(.dc-header--scrolled) .btn-dc-primary {
  background: var(--dc-navy-deep);
  color: #fff;
}

.dc-header--transparent.dc-header--light-hero:not(.dc-header--scrolled) .btn-dc-primary:hover {
  background: #D4AF37;
  color: #0A192F;
}

/* --- Responsive Header --- */
@media (max-width: 1023px) {
  .dc-header__inner {
    height: 68px;
  }
}

@media (max-width: 767px) {
  .dc-header__inner {
    height: 64px;
  }

  .dc-header .btn-dc-primary {
    display: none;
  }

  .dc-header__cta {
    gap: 8px;
  }
}

/* ==========================================================================
   Mobile Premium App (enterprise overrides)
   ========================================================================== */
@media (max-width: 768px) {
  /* Decorative shapes - minimal on mobile */
  .dc-shape { opacity: 0.02 !important; }
  .dc-shape--1 { width: 120px; height: 120px; }
  .dc-shape--2 { width: 80px; height: 80px; }
  .dc-shape--3,
  .dc-shape--4 { display: none; }

  /* Sticky CTA above bottom nav */
  .dc-mobile-sticky-cta {
    bottom: calc(var(--dc-bottom-nav-height, 72px) + 16px);
    left: 24px;
    right: 24px;
    border-radius: 4px;
  }
}

/* ==========================================================================
   Overlay Gallery Cards (review.html gallery)
   ========================================================================== */
.dc-card--overlay {
  position: relative;
  border-radius: var(--dc-radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(196, 198, 207, 0.2);
}

.dc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dc-card--overlay:hover .dc-card__img {
  transform: scale(1.08);
}

.dc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 25, 47, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.dc-card--overlay:hover .dc-card__overlay {
  opacity: 1;
}

.dc-card__overlay p {
  color: #fff;
  font-size: var(--dc-text-body);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   Compact Icon Cards (category filter)
   ========================================================================== */
.dc-card--icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 16px;
  height: auto !important;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dc-card--icon .material-symbols-outlined {
  font-size: 36px;
  color: var(--dc-navy-deep);
  margin-bottom: 12px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.dc-card--icon:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.dc-card--icon:hover .material-symbols-outlined {
  color: var(--dc-gold);
  transform: scale(1.1);
}

.dc-card--icon h3 {
  font-size: var(--dc-text-body);
  font-weight: 600;
  margin: 0 0 4px;
}

.dc-card--icon .dc-card__desc {
  font-size: var(--dc-text-caption);
  color: var(--dc-on-surface-variant);
  margin: 0;
}

/* ==========================================================================
   Review Cards (review.html)
   ========================================================================== */
.dc-review-card {
  padding: 0;
  overflow: hidden;
}

.dc-review-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.dc-review-card__body {
  padding: 20px;
}

.dc-review-card__title {
  font-size: var(--dc-text-h4);
  font-weight: 600;
  margin-bottom: 8px;
}

.dc-review-card__meta {
  font-size: var(--dc-text-caption);
  color: var(--dc-on-surface-variant);
}

.dc-review-card__meta p {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dc-review-card__meta p:last-child {
  margin-bottom: 0;
}

.dc-review-card__meta .material-symbols-outlined {
  font-size: 16px;
}

/* ==========================================================================
   16. Premium Mobile Offcanvas Menu (v3) — Compact Dashboard Layout
   ========================================================================== */

/* Overlay */
.dc-mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.dc-mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Drawer */
.dc-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: #fff;
  border-radius: 0;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.dc-mobile-menu.is-open {
  transform: translateX(0);
}

/* 1. Sticky Header */
.dc-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  padding-top: max(10px, env(safe-area-inset-top));
  border-bottom: 1px solid rgba(196, 198, 207, 0.15);
  flex-shrink: 0;
  background: #fff;
  z-index: 2;
  min-height: 0;
}

.dc-mobile-menu__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dc-mobile-menu__logo {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--dc-gold) 0%, #D4AF37 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dc-font-headline);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.dc-mobile-menu__brand-name {
  font-family: var(--dc-font-headline);
  font-weight: 700;
  font-size: 15px;
  color: var(--dc-navy-deep);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.dc-mobile-menu__brand-tagline {
  font-size: 10px;
  color: var(--dc-on-surface-variant);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* Close Button */
.dc-mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.dc-mobile-menu__close:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: rotate(90deg);
}

.dc-mobile-menu__close:active {
  transform: rotate(90deg) scale(0.95);
}

.dc-mobile-menu__close .material-symbols-outlined {
  font-size: 22px;
  color: var(--dc-on-surface);
}

/* Scrollable Content */
.dc-mobile-menu__scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 12px 0 8px;
  min-height: 0;
}

/* 2. Search */
.dc-mobile-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 16px 12px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  padding: 0 12px;
  height: 44px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.dc-mobile-menu__search:focus-within {
  background: rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
}

.dc-mobile-menu__search-icon {
  font-size: 20px;
  color: var(--dc-on-surface-variant);
  flex-shrink: 0;
  margin-right: 8px;
}

.dc-mobile-menu__search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--dc-font-body);
  font-size: 14px;
  color: var(--dc-on-surface);
  outline: none;
  min-height: auto;
  padding: 0;
}

.dc-mobile-menu__search-input::placeholder {
  color: var(--dc-on-surface-variant);
}

.dc-mobile-menu__search-clear {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.dc-mobile-menu__search-clear.is-visible {
  opacity: 1;
}

.dc-mobile-menu__search-clear .material-symbols-outlined {
  font-size: 18px;
  color: var(--dc-on-surface-variant);
}

/* 3. Quick Actions (2x2 grid) */
.dc-mobile-menu__quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 16px;
  margin-bottom: 12px;
}

.dc-mobile-menu__quick-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(196, 198, 207, 0.2);
  text-decoration: none;
  color: var(--dc-on-surface);
  transition: all 0.2s ease;
  min-height: 52px;
}

.dc-mobile-menu__quick-action:hover {
  border-color: var(--dc-gold);
  background: rgba(197, 160, 89, 0.06);
  transform: translateY(-1px);
}

.dc-mobile-menu__quick-action:active {
  transform: scale(0.97);
}

.dc-mobile-menu__quick-action .material-symbols-outlined,
.dc-mobile-menu__quick-action .bi {
  font-size: 22px;
  color: var(--dc-gold);
  flex-shrink: 0;
}

.dc-mobile-menu__quick-action-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dc-on-surface);
  line-height: 1.2;
}

/* 4. Main Navigation */
.dc-mobile-menu__nav {
  padding: 0 16px;
  margin-bottom: 4px;
}

.dc-mobile-menu__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  min-height: 46px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--dc-on-surface);
  font-family: var(--dc-font-body);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  outline: none;
  margin-bottom: 2px;
}

.dc-mobile-menu__item:hover,
.dc-mobile-menu__item:focus-visible {
  background: rgba(197, 160, 89, 0.08);
  color: var(--dc-navy-deep);
}

.dc-mobile-menu__item:active {
  background: rgba(197, 160, 89, 0.12);
  transform: scale(0.98);
}

.dc-mobile-menu__item--active {
  background: rgba(197, 160, 89, 0.1);
  color: var(--dc-navy-deep);
  font-weight: 600;
}

.dc-mobile-menu__item--active .dc-mobile-menu__item-icon {
  color: var(--dc-gold);
}

.dc-mobile-menu__item-icon {
  font-size: 22px;
  color: var(--dc-on-surface-variant);
  transition: color 0.2s ease;
  flex-shrink: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dc-mobile-menu__item:hover .dc-mobile-menu__item-icon {
  color: var(--dc-gold);
}

.dc-mobile-menu__item-label {
  flex: 1;
}

/* 5. Service Categories (Accordion) */
.dc-mobile-menu__section {
  padding: 0 16px;
  margin-bottom: 12px;
}

.dc-mobile-menu__section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dc-on-surface-variant);
  margin-bottom: 8px;
  padding: 0 4px;
}

.dc-mobile-menu__accordion {
  margin-bottom: 2px;
}

.dc-mobile-menu__accordion-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  min-height: 46px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--dc-on-surface);
  font-family: var(--dc-font-body);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  outline: none;
}

.dc-mobile-menu__accordion-toggle:hover,
.dc-mobile-menu__accordion-toggle:focus-visible {
  background: rgba(197, 160, 89, 0.08);
  color: var(--dc-navy-deep);
}

.dc-mobile-menu__accordion-toggle:active {
  background: rgba(197, 160, 89, 0.12);
}

.dc-mobile-menu__accordion-toggle:hover .dc-mobile-menu__item-icon {
  color: var(--dc-gold);
}

.dc-mobile-menu__accordion-arrow {
  font-size: 20px;
  color: var(--dc-on-surface-variant);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.dc-mobile-menu__accordion.is-open .dc-mobile-menu__accordion-arrow {
  transform: rotate(180deg);
}

.dc-mobile-menu__accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
  padding: 0 14px;
}

.dc-mobile-menu__accordion.is-open .dc-mobile-menu__accordion-panel {
  opacity: 1;
}

.dc-mobile-menu__subitem {
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 38px;
  font-size: 13px;
  color: var(--dc-on-surface-variant);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 40px;
}

.dc-mobile-menu__subitem:hover,
.dc-mobile-menu__subitem:focus-visible {
  background: rgba(0, 0, 0, 0.03);
  color: var(--dc-navy-deep);
}

/* 6. Language Switch */
.dc-mobile-menu__lang-switch {
  display: flex;
  gap: 8px;
}

.dc-mobile-menu__lang-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1.5px solid rgba(196, 198, 207, 0.3);
  background: #fff;
  font-family: var(--dc-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--dc-on-surface-variant);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 42px;
}

.dc-mobile-menu__lang-btn:hover {
  border-color: var(--dc-gold);
  background: rgba(197, 160, 89, 0.04);
}

.dc-mobile-menu__lang-btn--active {
  border-color: var(--dc-gold);
  background: rgba(197, 160, 89, 0.08);
  color: var(--dc-navy-deep);
  font-weight: 600;
}

.dc-mobile-menu__lang-flag {
  font-size: 16px;
}

/* 7. Appearance Toggles */
.dc-mobile-menu__theme-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  border: 1.5px solid rgba(196, 198, 207, 0.3);
  background: #fff;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
  margin-bottom: 6px;
}

.dc-mobile-menu__theme-toggle:hover {
  border-color: var(--dc-gold);
  background: rgba(197, 160, 89, 0.04);
}

.dc-mobile-menu__theme-icon {
  font-size: 20px;
  color: var(--dc-on-surface-variant);
  flex-shrink: 0;
}

.dc-mobile-menu__theme-label {
  flex: 1;
  font-family: var(--dc-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--dc-on-surface);
  text-align: left;
}

.dc-mobile-menu__theme-switch {
  width: 44px;
  height: 26px;
  background: rgba(196, 198, 207, 0.4);
  border-radius: 9999px;
  position: relative;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.dc-mobile-menu__theme-switch.is-active {
  background: var(--dc-gold);
}

.dc-mobile-menu__theme-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dc-mobile-menu__theme-switch.is-active .dc-mobile-menu__theme-knob {
  transform: translateX(18px);
}

/* 8. Contact Methods */
.dc-mobile-menu__contacts {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.dc-mobile-menu__contact-btn {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1.5px solid rgba(196, 198, 207, 0.3);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--dc-on-surface-variant);
  transition: all 0.2s ease;
  cursor: pointer;
}

.dc-mobile-menu__contact-btn:hover {
  border-color: var(--dc-gold);
  background: rgba(197, 160, 89, 0.04);
  color: var(--dc-navy-deep);
  transform: translateY(-2px);
}

.dc-mobile-menu__contact-btn .material-symbols-outlined,
.dc-mobile-menu__contact-btn .bi {
  font-size: 20px;
}

/* 9. Trust Section (Google Rating) */
.dc-mobile-menu__rating {
  padding: 14px 16px;
  margin: 0 16px 8px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.08) 0%, rgba(197, 160, 89, 0.04) 100%);
  border-radius: 4px;
  text-align: center;
}

.dc-mobile-menu__rating-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.dc-mobile-menu__rating-stars .material-symbols-outlined {
  font-size: 18px;
  color: var(--dc-gold);
  font-variation-settings: 'FILL' 1;
}

.dc-mobile-menu__rating-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--dc-navy-deep);
  margin-bottom: 8px;
}

.dc-mobile-menu__rating-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.dc-mobile-menu__rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--dc-on-surface-variant);
  background: rgba(255, 255, 255, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
}

.dc-mobile-menu__rating-badge .material-symbols-outlined {
  font-size: 14px;
  color: var(--dc-gold);
}

/* 10. Version */
.dc-mobile-menu__version {
  text-align: center;
  font-size: 10px;
  color: var(--dc-on-surface-variant);
  opacity: 0.5;
  padding: 4px 20px 8px;
}

/* 11. Sticky Footer (Appointment Button) */
.dc-mobile-menu__footer {
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(196, 198, 207, 0.15);
  background: #fff;
  flex-shrink: 0;
  z-index: 2;
}

.dc-mobile-menu__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--dc-gold) 0%, #D4AF37 100%);
  color: #fff;
  font-family: var(--dc-font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px;
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.3);
}

.dc-mobile-menu__cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.dc-mobile-menu__cta-btn:active {
  transform: translateY(0) scale(0.98);
}

.dc-mobile-menu__cta-btn .material-symbols-outlined {
  font-size: 20px;
}

/* Staggered Animation — simplified to prevent content staying invisible */
.dc-mobile-menu.is-open .dc-mobile-menu__search,
.dc-mobile-menu.is-open .dc-mobile-menu__quick-actions,
.dc-mobile-menu.is-open .dc-mobile-menu__nav,
.dc-mobile-menu.is-open .dc-mobile-menu__section,
.dc-mobile-menu.is-open .dc-mobile-menu__rating,
.dc-mobile-menu.is-open .dc-mobile-menu__version {
  opacity: 1;
  transform: translateY(0);
}

/* Hide old mobile menu styles on mobile */
@media (max-width: 1024px) {
  .dc-mobile-dropdown,
  .dc-mobile-dropdown__toggle,
  .dc-mobile-dropdown__submenu {
    display: none;
  }
}

/* Hide old mobile menu contact buttons */
.dc-mobile-menu .btn-dc-outline,
.dc-mobile-menu .btn-dc-primary {
  display: none;
}

/* Large Text demo toggle */
html.dc-large-text {
  font-size: 17px;
}
html.dc-large-text body {
  font-size: 17px;
}
html.dc-large-text .dc-mobile-menu__item,
html.dc-large-text .dc-mobile-menu__accordion-toggle {
  font-size: 16px;
}
html.dc-large-text .dc-mobile-menu__subitem {
  font-size: 15px;
}
html.dc-large-text .dc-mobile-menu__section-label {
  font-size: 12px;
}

/* Reduce Motion demo toggle */
html.dc-reduce-motion *,
html.dc-reduce-motion *::before,
html.dc-reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
