/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (OKLCH)
   ========================================================================== */
:root {
  /* Color Palette */
  --bg-carrara-white: oklch(1.00 0.00 0);        /* Pure white base */
  --surface-carrara-tint: oklch(0.975 0.004 230); /* Very soft gray-blue vein tint */
  --surface-hover: oklch(0.95 0.006 230);          /* Surface hover state */
  
  --primary-azul-bahia: oklch(0.25 0.07 230);     /* Deep cobalt/navy */
  --primary-hover: oklch(0.18 0.05 230);          /* Deep navy hover */
  
  --accent-calacatta-gold: oklch(0.74 0.11 85);   /* Warm Calacatta gold vein */
  --accent-hover: oklch(0.68 0.11 80);            /* Darker gold hover */
  --accent-text-gold: oklch(0.48 0.08 85);        /* High-contrast gold/bronze for text on light bg */
  
  --ink-deep-slate: oklch(0.15 0.01 230);         /* Main text ink */
  --muted-slate: oklch(0.48 0.01 230);            /* Secondary text and line work */
  --border-light: oklch(0.90 0.005 230);          /* Light borders */
  
  /* Typography Scale */
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Albert Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Layout & Spacing */
  --container-max-width: 1280px;
  --header-height: 80px;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Shapes */
  --radius-button: 100px;
  --radius-card: 16px;
  
  /* Z-Index Hierarchy */
  --z-announcement: 1000;
  --z-header: 990;
  --z-mobile-menu: 980;
  --z-above: 10;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-deep-slate);
  background-color: var(--bg-carrara-white);
}

/* Typography elements */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--primary-azul-bahia);
  text-wrap: balance;
}

p {
  max-width: 70ch;
  text-wrap: pretty;
}

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

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

/* ==========================================================================
   ACCESSIBILITY: PREFERS REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  
  .fade-in-up, .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   LAYOUT STRUCTURE & GRID
   ========================================================================== */
.section-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 80px 24px;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-text-gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-slate);
  margin-bottom: 40px;
  max-width: 600px;
}

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

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 36px;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary-azul-bahia);
  color: var(--bg-carrara-white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-azul-bahia);
  color: var(--primary-azul-bahia);
}

.btn-outline:hover {
  background-color: var(--surface-carrara-tint);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   ANNOUNCEMENT BAR & HEADER
   ========================================================================== */
.announcement-bar {
  background-color: var(--primary-azul-bahia);
  color: var(--bg-carrara-white);
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  z-index: var(--z-announcement);
  position: relative;
}

.main-header {
  position: absolute;
  top: 33px; /* sits below relative announcement bar on desktop */
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  z-index: var(--z-header);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
  .announcement-bar {
    display: none;
  }
  .main-header,
  .main-header.scrolled {
    top: 0;
  }
}

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

.logo {
  display: flex;
  flex-direction: column;
  color: var(--primary-azul-bahia); /* Original dark logo */
  font-family: var(--font-display);
  transition: var(--transition-fast);
}

.logo-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--accent-text-gold); /* Original warm gold/bronze */
  transition: var(--transition-fast);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-deep-slate); /* Original dark links */
  position: relative;
  padding: 4px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--accent-calacatta-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover {
  color: var(--primary-azul-bahia);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta-btn {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary-azul-bahia); /* Original dark CTA */
  border: 1.5px solid var(--primary-azul-bahia);
  padding: 8px 24px;
  border-radius: var(--radius-button);
  transition: var(--transition-fast);
}

.nav-cta-btn:hover {
  background-color: var(--primary-azul-bahia);
  color: var(--bg-carrara-white);
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  color: var(--primary-azul-bahia); /* Original dark hamburger icon */
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
  .mobile-nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: calc(var(--header-height) + 33px); /* account for announcement bar on load */
    right: 0;
    width: 100%;
    height: calc(150vh - var(--header-height));
    background-color: var(--bg-carrara-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 48px;
    gap: 40px;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    border-left: 1px solid var(--border-light);
    box-shadow: -10px 0 30px rgba(0,0,0,0.02);
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 28px;
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.3rem;
  }
  
  .nav-cta-btn {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background-image: url('images/new-hero-Europa.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 100px 0; /* Add padding top to account for transparent header position */
  margin-top: calc(-1 * var(--header-height)); /* Pull it up behind header */
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--ink-deep-slate);
}

/* Subtle background architectural grid pattern overlay */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(var(--border-light) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr; /* Sized to give more breathing room to text */
  align-items: center;
  gap: 60px;
  position: relative;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: var(--z-above);
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem); /* Slightly smaller font size as requested */
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  color: var(--primary-azul-bahia);
}

