/* ============================================================
   CASINOHOTELS.COM - CORE STYLESHEET
   Design System: JSON UI Specification
   ============================================================ */

:root {
  /* Colors */
  --color-primary-blue: #0D5BFF;
  --color-bright-blue: #155CFF;
  --color-dark-navy: #07145B;
  --color-deep-navy: #050E4C;
  --color-navy-gradient-start: #071B70;
  --color-navy-gradient-end: #03105A;
  --color-light-background: #F4F7FF;
  --color-light-blue: #E9F0FF;
  --color-white: #FFFFFF;
  --color-text-dark: #08134F;
  --color-text-primary: #101C58;
  --color-text-secondary: #66709A;
  --color-border: #D9E2FF;
  --color-border-hover: #B2C7FF;
  --color-accent-cyan: #24B9FF;
  --color-success: #3FD58A;
  --color-yellow: #FFD447;
  --color-orange: #FF8A42;
  --color-testimonial-star: #FFB800;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #07145B 0%, #0B257F 55%, #155CFF 100%);
  --grad-dark-section: linear-gradient(145deg, #07145B 0%, #040D4B 100%);
  --grad-stats: linear-gradient(110deg, #0B5EFF 0%, #0738C7 100%);
  --grad-blue-glow: radial-gradient(circle, rgba(20, 108, 255, 0.8), rgba(7, 20, 91, 0) 70%);

  /* Typography */
  --font-family: 'Inter', Arial, Helvetica, sans-serif;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Sizing and Spacing */
  --space-xs: 5px;
  --space-sm: 10px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 36px;
  --space-xxl: 56px;
  --space-section: 80px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 8px 30px rgba(14, 45, 120, 0.08);
  --shadow-floating: 0 12px 35px rgba(0, 40, 130, 0.15);
  --shadow-button: 0 5px 15px rgba(13, 91, 255, 0.25);
  --shadow-header: 0 2px 15px rgba(0, 0, 0, 0.08);

  /* Layout */
  --container-width: 1200px;
}

/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: 16px;
  background-color: var(--color-light-background);
  color: var(--color-text-primary);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  line-height: 1.55;
  font-size: 14px;
  font-weight: var(--weight-regular);
  color: var(--color-text-primary) !important;
  background-color: var(--color-light-background) !important;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

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

h1, h2, h3, h4, h5, h6, p, a, span, li {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--color-primary-blue);
  color: var(--color-white);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: var(--weight-semibold);
  font-size: 12px;
  z-index: 10000;
  transition: top 200ms ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 15px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  color: var(--color-text-dark);
  font-weight: var(--weight-bold);
  line-height: 1.15;
}

h1 {
  font-size: 52px;
  line-height: 0.98;
  letter-spacing: -1.5px;
}

h2 {
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.8px;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

h4 {
  font-size: 16px;
  line-height: 1.3;
}

p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-primary);
  margin-bottom: 14px;
}

p.lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
}

a {
  color: var(--color-primary-blue);
  text-decoration: none;
  transition: color 180ms ease;
}
a:hover {
  color: var(--color-bright-blue);
}

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

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

/* Eyebrow Label Pill */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font-size: 9px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-pill.light-theme {
  background: var(--color-light-blue);
  border: 1px solid var(--color-border);
  color: var(--color-primary-blue);
}

.section-eyebrow {
  font-size: 9px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-primary-blue);
  margin-bottom: 8px;
  display: block;
}

.section-eyebrow.cyan {
  color: var(--color-accent-cyan);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2px;
  text-decoration: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 200ms ease;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent-cyan);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--color-primary-blue) !important;
  color: var(--color-white) !important;
  border-color: #4A83FF;
  height: 38px;
  padding: 0 22px;
  box-shadow: var(--shadow-button);
}
.btn-primary:hover {
  background-color: #0848D6 !important;
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(13, 91, 255, 0.35);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent !important;
  color: var(--color-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  height: 38px;
  padding: 0 20px;
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--color-white);
  transform: translateY(-2px);
}
.btn-secondary:active {
  transform: translateY(0);
}

