/* ============================================================
   TiruvannamalaiRooms.com — Design System
   Premium accommodation agency — Navy & Gold
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Primary Palette — from logo */
  --navy-900: #1A1A2E;
  --navy-800: #232147;
  --navy-700: #2D2B55;
  --navy-600: #3D3A6B;
  --navy-500: #4D4A80;
  --navy-400: #6E6B9A;
  --navy-300: #9895B8;
  --navy-200: #C2C0D6;
  --navy-100: #E6E5EF;
  --navy-50: #F3F2F8;

  --gold-600: #9A7B2F;
  --gold-500: #C8A951;
  --gold-400: #D4B968;
  --gold-300: #E0CA82;
  --gold-200: #ECDBAA;
  --gold-100: #F5EDD0;
  --gold-50: #FBF7E8;

  /* Semantic Colors */
  --primary: var(--navy-700);
  --primary-dark: var(--navy-900);
  --primary-light: var(--navy-100);
  --accent: var(--gold-500);
  --accent-dark: var(--gold-600);
  --accent-light: var(--gold-100);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-50: #FAFAF9;
  --gray-100: #F4F3F1;
  --gray-200: #E8E6E3;
  --gray-300: #D4D1CC;
  --gray-400: #A8A29E;
  --gray-500: #78716C;
  --gray-600: #57534E;
  --gray-700: #44403C;
  --gray-800: #292524;
  --gray-900: #1C1917;

  /* Feedback */
  --success: #16A34A;
  --warning: #EAB308;
  --error: #DC2626;
  --info: #2563EB;

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes — fluid */
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  --text-lg: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --text-xl: clamp(1.15rem, 1.05rem + 0.5vw, 1.25rem);
  --text-2xl: clamp(1.35rem, 1.15rem + 1vw, 1.5rem);
  --text-3xl: clamp(1.6rem, 1.3rem + 1.5vw, 1.875rem);
  --text-4xl: clamp(1.9rem, 1.4rem + 2.5vw, 2.25rem);
  --text-5xl: clamp(2.2rem, 1.5rem + 3.5vw, 3rem);
  --text-6xl: clamp(2.5rem, 1.5rem + 5vw, 3.75rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 26, 46, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(26, 26, 46, 0.07), 0 2px 4px -2px rgba(26, 26, 46, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(26, 26, 46, 0.08), 0 4px 6px -4px rgba(26, 26, 46, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(26, 26, 46, 0.1), 0 8px 10px -6px rgba(26, 26, 46, 0.05);
  --shadow-2xl: 0 25px 50px -12px rgba(26, 26, 46, 0.2);
  --shadow-gold: 0 4px 14px rgba(200, 169, 81, 0.3);
  --shadow-navy: 0 4px 14px rgba(45, 43, 85, 0.2);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  --container-2xl: 1400px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure no element can force a wider layout */
img,
video,
svg,
div,
p,
h1, h2, h3, h4, h5, h6,
span,
a {
  max-width: 100%;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy-700);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy-900);
  font-weight: 600;
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-4);
  color: var(--gray-600);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-12);
  }
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-20) 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--space-24) 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: var(--text-lg);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-gold {
  color: var(--accent);
}

.text-navy {
  color: var(--navy-700);
}

.bg-navy {
  background-color: var(--navy-700);
}

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

.bg-gold-50 {
  background-color: var(--gold-50);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-gold {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 169, 81, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(200, 169, 81, 0);
  }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-modal);
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 169, 81, 0.15);
  transition: all var(--transition-base);
  min-height: var(--header-height);
}

.site-header.scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding-top: 5px;
  padding-bottom: 5px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: clamp(13px, 4vw, var(--text-lg));
  font-weight: 700;
  color: var(--white);
  white-space: normal;
  word-break: break-word;
}

.logo-text .brand-tagline {
  font-size: clamp(9px, 2.5vw, var(--text-xs));
  color: var(--gold-300);
  letter-spacing: 0.05em;
  white-space: normal;
  word-break: break-word;
}