.hero-description {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--ink-deep-slate);
  margin-bottom: 40px;
  max-width: 550px; /* Limits width to avoid overlapping image features */
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(11, 37, 30, 0.08);
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--accent-text-gold);
}

.badge-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--primary-azul-bahia);
  font-weight: 600;
}

.badge-sub {
  font-size: 0.75rem;
  color: var(--muted-slate);
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-img {
    height: 380px;
  }
}

/* ==========================================================================
   ABOUT SECTION (OUR HERITAGE)
   ========================================================================== */
.about-section {
  background-color: var(--surface-carrara-tint);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.about-visual {
  position: relative;
}

.image-frame-container {
  position: relative;
  border-radius: var(--radius-card);
  box-shadow: 0 16px 36px -12px rgba(11, 37, 30, 0.08);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-card);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text p {
  margin-bottom: 24px;
  color: var(--ink-deep-slate);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-img {
    height: 360px;
  }
  
  .about-content {
    padding: 0;
  }
}

/* ==========================================================================
   STONE SELECTION GALLERY (LUMINOUS CARRARA THEME)
   ========================================================================== */
.gallery-section {
  position: relative;
  background-image: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url('images/Background_Marble_Calacatta.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

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

@media (max-width: 968px) {
  .stone-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .stone-grid {
    grid-template-columns: 1fr;
  }
}

.stone-card {
  background-color: var(--bg-carrara-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.03);
}

.stone-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-calacatta-gold);
  box-shadow: 0 20px 40px -12px rgba(11, 37, 30, 0.08);
}

.stone-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.stone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

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

.stone-category-tag {
  display: inline-block;
  align-self: flex-start;
  background-color: var(--surface-carrara-tint);
  color: var(--accent-text-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 5px 14px;
  border-radius: var(--radius-button);
  border: 1px solid var(--border-light);
  margin-bottom: 12px;
}

.stone-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.stone-name {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-azul-bahia);
}

.stone-description {
  font-size: 0.92rem;
  color: var(--ink-deep-slate);
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}

.stone-specs {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted-slate);
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.stone-specs strong {
  color: var(--primary-azul-bahia);
}

/* Animation classes for filtering */
.stone-card.hide {
  display: none;
}

/* ==========================================================================
   THE PROCESS SECTION (CHISELED PATH GRID - DEEP NAVY BREAK)
   ========================================================================== */
.process-section {
  background-color: var(--primary-azul-bahia);
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding: 100px 0;
}

.process-section .section-title {
  color: #FFFFFF;
}

.process-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.process-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  padding: 36px 30px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-calacatta-gold);
  background-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 
              0 0 20px 0 rgba(212, 175, 55, 0.15);
}

.step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
}

.step-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-calacatta-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.15);
  border: 1.5px solid var(--accent-calacatta-gold);
  color: var(--accent-calacatta-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.process-card:hover .step-badge {
  background-color: var(--accent-calacatta-gold);
  color: var(--primary-azul-bahia);
  border-color: var(--accent-calacatta-gold);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.step-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ==========================================================================
   INTERACTIVE ESTIMATOR SECTION
   ========================================================================== */
.estimator-section {
  position: relative;
  background-image: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url('images/Background_Marble_Calacatta.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.estimator-card {
  padding: 48px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px -12px rgba(11, 37, 30, 0.06);
}

.estimator-intro {
  margin-bottom: 32px;
  color: var(--muted-slate);
}

.estimator-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--primary-azul-bahia);
}

/* Custom Shape Selection (Radio Cards) */
.layout-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.layout-radio-card {
  cursor: pointer;
}

.layout-radio-card input {
  display: none;
}

.layout-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background-color: var(--bg-carrara-white);
  transition: var(--transition-smooth);
}

.layout-svg {
  width: 50px;
  height: 35px;
  color: var(--muted-slate);
  transition: var(--transition-smooth);
}

