@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #0b2227;
  --ink-light: #183a42;
  --ink-subtle: #2d555e;
  --clay: #c86843;
  --clay-hover: #b05633;
  --clay-gradient: linear-gradient(135deg, #d3734e 0%, #b85732 100%);
  --clay-subtle: #fbf0ea;
  --sand: #f6f2ec;
  --sand-light: #faf7f2;
  --sand-border: #e8e2d8;
  --white: #ffffff;
  --teal: #1a5f67;
  --teal-light: #e6f2f3;
  --text-main: #24383c;
  --text-muted: #5d7579;
  --border: #e1e9e7;
  --border-dark: #cdd9d6;
  --shadow-sm: 0 4px 14px rgba(11, 34, 39, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 34, 39, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 34, 39, 0.12);
  --shadow-glow: 0 8px 24px rgba(200, 104, 67, 0.28);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--text-main);
  background-color: var(--white);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* Ambient backdrop lighting */
body::before {
  content: '';
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.45;
  background-image: 
    radial-gradient(circle at 90% 12%, rgba(26, 95, 103, 0.09) 0, transparent 40rem),
    radial-gradient(circle at 5% 55%, rgba(200, 104, 67, 0.08) 0, transparent 35rem),
    radial-gradient(circle at 80% 90%, rgba(246, 242, 236, 0.8) 0, transparent 30rem);
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  line-height: 1.18;
  font-weight: 800;
  word-break: break-word;
}

h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.8rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.18rem, 1.9vw, 1.5rem);
  letter-spacing: -0.02em;
}

h4 {
  font-size: 1.08rem;
}

p {
  color: var(--text-muted);
}

ul {
  list-style: none;
}

::selection {
  background: var(--clay-subtle);
  color: var(--clay-hover);
}

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
  box-sizing: border-box;
}

/* ==========================================================================
   Typography & Modern Badges
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--clay);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.eyebrow--light {
  color: #f3b193;
}

.lead {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.section {
  padding: 88px 0;
  position: relative;
}

/* Shared page polish */
main > .section:nth-child(even):not(.section--sand):not(.section--sand-light):not(.section--dark) {
  background: linear-gradient(135deg, #fbf8f4 0%, #f5f8f7 100%);
}

.section--sand {
  background-color: var(--sand);
}

.section--sand-light {
  background-color: var(--sand-light);
}

.section--dark {
  background-color: var(--ink);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.72);
}

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

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 52px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 18px;
  border-radius: var(--radius-full);
  background: var(--clay-gradient);
}

.section-header--center h2::after {
  margin-inline: auto;
}

/* ==========================================================================
   Buttons & Micro-Interactions
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: 'Manrope', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  min-height: 46px;
}

.btn-primary {
  background: var(--clay-gradient);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(200, 104, 67, 0.25);
}

.btn-primary:hover,
.btn-primary:active {
  background: linear-gradient(135deg, #be5f39 0%, #a44623 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 104, 67, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-secondary:hover,
.btn-secondary:active {
  background-color: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-light {
  background-color: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover,
.btn-light:active {
  background-color: var(--sand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1ebd5a 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover,
.btn-whatsapp:active {
  background: linear-gradient(135deg, #20bc59 0%, #179b48 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
  min-height: 40px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clay);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover {
  color: var(--clay-hover);
}

.text-link:hover span {
  transform: translateX(4px);
}

/* ==========================================================================
   Modern Header & Sleek Navigation Bar
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7ce2cb;
  font-weight: 700;
}

.topbar__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #7ce2cb;
  border-radius: 50%;
  box-shadow: 0 0 8px #7ce2cb;
}

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

.topbar__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar__links a:hover {
  color: var(--white);
}

.topbar-partners {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 4px;
}

.topbar-partner-link {
  padding: 4px 9px;
  border: 1px solid rgba(124, 226, 203, 0.38);
  border-radius: var(--radius-full);
  color: #7ce2cb;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.topbar__links .topbar-partner-link:hover {
  background: #7ce2cb;
  color: var(--ink);
}

@media (max-width: 1180px) {
  .topbar-partners {
    display: none;
  }
}

/* Sleek Modern Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(11, 34, 39, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(11, 34, 39, 0.07);
}

.navbar .container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

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

.logo-text strong {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.03em;
  line-height: 1;
}

.logo-text small {
  margin-top: 3px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.54rem;
  font-weight: 800;
  color: var(--clay);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* Pill Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  background: transparent;
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-light);
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 11px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-links > li > a:hover {
  background: var(--sand);
  color: var(--clay);
}

.nav-links > li > a.active {
  background: var(--clay-subtle);
  color: var(--clay-hover);
  font-weight: 800;
}

/* Modern Dropdown Menu */
.nav-links .dropdown {
  position: relative;
}