.btn-navy {
  background-color: var(--color-dark-navy) !important;
  color: var(--color-white) !important;
  height: 38px;
  padding: 0 22px;
}
.btn-navy:hover {
  background-color: var(--color-deep-navy) !important;
  transform: translateY(-2px);
}

.btn-outline-blue {
  background-color: transparent !important;
  color: var(--color-primary-blue) !important;
  border: 1px solid var(--color-primary-blue);
  height: 36px;
  padding: 0 18px;
}
.btn-outline-blue:hover {
  background-color: var(--color-primary-blue) !important;
  color: var(--color-white) !important;
  transform: translateY(-2px);
}

.btn-sm {
  height: 32px;
  padding: 0 16px;
  font-size: 10px;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 62px;
  background-color: var(--color-white) !important;
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow 250ms ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-header);
}

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

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo img,
.header-logo svg {
  height: 38px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 11px;
  font-weight: var(--weight-medium);
  color: #18235B;
  text-decoration: none;
  transition: color 180ms ease;
  position: relative;
  padding: 8px 0;
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-primary-blue) !important;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary-blue);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  height: 34px;
  padding: 0 18px;
  font-size: 10px;
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-pill);
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px;
  cursor: pointer;
  color: var(--color-text-dark);
}
.menu-toggle:focus-visible {
  outline: 2px solid var(--color-primary-blue);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background: var(--grad-hero) !important;
  color: var(--color-white);
  min-height: 520px;
  padding: 70px 0 65px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 450px;
  height: 450px;
  background: var(--grad-blue-glow);
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

.hero-circular-decor {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 24px;
  z-index: 2;
}

.hero-content {
  max-width: 520px;
}

.hero-heading {
  color: var(--color-white);
  font-size: 50px;
  line-height: 0.98;
  font-weight: var(--weight-bold);
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.hero-heading em {
  font-style: normal;
  color: var(--color-accent-cyan);
}

.hero-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.6;
  max-width: 450px;
  margin-bottom: 26px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: visible;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
}

/* Floating Award / Verification Badge */
.hero-badge {
  position: absolute;
  bottom: 25px;
  left: -25px;
  width: 96px;
  height: 96px;
  background: #06135C;
  border: 2px solid #245FFF;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 3;
}
.hero-badge .badge-icon {
  font-size: 16px;
  color: var(--color-yellow);
  margin-bottom: 2px;
}
.hero-badge .badge-text {
  font-size: 7.5px;
  font-weight: var(--weight-bold);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ============================================================
   QUICK STATS - 3 FLOATING OVERLAP CARDS
   ============================================================ */
.quick-stats-section {
  position: relative;
  z-index: 10;
  margin-top: -35px;
  padding-bottom: 20px;
}

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

.stat-card {
  height: 102px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-floating);
}

.stat-card.card-white {
  background-color: var(--color-white) !important;
  border: 1px solid var(--color-border);
}
.stat-card.card-white .stat-number {
  color: var(--color-text-dark);
}
.stat-card.card-white .stat-label {
  color: var(--color-text-secondary);
}

.stat-card.card-blue {
  background-color: var(--color-primary-blue) !important;
  color: var(--color-white);
}
.stat-card.card-blue .stat-number {
  color: var(--color-white);
}
.stat-card.card-blue .stat-label {
  color: rgba(255, 255, 255, 0.85);
}

.stat-card.card-navy {
  background-color: var(--color-dark-navy) !important;
  color: var(--color-white);
}
.stat-card.card-navy .stat-number {
  color: var(--color-accent-cyan);
}
.stat-card.card-navy .stat-label {
  color: rgba(255, 255, 255, 0.85);
}

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
}
.card-white .stat-icon {
  background: var(--color-light-blue);
  color: var(--color-primary-blue);
}

.stat-content {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-size: 24px;
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 11px;
  font-weight: var(--weight-medium);
  line-height: 1.3;
}