.layout-card-content span {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.layout-radio-card input:checked + .layout-card-content {
  border-color: var(--primary-azul-bahia);
  background-color: var(--surface-carrara-tint);
  box-shadow: 0 4px 12px rgba(11, 37, 30, 0.03);
}

.layout-radio-card input:checked + .layout-card-content .layout-svg {
  color: var(--primary-azul-bahia);
}

/* Select element styling */
.form-select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-carrara-white);
  color: var(--ink-deep-slate);
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.form-select:focus {
  border-color: var(--primary-azul-bahia);
}

/* Range input layout */
.label-with-value {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.range-val-indicator {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-azul-bahia);
}

.form-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border-light);
  outline: none;
}

.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-azul-bahia);
  cursor: pointer;
  transition: transform 0.1s;
}

.form-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.form-help {
  font-size: 0.75rem;
  color: var(--muted-slate);
}

/* Drenched Navy Result Panel */
.estimator-result {
  background-color: var(--primary-azul-bahia);
  color: var(--bg-carrara-white);
  border-radius: var(--radius-card);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 40px -10px rgba(11, 37, 30, 0.12);
}

/* Giant background watermark word */
.result-backdrop-text {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 6.5rem);
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  line-height: 1;
}

.result-content {
  position: relative;
  z-index: var(--z-above);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.result-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-calacatta-gold);
  margin-bottom: 12px;
}

.price-display {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.price-display .currency {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent-calacatta-gold);
  line-height: 1.2;
}

.price-display .price-number {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
}

.price-disclaimer {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 32px;
}

.result-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.result-summary-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: var(--bg-carrara-white);
  font-family: var(--font-body);
}

.result-summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.result-summary-list li {
  font-size: 0.9rem;
  opacity: 0.9;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.summary-val {
  font-weight: 600;
  color: var(--accent-calacatta-gold);
}

.estimator-result .btn-primary {
  background-color: var(--accent-calacatta-gold);
  color: var(--ink-deep-slate);
}

.estimator-result .btn-primary:hover {
  background-color: var(--bg-carrara-white);
  color: var(--primary-azul-bahia);
}

@media (max-width: 968px) {
  .estimator-grid {
    grid-template-columns: 1fr;
  }
  
  .estimator-card {
    padding: 32px 20px;
  }
  
  .estimator-result {
    padding: 36px 20px;
  }
}

@media (max-width: 600px) {
  .estimator-card {
    padding: 24px 14px;
  }
  
  .form-select {
    font-size: 0.84rem;
    padding: 12px 10px;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background-color: var(--bg-carrara-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 100px 0;
  position: relative;
}

.google-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background-color: var(--bg-carrara-white);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  margin-top: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.google-trust-badge:hover {
  border-color: var(--accent-calacatta-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.google-icon-wrapper {
  display: flex;
  align-items: center;
}

.trust-stars {
  color: var(--accent-calacatta-gold);
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.trust-text {
  font-size: 0.85rem;
  color: var(--ink-deep-slate);
}

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

.testimonial-card {
  background-color: var(--bg-carrara-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px -10px rgba(11, 37, 30, 0.04);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-calacatta-gold);
  box-shadow: 0 20px 40px -12px rgba(11, 37, 30, 0.08);
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-azul-bahia);
  color: var(--bg-carrara-white);
  border: 1.5px solid var(--accent-calacatta-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-azul-bahia);
  line-height: 1.2;
}

.author-location {
  font-size: 0.78rem;
  color: var(--muted-slate);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent-calacatta-gold);
  line-height: 0.3;
  opacity: 0.3;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-deep-slate);
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
}

.project-tag-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-azul-bahia);
  background-color: var(--surface-carrara-tint);
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  margin-top: auto;
}

.project-tag-pill svg {
  color: var(--accent-text-gold);
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   CONTACT & FORM SECTION (THE SHOWROOM)
   ========================================================================== */
.contact-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  padding: 60px 0;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45)), url('images/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2.5px);
  z-index: 1;
}

.contact-section .section-container {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 40px 24px;
}

.contact-desc {
  font-size: 1.1rem;
  color: var(--muted-slate);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface-carrara-tint);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-azul-bahia);
  flex-shrink: 0;
}

.detail-text {
  display: flex;
  flex-direction: column;
}

.detail-text strong {
  font-size: 0.95rem;
  color: var(--primary-azul-bahia);
  margin-bottom: 4px;
}

.detail-text span {
  font-size: 0.9rem;
  color: var(--ink-deep-slate);
}

.map-link-block {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-text-gold);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 4px;
}