.dropdown-toggle {
  display: none;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 270px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: 0 14px 40px rgba(11, 34, 39, 0.14);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 110;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--sand);
}

.dropdown-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--clay-subtle);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dropdown-item-content {
  display: flex;
  flex-direction: column;
}

.dropdown-item-content strong {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
}

.dropdown-item-content small {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .btn {
  font-size: 0.78rem;
}

.nav-actions .btn {
  box-shadow: 0 4px 14px rgba(200, 104, 67, 0.22);
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sand);
  border: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.mobile-drawer-header,
.mobile-drawer-cta {
  display: none;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 34, 39, 0.48);
  backdrop-filter: blur(4px);
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f7f4ef 0%, #faf8f5 50%, #eff5f3 100%);
  padding: 70px 0 80px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  border: 1.5px solid rgba(26, 95, 103, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 em {
  color: var(--clay);
  font-style: normal;
}

.hero__copy {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 30px;
  color: var(--ink-subtle);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.hero-chip__icon {
  color: var(--clay);
}

.hero__image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  background: var(--white);
}

.hero__image-card img {
  min-height: 400px;
  max-height: 500px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.6s ease;
}

.hero__image-card:hover img {
  transform: scale(1.03);
}

.hero__floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 34, 39, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.hero__floating-badge-icon {
  width: 34px;
  height: 34px;
  background: var(--clay);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.hero__floating-badge-text strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--white);
}

.hero__floating-badge-text small {
  color: #efa987;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================================
   Subpage Hero
   ========================================================================== */
.page-hero {
  display: none;
}

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

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

.page-hero .container {
  padding-left: 26px;
  border-left: 4px solid var(--clay);
}

.page-hero h1 {
  color: var(--ink);
  max-width: 900px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.8vw, 3.05rem);
}

.page-hero p {
  color: var(--ink-subtle);
  font-size: 1rem;
  max-width: 720px;
  line-height: 1.65;
}

.page-hero .eyebrow,
.page-hero .eyebrow--light {
  color: var(--clay);
  margin-bottom: 8px;
}

.breadcrumb {
  display: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--ink);
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--clay);
}

/* ==========================================================================
   Product & Feature Cards
   ========================================================================== */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(11, 34, 39, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 104, 67, 0.3);
}

.product-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--sand);
}

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

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11, 34, 39, 0.85);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__body h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.product-card__body p {
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.product-card__body .text-link {
  margin-top: auto;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(11, 34, 39, 0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 104, 67, 0.35);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--clay-subtle);
  color: var(--clay);
  display: grid;
  place-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.split-layout--reverse > *:first-child {
  order: 2;
}

.split-layout--reverse > *:last-child {
  order: 1;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  position: relative;
}

.split-image::after {
  content: '';
  position: absolute;
  width: 84px;
  height: 84px;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  border-radius: 22px;
  background: var(--clay-subtle);
}

.split-image img {
  min-height: 380px;
  max-height: 480px;
  object-fit: cover;
  width: 100%;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.feature-list li strong {
  color: var(--ink);
}

.feature-list-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clay-subtle);
  color: var(--clay);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========================================================================== 
   Location Panel
   ========================================================================== */
.location-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.location-panel__content {
  padding: 46px;
  background: linear-gradient(145deg, #fdf8f4 0%, #f6f0e9 100%);
}

.location-panel__content h2 {
  margin-bottom: 14px;
}

.location-panel__content .lead {
  margin-bottom: 28px;
  font-size: 1rem;
}

.location-address {
  margin: 0 0 28px;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
  line-height: 1.65;
}

.location-map {
  min-height: 350px;
  background: var(--sand);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

/* ==========================================================================
   Tables
   ========================================================================== */
.table-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-sm);
  margin: 20px 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 520px;
}

.spec-table th,
.spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.spec-table th {
  background: var(--sand);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   Forms & Contact Elements
   ========================================================================== */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--sand-light);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 16px;
  transition: var(--transition);
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: var(--white);
  border-color: var(--clay);
  outline: none;
  box-shadow: 0 0 0 3px var(--clay-subtle);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-info-card {
  background: var(--sand-light);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 104, 67, 0.35);
}