/* Desktop nav */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }
}

.main-nav a {
  color: var(--navy-200);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(200, 169, 81, 0.15);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--navy-800);
  border: 1px solid rgba(200, 169, 81, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-2);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-dropdown);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

.nav-dropdown-menu a {
  display: block;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
}

.nav-dropdown-menu a:hover {
  background: rgba(200, 169, 81, 0.1);
}

/* Header CTAs */
.header-cta {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }
}

.header-cta .btn-whatsapp-sm {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.header-cta .btn-whatsapp-sm:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: var(--z-modal);
}

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

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: var(--z-overlay);
  padding-top: var(--header-height);
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.3s ease-out;
}

.mobile-nav-inner {
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-nav a {
  display: block;
  color: var(--navy-200);
  font-size: var(--text-lg);
  font-weight: 500;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--white);
  background: rgba(200, 169, 81, 0.1);
  border-left-color: var(--accent);
}

.mobile-nav-group-title {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  padding: var(--space-4) var(--space-4) var(--space-1);
  margin-top: var(--space-2);
}

.mobile-nav-cta {
  padding: var(--space-6) var(--space-5);
  border-top: 1px solid rgba(200, 169, 81, 0.15);
  margin-top: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.4;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  border-radius: var(--radius-xl);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 169, 81, 0.4);
  color: var(--navy-900);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--navy-200);
}

.btn-outline:hover {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  font-size: var(--text-lg);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-xl);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  color: var(--white);
}

.btn-whatsapp svg,
.btn-whatsapp-sm svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-ghost {
  background: transparent;
  color: var(--navy-700);
}

.btn-ghost:hover {
  background: var(--navy-50);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + var(--space-8));
  padding-bottom: var(--space-12);
  background: var(--navy-900);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: var(--header-height);
    padding-bottom: 0;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(26, 26, 46, 0.6) 0%,
      rgba(26, 26, 46, 0.4) 40%,
      rgba(26, 26, 46, 0.7) 70%,
      rgba(26, 26, 46, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-8) 0 var(--space-12);
}

.hero-text {
  max-width: 700px;
  text-align: center;
  margin: 0 auto var(--space-10);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(200, 169, 81, 0.15);
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gold-300);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 .highlight {
  color: var(--gold-400);
  display: inline;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--navy-200);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--navy-300);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
  flex-shrink: 0;
}

/* ============================================================
   FIND MY ROOM FORM
   ============================================================ */
.find-room {
  background: var(--navy-900);
  position: relative;
  padding-top: var(--space-8);
}

@media (min-width: 768px) {
  .find-room {
    padding-top: var(--space-16);
  }
}

.find-room::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, var(--navy-900) 100%);
  pointer-events: none;
}

.form-card {
  position: relative;
  z-index: 1;
  background: rgba(45, 43, 85, 0.5);
  border: 1px solid rgba(200, 169, 81, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-2xl);
}

@media (min-width: 768px) {
  .form-card {
    padding: var(--space-12);
  }
}