/* ============================================================
   INTRO SECTION - TEXT & IMAGE COLLAGE
   ============================================================ */
.intro-section {
  padding: 75px 0;
  background-color: var(--color-light-background);
}

.intro-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 36px;
}

.intro-content {
  max-width: 480px;
}

.intro-heading {
  font-size: 32px;
  line-height: 1.1;
  color: var(--color-text-dark);
  margin-bottom: 18px;
}

.intro-desc {
  color: var(--color-text-secondary);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.intro-collage {
  display: flex;
  position: relative;
  gap: 16px;
}

.collage-primary {
  width: 60%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.collage-primary img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.collage-secondary {
  width: 40%;
  margin-top: 35px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-floating);
}
.collage-secondary img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

/* ============================================================
   SOLUTIONS / FEATURE CARDS - DARK NAVY SECTION
   ============================================================ */
.solutions-section {
  background-color: var(--color-dark-navy) !important;
  padding: 80px 0;
  color: var(--color-white);
}

.section-header {
  margin-bottom: 40px;
}
.section-header.text-center {
  text-align: center;
}
.section-header.text-center .section-eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  color: var(--color-text-dark);
  max-width: 650px;
}
.section-header.text-center h2 {
  margin-left: auto;
  margin-right: auto;
}
.section-header p.subtext {
  color: var(--color-text-secondary);
  font-size: 13px;
  margin-top: 8px;
  max-width: 580px;
}
.section-header.text-center p.subtext {
  margin-left: auto;
  margin-right: auto;
}

/* Dark section overrides for section headers */
.solutions-section .section-header h2,
.process-section .section-header h2,
.testimonials-section .section-header h2,
.animated-svg-section .section-header h2,
.dark-section .section-header h2,
.section-dark .section-header h2 {
  color: var(--color-white) !important;
}
.solutions-section .section-header p.subtext,
.process-section .section-header p.subtext,
.testimonials-section .section-header p.subtext,
.animated-svg-section .section-header p.subtext,
.dark-section .section-header p.subtext,
.section-dark .section-header p.subtext {
  color: rgba(255, 255, 255, 0.78) !important;
}

/* Ensure all headings and paragraphs on light backgrounds are high-contrast dark */
.intro-section h1, .intro-section h2, .intro-section h3, .intro-section h4,
.portfolio-section h1, .portfolio-section h2, .portfolio-section h3, .portfolio-section h4,
.tool-contact-section h1, .tool-contact-section h2, .tool-contact-section h3, .tool-contact-section h4,
.dataviz-section h1, .dataviz-section h2, .dataviz-section h3, .dataviz-section h4,
.pricing-section h1, .pricing-section h2, .pricing-section h3, .pricing-section h4,
.blog-section h1, .blog-section h2, .blog-section h3, .blog-section h4 {
  color: var(--color-text-dark);
}

.intro-section p,
.portfolio-section p,
.tool-contact-section p,
.dataviz-section p,
.pricing-section p:not(.featured *),
.blog-section p {
  color: var(--color-text-primary);
}

.portfolio-section p.subtext,
.pricing-section p.subtext,
.blog-section p.subtext {
  color: var(--color-text-secondary) !important;
}

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  background-color: #F5F7FF !important;
  border-radius: var(--radius-md);
  padding: 12px;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 16px;
  min-height: 180px;
  box-shadow: var(--shadow-card);
  transition: transform 250ms ease, box-shadow 250ms ease;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.feature-card-visual {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.feature-card-visual img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  transition: transform 350ms ease;
}
.feature-card:hover .feature-card-visual img {
  transform: scale(1.04);
}