.contact-info-card h4 {
  margin-bottom: 4px;
  color: var(--ink);
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-info-card strong {
  display: block;
  font-size: 1.2rem;
  color: var(--clay);
  font-family: 'Manrope', sans-serif;
  margin: 4px 0;
}

/* ==========================================================================
   CTA Panel
   ========================================================================== */
.cta-panel {
  position: relative;
  background: linear-gradient(135deg, var(--ink) 0%, #153f47 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cta-panel::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.cta-panel h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.cta-panel .hero__actions {
  justify-content: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: linear-gradient(135deg, #092126 0%, #133b42 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer .logo-text strong {
  color: var(--white);
}

.footer .logo-text small {
  color: #efa987;
}

.footer p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin-top: 14px;
}

.footer-partner-links {
  margin-top: 22px;
}

.footer-partner-links > span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-partner-links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-partner-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-partner-links a:hover {
  background: var(--clay);
  border-color: var(--clay);
}

.footer-partner-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.footer-partner-logos img {
  width: auto;
  height: 34px;
  max-width: 130px;
  padding: 5px 8px;
  object-fit: contain;
  background: var(--white);
  border-radius: 5px;
}

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.gallery-card { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--sand); box-shadow: var(--shadow-sm); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card figcaption { height: 100%; display: grid; place-content: center; text-align: center; color: var(--clay); font-weight: 800; font-size: 1.2rem; }
.gallery-card figcaption small { color: var(--text-muted); font-size: .78rem; font-weight: 600; }

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.footer ul a:hover {
  color: var(--white);
}

.footer__contact-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.footer__contact-box strong {
  display: block;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  margin: 4px 0 10px;
}

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   Floating Mobile Action Bar
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 16px;
  z-index: 90;
}

.mobile-bottom-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mobile-bottom-bar .btn {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.85rem;
  min-height: 44px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .location-panel {
    grid-template-columns: 1fr;
  }

  .split-layout--reverse > *:first-child {
    order: 1;
  }

  .split-layout--reverse > *:last-child {
    order: 2;
  }
}

@media (max-width: 1320px) {
  .topbar {
    display: none;
  }

  .navbar .container {
    height: 70px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100dvh - 94px);
    background: var(--white);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    z-index: 110;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    display: flex;
  }

  /* Drawer Header */
  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }

  .mobile-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--sand);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--ink);
    cursor: pointer;
  }

  .nav-links > li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 4px;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ink);
    border-radius: 0;
  }


  .nav-links > li > a.active {
    background: none;
    color: var(--clay);
  }

  .nav-links .dropdown-menu {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 10px 10px;
    display: none;
    background: var(--sand);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
  }

  .nav-links .dropdown-menu::before {
    display: none;
  }

  .nav-links .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 8px 10px;
    min-width: 0;
    overflow: hidden;
  }

  .dropdown-item-content {
    min-width: 0;
  }

  .dropdown-item-content small {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .nav-actions .btn {
    display: none;
  }

  .mobile-drawer-cta {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-drawer-cta .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 68px;
  }

  .mobile-bottom-bar {
    display: block;
  }

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 56px 0;
  }

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

  .section-header h2::after {
    margin-top: 14px;
  }

  .hero {
    padding: 42px 0 52px;
  }

  .page-hero {
    padding: 32px 0 20px;
  }

  .page-hero .container {
    padding-left: 18px;
    border-left-width: 3px;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__chips {
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .hero-chip {
    font-size: 0.74rem;
    padding: 6px 12px;
  }

  .hero__image-card img {
    min-height: auto;
    max-height: 290px;
  }

  .hero__floating-badge {
    bottom: 14px;
    left: 14px;
    padding: 10px 14px;
  }

  .card-grid-3,
  .card-grid-2,
  .card-grid-4,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card__image {
    height: 210px;
  }

  .split-image img {
    min-height: auto;
    max-height: 290px;
  }

  .split-image::after {
    width: 58px;
    height: 58px;
    right: -10px;
    bottom: -10px;
  }

  .feature-list li {
    padding: 10px 12px;
  }

  .location-panel__content {
    padding: 30px 22px;
  }

  .location-map,
  .location-map iframe {
    min-height: 270px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-card {
    padding: 24px 18px;
  }

  .cta-panel {
    padding: 44px 22px;
  }

  .footer {
    padding: 52px 0 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Custom Additions */

/* Gallery pointer */
.gallery-card img {
  cursor: pointer;
}

/* Image Partner Badge Overlay */
.image-partner-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  z-index: 10;
}
.image-partner-badge img {
  height: 18px !important;
  min-height: auto !important;
  max-height: 18px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.image-partner-badge .badge-amp {
  color: var(--clay);
  font-weight: 400;
}

@media (max-width: 480px) {
  .image-partner-badge {
    bottom: 10px;
    left: 10px;
    padding: 6px 10px;
    font-size: 0.72rem;
    gap: 6px;
  }
  .image-partner-badge img {
    height: 14px !important;
    max-height: 14px !important;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(11, 34, 39, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-modal.active {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lightboxZoom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes lightboxZoom {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  font-size: 38px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}
.lightbox-close:hover {
  color: var(--clay);
  transform: scale(1.1);
}
.lightbox-caption {
  margin-top: 15px;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}