.map-link-block:hover {
  color: var(--primary-azul-bahia);
  border-color: var(--primary-azul-bahia);
}

/* Contact form styling */
.contact-form-card {
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-card);
  background-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 30px 60px -20px rgba(11, 37, 30, 0.12),
              inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

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

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

.contact-form .btn-primary {
  margin-top: 12px;
}

@media (max-width: 600px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-input, .form-select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  outline: none;
  width: 100%;
  color: var(--ink-deep-slate);
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: var(--muted-slate);
  opacity: 0.7;
}

.form-input:focus, .form-select:focus {
  background-color: rgba(255, 255, 255, 0.95);
  border-color: var(--primary-azul-bahia);
  box-shadow: 0 0 0 4px rgba(25, 68, 77, 0.08);
}

.form-textarea {
  resize: vertical;
}

.form-feedback {
  margin-top: 16px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

.form-feedback.success {
  display: block;
  color: #1b5e20;
}

.form-feedback.error {
  display: block;
  color: #b71c1c;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-form-card {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--primary-azul-bahia);
  color: var(--bg-carrara-white);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo-section .logo {
  color: var(--bg-carrara-white);
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-links strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--accent-calacatta-gold);
}

.footer-links p {
  opacity: 0.8;
  line-height: 1.6;
}

.footer-bottom {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 32px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  font-size: 0.75rem;
  opacity: 0.6;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

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

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.delay-1 {
  transition-delay: 0.12s;
}

/* ==========================================================================
   PORTFOLIO CAROUSEL
   ========================================================================== */
.about-portfolio {
  width: 100%;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0 40px; /* space for arrows */
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-card);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 25%; /* 4 columns on large screens */
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .carousel-slide {
    flex: 0 0 33.333%; /* 3 columns */
  }
}

@media (max-width: 968px) {
  .carousel-slide {
    flex: 0 0 50%; /* 2 columns */
  }
}

@media (max-width: 576px) {
  .carousel-slide {
    flex: 0 0 100%; /* 1 column */
  }
}

.carousel-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: calc(var(--radius-card) - 4px);
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 16px rgba(0,0,0,0.03);
  transition: var(--transition-smooth);
}

.carousel-slide img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: var(--accent-calacatta-gold);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--bg-carrara-white);
  color: var(--primary-azul-bahia);
  border: 1.5px solid var(--border-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.carousel-btn:hover {
  background-color: var(--primary-azul-bahia);
  color: var(--bg-carrara-white);
  border-color: var(--primary-azul-bahia);
}

.prev-btn {
  left: -10px;
}

.next-btn {
  right: -10px;
}

.carousel-nav-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--accent-calacatta-gold);
  transform: scale(1.3);
}

/* ==========================================================================
   ULTRA-LUXURY ARCHITECTURAL COMPONENTS
   ========================================================================== */

/* 1. ROTATING SEAL BADGE */
.seal-badge-rotating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: var(--primary-azul-bahia);
  box-shadow: 0 10px 25px rgba(11, 37, 30, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-above);
  border: 1.5px solid var(--accent-calacatta-gold);
}

@media (max-width: 768px) {
  .seal-badge-rotating {
    bottom: 10px;
    right: 10px;
    width: 72px;
    height: 72px;
  }

  .seal-center-icon {
    font-size: 0.68rem;
  }
}

.seal-svg {
  width: 100%;
  height: 100%;
  animation: rotateSeal 20s linear infinite;
}

@keyframes rotateSeal {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.seal-center-icon {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent-calacatta-gold);
  letter-spacing: 0.05em;
}

/* 2. HERITAGE LIVE STATS BAR */
.heritage-stats-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 576px) {
  .heritage-stats-bar {
    gap: 8px;
  }

  .stat-number-wrap {
    font-size: 1.5rem;
  }

  .stat-plus, .stat-unit {
    font-size: 0.95rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary-azul-bahia);
  line-height: 1;
}

.stat-plus, .stat-unit {
  font-size: 1.2rem;
  color: var(--accent-text-gold);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted-slate);
  letter-spacing: 0.03em;
  margin-top: 6px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background-color: var(--border-light);
}