.feature-card-content {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card-eyebrow {
  font-size: 8.5px;
  font-weight: var(--weight-bold);
  color: var(--color-primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.feature-card-title {
  font-size: 18px;
  color: var(--color-text-dark);
  font-weight: var(--weight-bold);
  margin-bottom: 8px;
}

.feature-card-desc {
  font-size: 12px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}

.feature-card-link {
  font-size: 10px;
  font-weight: var(--weight-bold);
  color: var(--color-primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.feature-card-link:hover {
  text-decoration: underline;
}

/* Feature Card Scoring Badges */
.feature-scores {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.score-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-light-blue);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  color: var(--color-text-dark);
  font-weight: var(--weight-semibold);
}
.score-tag strong {
  color: var(--color-primary-blue);
}

/* ============================================================
   PROCESS TIMELINE - 4 STEPS HORIZONTAL / VERTICAL
   ============================================================ */
.process-section {
  background-color: var(--color-dark-navy) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0;
  color: var(--color-white);
}

.timeline-wrap {
  position: relative;
  margin-top: 45px;
}

.timeline-track {
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #2854D9;
  z-index: 1;
}

.timeline-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  z-index: 2;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--color-primary-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(13, 91, 255, 0.4);
  margin-bottom: 12px;
  transition: transform 250ms ease;
}
.timeline-step:hover .step-icon-wrap {
  transform: translateY(-3px);
  background: var(--color-bright-blue);
}

.step-number {
  font-size: 9px;
  font-weight: var(--weight-bold);
  color: var(--color-accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.step-title {
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 10px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 220px;
}

/* ============================================================
   PORTFOLIO / SHOWCASE - 4 COLUMNS
   ============================================================ */
.portfolio-section {
  background-color: var(--color-light-background);
  padding: 75px 0;
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.portfolio-card {
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  text-decoration: none;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}
.portfolio-card:hover img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 14px 14px;
  background: linear-gradient(transparent, rgba(7, 20, 91, 0.92));
  color: var(--color-white);
  transition: background 300ms ease;
}
.portfolio-card:hover .portfolio-overlay {
  background: linear-gradient(transparent, rgba(7, 20, 91, 0.98));
}

.portfolio-location {
  font-size: 8.5px;
  font-weight: var(--weight-bold);
  color: var(--color-accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.portfolio-title {
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-top: 2px;
}
.portfolio-tag {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
}

/* ============================================================
   INTERACTIVE TOOL & CONTACT SPLIT SECTION
   ============================================================ */
.tool-contact-section {
  padding: 75px 0;
  background-color: var(--color-light-background);
}

.tool-split-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 28px;
  align-items: start;
}

.tool-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.tool-box h3 {
  font-size: 20px;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}
.tool-box p.tool-desc {
  font-size: 11.5px;
  color: var(--color-text-secondary);
  margin-bottom: 18px;
}

.tool-form-group {
  margin-bottom: 14px;
}
.tool-form-group label {
  display: block;
  font-size: 10px;
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.tool-form-group select,
.tool-form-group input {
  width: 100%;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: 11px;
  font-family: var(--font-family);
  background: var(--color-white);
  color: var(--color-text-primary);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.tool-form-group select:focus,
.tool-form-group input:focus {
  outline: none;
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(13, 91, 255, 0.12);
}

.tool-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tool-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.tool-result-panel {
  margin-top: 18px;
  padding: 16px;
  background: var(--color-light-background);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.tool-result-panel h4 {
  font-size: 12px;
  color: var(--color-primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.tool-result-metric {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 11px;
  border-bottom: 1px dashed var(--color-border);
}
.tool-result-metric:last-child {
  border-bottom: none;
}
.tool-result-metric strong {
  color: var(--color-text-dark);
}

/* Contact Form Side */
.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.contact-card h3 {
  font-size: 20px;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 11.5px;
  color: var(--color-text-secondary);
  margin-bottom: 18px;
}

.form-field {
  margin-bottom: 12px;
}
.form-field label {
  display: block;
  font-size: 9.5px;
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 11px;
  font-family: var(--font-family);
  background: var(--color-white);
  color: var(--color-text-primary);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-field input {
  height: 38px;
}
.form-field textarea {
  resize: vertical;
  min-height: 80px;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(13, 91, 255, 0.12);
}

.form-status {
  margin-top: 10px;
  font-size: 11px;
  display: none;
}
.form-status.is-success {
  display: block;
  color: #198754;
  background: #E8F8F0;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   DATA VISUALIZATION - HOUSE EDGE COMPARISON CHART
   ============================================================ */
.dataviz-section {
  padding: 75px 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.dataviz-container {
  background: var(--color-light-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.chart-header {
  margin-bottom: 22px;
}
.chart-header h3 {
  font-size: 22px;
  color: var(--color-text-dark);
}
.chart-header p {
  font-size: 12px;
  color: var(--color-text-secondary);
  max-width: 680px;
}

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.chart-row {
  display: grid;
  grid-template-columns: 220px 1fr 85px;
  align-items: center;
  gap: 14px;
}

.chart-label {
  font-size: 11px;
  font-weight: var(--weight-semibold);
  color: var(--color-text-dark);
}

.chart-track {
  height: 24px;
  background: var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
}

.chart-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #0D5BFF, #24B9FF);
  transition: width 800ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}
.chart-fill.high-edge {
  background: linear-gradient(90deg, #FF8A42, #FF4D4D);
}

.chart-val {
  font-size: 11px;
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
  text-align: right;
}

.chart-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9.5px;
  color: var(--color-text-secondary);
}

/* ============================================================
   ANIMATED SVG - INSPECTION PIPELINE
   ============================================================ */
.animated-svg-section {
  padding: 75px 0;
  background-color: var(--color-dark-navy) !important;
  color: var(--color-white);
}

.svg-diagram-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-top: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.animated-pipeline-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Pulsing Node Keyframes for Animated SVG */
@keyframes pulseNode {
  0% {
    r: 6;
    opacity: 0.9;
  }
  50% {
    r: 9;
    opacity: 0.4;
  }
  100% {
    r: 6;
    opacity: 0.9;
  }
}

@keyframes dataFlow {
  0% {
    stroke-dashoffset: 60;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.pulse-node-glow {
  animation: pulseNode 2.2s infinite ease-in-out;
  transform-origin: center;
}

.flow-line {
  stroke-dasharray: 6 6;
  animation: dataFlow 3s infinite linear;
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .pulse-node-glow,
  .flow-line {
    animation: none !important;
  }
}

/* ============================================================
   TEAM GRID - 4 MEMBERS
   ============================================================ */
.team-section {
  padding: 75px 0;
  background-color: var(--color-light-background);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.team-card {
  background: var(--color-white);
  padding: 10px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-floating);
}

.team-image {
  height: 180px;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 10px;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 11px;
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
  margin-bottom: 2px;
}
.team-role {
  font-size: 8.5px;
  color: #7A83A4;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}
.team-bio {
  font-size: 9.5px;
  line-height: 1.4;
  color: var(--color-text-secondary);
}

/* ============================================================
   TESTIMONIALS / CRITIC REVIEWS - 3 COLUMNS
   ============================================================ */
.testimonials-section {
  background-color: var(--color-dark-navy) !important;
  padding: 75px 0;
  color: var(--color-white);
}

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

.testimonial-card {
  background-color: var(--color-white) !important;
  border-radius: var(--radius-md);
  padding: 20px;
  min-height: 180px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color-text-primary);
}

.testimonial-stars {
  color: var(--color-testimonial-star);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-quote {
  font-size: 11px;
  line-height: 1.6;
  color: #465072;
  font-style: italic;
  margin-bottom: 14px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-light-blue);
  color: var(--color-primary-blue);
  font-weight: var(--weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.author-name {
  font-size: 10px;
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
}
.author-role {
  font-size: 8px;
  color: #7A83A4;
}

/* ============================================================
   PRICING / RESORT TIERS - 3 CARDS
   ============================================================ */
.pricing-section {
  padding: 80px 0;
  background-color: var(--color-light-background);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 36px;
}

.pricing-card {
  background-color: var(--color-white) !important;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  min-height: 340px;
  box-shadow: var(--shadow-card);
  transition: transform 250ms ease, box-shadow 250ms ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-tier-name {
  font-size: 11px;
  font-weight: var(--weight-bold);
  color: var(--color-primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.pricing-title {
  font-size: 22px;
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.pricing-features {
  list-style: none;
  font-size: 10px;
  line-height: 2.1;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  flex-grow: 1;
}
.pricing-features li {
  position: relative;
  padding-left: 18px;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary-blue);
  font-weight: var(--weight-bold);
}

/* Center Featured Card */
.pricing-card.featured {
  background-color: var(--color-dark-navy) !important;
  color: var(--color-white);
  border: none;
  transform: scale(1.04);
  box-shadow: var(--shadow-floating);
}
.pricing-card.featured .pricing-tier-name {
  color: var(--color-accent-cyan);
}
.pricing-card.featured .pricing-title {
  color: var(--color-white);
}
.pricing-card.featured .pricing-features {
  color: rgba(255, 255, 255, 0.85);
}
.pricing-card.featured .pricing-features li::before {
  color: var(--color-accent-cyan);
}
.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-5px);
}

/* ============================================================
   STATS BANNER - 4 METRIC STRIP
   ============================================================ */
.stats-banner {
  background: var(--grad-stats) !important;
  color: var(--color-white);
  padding: 30px 0;
}

.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.banner-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-stat-value {
  font-size: 26px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.5px;
}
.banner-stat-label {
  font-size: 9px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3px;
}

/* ============================================================
   BLOG / LATEST INSIGHTS - 3 COLUMNS
   ============================================================ */
.blog-section {
  padding: 75px 0;
  background-color: var(--color-light-background);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 35px;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: transform 250ms ease, box-shadow 250ms ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-floating);
}

.blog-card-visual {
  height: 160px;
  overflow: hidden;
}
.blog-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}
.blog-card:hover .blog-card-visual img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-category {
  font-size: 8px;
  font-weight: var(--weight-bold);
  color: var(--color-primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.blog-title {
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
  line-height: 1.35;
  margin-bottom: 8px;
}

.blog-excerpt {
  font-size: 9.5px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
  flex-grow: 1;
}

.blog-meta {
  font-size: 8px;
  color: #8992AE;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: 8px;
}

/* ============================================================
   NEWSLETTER FLOATING BAR - 55PX HEIGHT
   ============================================================ */
.newsletter-bar {
  background-color: var(--color-primary-blue) !important;
  color: var(--color-white);
  padding: 12px 0;
  position: relative;
  z-index: 5;
}

.newsletter-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.newsletter-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.newsletter-info svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.newsletter-title {
  font-size: 12px;
  font-weight: var(--weight-bold);
}
.newsletter-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
}
.newsletter-input {
  height: 36px;
  width: 250px;
  border-radius: var(--radius-pill);
  border: none;
  padding: 0 16px;
  font-size: 11px;
  font-family: var(--font-family);
  background: var(--color-white);
  color: #111111;
}
.newsletter-input:focus {
  outline: 2px solid var(--color-accent-cyan);
}
.newsletter-btn {
  height: 36px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: none;
  background-color: var(--color-dark-navy) !important;
  color: var(--color-white) !important;
  font-size: 10px;
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: background 200ms ease;
}
.newsletter-btn:hover {
  background-color: var(--color-deep-navy) !important;
}

/* ============================================================
   DARK FOOTER - 4 COLUMNS
   ============================================================ */
.site-footer {
  background-color: var(--color-deep-navy) !important;
  color: var(--color-white);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-brand p {
  font-size: 10.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 11px;
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease;
}
.social-icon:hover {
  background: var(--color-primary-blue);
  transform: translateY(-2px);
  color:white;
}

.footer-heading {
  font-size: 10px;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 180ms ease;
}
.footer-links a:hover {
  color: var(--color-white);
}

.footer-newsletter p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

/* Copyright Bar */
.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}
.legal-nav {
  display: flex;
  gap: 14px;
}
.legal-nav a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.legal-nav a:hover {
  color: var(--color-white);
}

/* ============================================================
   SUBPAGE & LONG-FORM EDITORIAL STYLES
   ============================================================ */
.subpage-hero {
  background: var(--grad-dark-section) !important;
  color: var(--color-white);
  padding: 55px 0 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.subpage-hero h1 {
  color: var(--color-white);
  font-size: 44px;
  line-height: 1.05;
  margin: 10px 0 12px;
}
.subpage-hero p.hero-lead {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  line-height: 1.6;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--color-white);
}
.breadcrumbs span.separator {
  color: rgba(255, 255, 255, 0.4);
}

/* Table of Contents */
.toc-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 28px 0 35px;
  box-shadow: var(--shadow-card);
}
.toc-box h3 {
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.toc-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}
.toc-list a {
  font-size: 11px;
  color: var(--color-primary-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.toc-list a:hover {
  text-decoration: underline;
}

/* Long Form Content Layout */
.editorial-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  padding: 60px 24px 80px;
}

.editorial-body h2 {
  font-size: 26px;
  color: var(--color-text-dark);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.editorial-body h3 {
  font-size: 18px;
  color: var(--color-text-dark);
  margin: 24px 0 10px;
}
.editorial-body p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}
.editorial-body ul,
.editorial-body ol {
  margin: 0 0 18px 24px;
  font-size: 13.5px;
  line-height: 1.65;
}
.editorial-body li {
  margin-bottom: 6px;
}

/* Sidebar Box */
.sidebar-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}
.sidebar-box h4 {
  font-size: 13px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-border);
}

/* Data Table System */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  font-size: 12px;
  text-align: left;
}
.data-table th,
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
}
.data-table th {
  background: var(--color-dark-navy);
  color: var(--color-white);
  font-weight: var(--weight-bold);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.data-table tr:last-child td {
  border-bottom: none;
}
.data-table tr:hover td {
  background: var(--color-light-background);
}

/* FAQ Accordion */
.faq-section {
  padding: 60px 0;
  background-color: var(--color-light-background);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
  text-align: left;
  cursor: pointer;
}
.faq-question:focus-visible {
  outline: 2px solid var(--color-primary-blue);
}
.faq-icon {
  font-size: 16px;
  color: var(--color-primary-blue);
  transition: transform 250ms ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
  padding: 0 20px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}
.faq-item.is-open .faq-answer {
  max-height: 350px;
  padding: 0 20px 18px;
}

/* Resort Review Single Cards for Directory Page */
.resort-detail-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  margin-bottom: 35px;
  overflow: hidden;
}
.resort-detail-header {
  display: grid;
  grid-template-columns: 45% 55%;
  background: var(--grad-dark-section);
  color: var(--color-white);
}
.resort-detail-img {
  height: 280px;
  position: relative;
}
.resort-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resort-detail-meta {
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.resort-rank-pill {
  display: inline-block;
  font-size: 8.5px;
  font-weight: var(--weight-bold);
  color: var(--color-accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}
.resort-detail-meta h3 {
  color: var(--color-white);
  font-size: 26px;
  margin-bottom: 4px;
}
.resort-location-tag {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.resort-dual-scores {
  display: flex;
  gap: 16px;
}
.score-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.score-box .score-val {
  font-size: 22px;
  font-weight: var(--weight-bold);
  color: var(--color-yellow);
}
.score-box .score-txt {
  font-size: 9px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.resort-detail-body {
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}
.resort-fact-sheet {
  background: var(--color-light-background);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--color-border);
  height: fit-content;
}
.resort-fact-sheet h5 {
  font-size: 11px;
  color: var(--color-text-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.fact-row {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--color-border);
}
.fact-row:last-child {
  border-bottom: none;
}
.fact-row dt {
  color: var(--color-text-secondary);
}
.fact-row dd {
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
}