.form-card-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.form-card-header h2 {
  color: var(--white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

.form-card-header p {
  color: var(--navy-300);
  font-size: var(--text-base);
  margin-bottom: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: var(--space-3) var(--space-4);
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(200, 169, 81, 0.2);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--navy-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C8A951'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Checkbox group for requirements */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.checkbox-item {
  position: relative;
}

.checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-item label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(200, 169, 81, 0.2);
  border-radius: var(--radius-full);
  color: var(--navy-200);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
}

.checkbox-item input:checked+label {
  background: rgba(200, 169, 81, 0.2);
  border-color: var(--gold-400);
  color: var(--gold-300);
}

.checkbox-item label:hover {
  border-color: var(--gold-400);
}

.checkbox-item input:focus-visible+label {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-submit {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.form-note {
  font-size: var(--text-sm);
  color: var(--navy-400);
  text-align: center;
}

.form-note svg {
  display: inline;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
}

/* Guest count stepper */
.guest-stepper {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.guest-stepper button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(200, 169, 81, 0.15);
  border: 1px solid rgba(200, 169, 81, 0.3);
  color: var(--gold-400);
  font-size: var(--text-xl);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.guest-stepper button:hover {
  background: rgba(200, 169, 81, 0.3);
}

.guest-stepper span {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  min-width: 30px;
  text-align: center;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-200);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background: var(--navy-700);
  color: var(--gold-300);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-body {
  padding: var(--space-5);
}

.card-body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.card-body p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.card-meta svg {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
}

/* Area cards */
.area-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.area-card:hover img {
  transform: scale(1.08);
}

.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 26, 46, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-5);
}

.area-card-overlay h3 {
  color: var(--white);
  font-size: var(--text-xl);
  margin-bottom: var(--space-1);
}

.area-card-overlay p {
  color: var(--navy-200);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Feature cards */
.feature-card {
  padding: var(--space-8);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-200);
}

.feature-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
  border-radius: var(--radius-xl);
  color: var(--gold-600);
}

.feature-card-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  font-family: var(--font-body);
  font-weight: 600;
}

.feature-card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Category cards */
.category-card {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  text-decoration: none;
}

.category-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-200);
}

.category-card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-50);
  border-radius: var(--radius-lg);
  color: var(--navy-700);
  font-size: 24px;
}

.category-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
  font-family: var(--font-body);
  font-weight: 600;
}

.category-card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
  color: var(--gray-500);
}

.category-card .arrow {
  margin-left: auto;
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.category-card:hover .arrow {
  color: var(--gold-500);
  transform: translateX(4px);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: var(--gold-400);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  border: 2px solid var(--gold-400);
}

.step-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  font-family: var(--font-body);
  font-weight: 600;
}

.step-card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Step connector line */
@media (min-width: 768px) {
  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -12px;
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-200));
    transform: translateX(50%);
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--gold-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--white);
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy-800);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-content p {
  color: var(--navy-200);
  font-size: var(--text-lg);
  max-width: 500px;
  margin: 0 auto var(--space-8);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 480px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-900);
  color: var(--navy-200);
  border-top: 1px solid rgba(200, 169, 81, 0.15);
}

.footer-main {
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  padding: 10px;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
    padding: 10px;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: var(--navy-300);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--navy-300);
}

.footer-contact-item a {
  color: var(--navy-200);
}

.footer-contact-item a:hover {
  color: var(--gold-400);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold-500);
}

.footer-column h4 {
  color: var(--white);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: var(--navy-300);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a:hover {
  color: var(--gold-400);
  transform: translateX(4px);
}

.footer-bottom {
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(200, 169, 81, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: var(--navy-400);
  font-size: var(--text-xs);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-4);
}

.footer-bottom-links a {
  color: var(--navy-400);
  font-size: var(--text-xs);
}

.footer-bottom-links a:hover {
  color: var(--gold-400);
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-3) var(--space-4);
  gap: var(--space-3);
  border-top: 1px solid rgba(200, 169, 81, 0.2);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

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

@media (min-width: 1024px) {
  .sticky-cta {
    display: none;
  }
}

.sticky-cta .btn {
  flex: 1;
  min-width: 0;
  justify-content: center;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-3);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding: var(--space-4) 0;
  margin-top: var(--header-height);
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumbs-list a {
  color: var(--gray-500);
}

.breadcrumbs-list a:hover {
  color: var(--gold-500);
}

.breadcrumbs-list .separator {
  color: var(--gray-400);
  font-size: var(--text-xs);
}

.breadcrumbs-list .current {
  color: white;
  font-weight: 500;
}

/* ============================================================
   CONTENT PAGES
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  display: none;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.page-hero p {
  color: var(--navy-200);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: var(--space-12) 0 var(--space-16);
}

.page-content .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  font-size: var(--text-3xl);
}

.content-wrapper h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  font-size: var(--text-2xl);
}

.content-wrapper p {
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.content-wrapper ul {
  list-style: disc;
}

.content-wrapper ol {
  list-style: decimal;
}

.content-wrapper li {
  margin-bottom: var(--space-2);
  color: var(--gray-600);
  line-height: 1.7;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

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

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

/* ============================================================
   INFO CARDS (for guide pages)
   ============================================================ */
.info-card {
  padding: var(--space-6);
  background: var(--gold-50);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--gold-500);
}