/* 3. GALLERY FILTER BAR PILLS */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-pill {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: var(--radius-button);
  background-color: var(--surface-carrara-tint);
  color: var(--ink-deep-slate);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill:hover,
.filter-pill.active {
  background-color: var(--primary-azul-bahia);
  color: var(--bg-carrara-white);
  border-color: var(--primary-azul-bahia);
  box-shadow: 0 6px 16px rgba(11, 37, 30, 0.12);
}

/* 4. STONE LENS & QUICK VIEW BUTTON */
.stone-image-wrapper {
  position: relative;
  overflow: hidden;
}

.stone-lens {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--accent-calacatta-gold);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.4);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
  background-repeat: no-repeat;
  z-index: var(--z-above);
}

.stone-image-wrapper:hover .stone-lens {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.stone-quick-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--primary-azul-bahia);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  border-radius: var(--radius-button);
  border: 1px solid var(--accent-calacatta-gold);
  cursor: pointer;
  opacity: 0;
  transition: var(--transition-fast);
  z-index: var(--z-above);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.stone-card:hover .stone-quick-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.stone-quick-btn:hover {
  background-color: var(--primary-azul-bahia);
  color: var(--bg-carrara-white);
  border-color: var(--primary-azul-bahia);
}

/* 5. STONE QUICK-VIEW MODAL DRAWER */
.stone-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 37, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.stone-modal-container {
  background-color: var(--bg-carrara-white);
  border-radius: var(--radius-card);
  max-width: 900px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  border: 1.5px solid var(--accent-calacatta-gold);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.stone-modal-overlay.active .stone-modal-container {
  transform: scale(1);
}

.stone-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-azul-bahia);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.stone-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .stone-modal-grid {
    grid-template-columns: 1fr;
  }
}

.stone-modal-media {
  height: 100%;
  min-height: 340px;
  background-color: var(--surface-carrara-tint);
}

.modal-slab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stone-modal-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.modal-stone-title {
  font-size: 1.8rem;
  margin: 12px 0 16px 0;
  color: var(--primary-azul-bahia);
}

.modal-stone-desc {
  font-size: 0.95rem;
  color: var(--ink-deep-slate);
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 32px;
  padding: 16px;
  background-color: var(--surface-carrara-tint);
  border-radius: 10px;
  border: 1px solid var(--border-light);
}

.modal-spec-box {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--muted-slate);
  text-transform: uppercase;
}

.spec-val {
  font-size: 0.9rem;
  color: var(--primary-azul-bahia);
  margin-top: 4px;
}

/* 6. LIVE MATERIAL PREVIEW IN ESTIMATOR */
.live-material-preview-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.swatch-frame {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-calacatta-gold);
  flex-shrink: 0;
}

.estimator-swatch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swatch-details {
  display: flex;
  flex-direction: column;
}

.swatch-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.swatch-title {
  font-size: 0.95rem;
  color: var(--accent-calacatta-gold);
  margin-top: 2px;
}

/* 7. LIQUID GOLD TESTIMONIAL RATING STARS */
.testimonial-rating {
  font-size: 1.1rem;
  color: var(--accent-calacatta-gold);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

/* ==========================================================================
   CUSTOM LUXURY DROPDOWN COMPONENT
   ========================================================================== */
.custom-select-container {
  position: relative;
  width: 100%;
  user-select: none;
  font-family: var(--font-body);
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--primary-azul-bahia);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.custom-select-trigger:hover {
  border-color: var(--accent-calacatta-gold);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.12);
}

.custom-select-container.open .custom-select-trigger {
  border-color: var(--accent-calacatta-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.custom-select-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-text-gold);
  transition: transform 0.3s ease;
  margin-left: 12px;
}

.custom-select-container.open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background-color: #0B1F2D;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.1);
  padding: 8px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  max-height: 260px;
  overflow-y: auto;
}

.custom-select-container.open .custom-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-select-option {
  padding: 12px 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-select-option:hover {
  background-color: rgba(212, 175, 55, 0.18);
  color: #FFFFFF;
}

.custom-select-option.selected {
  background-color: rgba(212, 175, 55, 0.25);
  color: var(--accent-calacatta-gold);
  font-weight: 600;
}

.custom-select-option .option-check {
  opacity: 0;
  color: var(--accent-calacatta-gold);
  transition: opacity 0.2s ease;
}

.custom-select-option.selected .option-check {
  opacity: 1;
}

@media (max-width: 600px) {
  .custom-select-trigger {
    font-size: 0.84rem;
    padding: 12px 14px;
  }

  .custom-select-option {
    font-size: 0.82rem;
    padding: 10px 14px;
  }
}