.info-card h3 {
  font-size: var(--text-lg);
  font-family: var(--font-body);
  margin-bottom: var(--space-3);
}

.info-card p {
  margin-bottom: 0;
}

/* Verification badge */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold-600);
}

.verified-badge svg {
  width: 14px;
  height: 14px;
}

/* ============================================================
   PROPERTY LISTING
   ============================================================ */
.property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 600px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.property-placeholder {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  background: var(--gray-50);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-xl);
}

.property-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--gray-400);
  margin: 0 auto var(--space-4);
}

.property-placeholder h3 {
  color: var(--gray-600);
  font-family: var(--font-body);
  margin-bottom: var(--space-2);
}

.property-placeholder p {
  color: var(--gray-500);
  font-size: var(--text-sm);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: var(--gold-200);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--navy-50);
  color: var(--navy-700);
}

.contact-card h3 {
  font-size: var(--text-lg);
  font-family: var(--font-body);
  margin-bottom: var(--space-1);
}

.contact-card p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

.contact-card a {
  font-weight: 600;
  color: var(--gold-600);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-200);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content p {
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

/* ============================================================
   PARTNER PAGE
   ============================================================ */
.partner-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .partner-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

.partner-benefit {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.partner-benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-50);
  border-radius: var(--radius-md);
  color: var(--gold-600);
  font-size: 20px;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  text-align: center;
  padding: var(--space-8);
}

.error-page h1 {
  color: var(--gold-400);
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.error-page h2 {
  color: var(--white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.error-page p {
  color: var(--navy-300);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--navy-700);
  color: var(--gold-400);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-sticky);
  border: 1px solid rgba(200, 169, 81, 0.2);
}

@media (min-width: 1024px) {
  .scroll-top {
    bottom: 30px;
  }
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--accent);
  color: var(--navy-900);
  transform: translateY(-2px);
}

/* ============================================================
   LOADING SKELETON
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {

  .site-header,
  .sticky-cta,
  .scroll-top,
  .mobile-nav {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* ============================================================
   GOOGLE TRANSLATE WIDGET
   ============================================================ */
/* Push the header container to the right to carve out a permanent safe-zone for the widget */
.site-header .container {
  padding-left: 90px !important;
}

@media (min-width: 1024px) {
  .site-header .container {
    padding-left: 140px !important;
  }
}

.g-translate-wrapper {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

@media (min-width: 1024px) {
  .g-translate-wrapper {
    left: 15px;
  }
}

/* Hide Google's top banner and text */
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0px !important;
  line-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.goog-te-gadget .goog-te-combo {
  margin: 0 !important;
}

/* Style the select box for a premium look */
.goog-te-combo {
  padding: 6px 20px 6px 8px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background-color: rgba(26, 26, 46, 0.95) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  outline: none !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 4px center !important;
  background-size: 10px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.2s ease !important;
  max-width: 75px !important;
}

@media (min-width: 1024px) {
  .goog-te-combo {
    padding: 8px 32px 8px 12px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    background-position: right 10px center !important;
    background-size: 14px !important;
    max-width: none !important;
  }
}

.goog-te-combo:hover,
.goog-te-combo:focus {
  border-color: rgba(200, 169, 81, 1) !important;
  background-color: rgba(0, 0, 0, 0.6) !important;
}