:root {
  --bg: #fffbf7;
  --bg-alt: #fff5f0;
  --bg-warm: #fef8f0;
  --card: #ffffff;
  --accent: #1d4ed8;
  --accent-soft: rgba(29, 78, 216, 0.1);
  --accent-strong: #1e40af;
  --text: #0f172a;
  --muted: #64748b;
  --border-subtle: rgba(30, 64, 175, 0.12);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --celebration-glow: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 200, 150, 0.25), transparent 60%);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
  --container: 1120px;
  --container-padding: 24px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--celebration-glow), linear-gradient(180deg, #fffbf7 0%, #fff5f0 35%, #fef8f0 65%, #fff0eb 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

/* Better tap behaviour on iOS/Android */
a,
button {
  -webkit-tap-highlight-color: rgba(29, 78, 216, 0.15);
  touch-action: manipulation;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* Top bar */

.top-bar {
  background: #b8956e;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
  padding: 8px 0;
  padding-top: max(8px, env(safe-area-inset-top));
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.top-bar-link:hover {
  color: #fff;
  opacity: 1;
}

.top-bar-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.top-bar-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
}

.top-bar-right {
  display: flex;
  align-items: center;
}

.top-bar-city {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .top-bar {
    padding: 6px 0;
    font-size: 0.75rem;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .top-bar-right {
    width: 100%;
  }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(255, 251, 247, 0.98),
    rgba(255, 245, 240, 0.95)
  );
  border-bottom: 1px solid rgba(29, 78, 216, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
  background: transparent;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.logo-main {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 11px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  position: relative;
  padding-block: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-strong);
  border-radius: 999px;
  transition: width var(--transition-fast);
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 4px;
  background: var(--text);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

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

.nav-toggle.nav-open span:nth-child(2) {
  opacity: 0;
}

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

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: var(--accent-strong);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(29, 78, 216, 0.25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), border-color var(--transition-fast);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(29, 78, 216, 0.35);
  background: #1e40af;
}

.btn-outline {
  background: transparent;
  border-color: var(--accent-strong);
  color: var(--accent-strong);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(29, 78, 216, 0.08);
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

/* Banner – recommended image size: 1920×600 px (or 1920×700) */

.site-banner {
  width: 100%;
  aspect-ratio: 32 / 10;
  max-height: 420px;
  overflow: hidden;
  background: var(--bg-warm);
}

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

/* Banner carousel (4 scrolling images) */
.site-banner-carousel {
  position: relative;
}

.banner-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-out;
}

.banner-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Mobile: show full banner image (no cropping) so text in image isn't cut off on iOS/Android */
@media (max-width: 768px) {
  .site-banner {
    aspect-ratio: 4 / 3;
    max-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
  }

  .banner-track {
    align-items: center;
  }

  .banner-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .banner-slide img {
    object-fit: contain;
    object-position: center center;
    width: 100%;
    height: 100%;
  }

  .banner-prev,
  .banner-next {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    left: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.95);
  }

  .banner-prev {
    left: 8px;
  }

  .banner-next {
    right: 8px;
  }

  .banner-dots {
    bottom: 10px;
  }

  .banner-dot {
    width: 8px;
    height: 8px;
  }
}

.banner-prev,
.banner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background var(--transition-fast), transform var(--transition-fast);
  z-index: 2;
}

.banner-prev:hover,
.banner-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.banner-prev {
  left: 12px;
}

.banner-next {
  right: 12px;
}

.banner-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.banner-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.banner-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Hero */

.hero {
  padding: 40px 0 32px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.25rem, 3vw + 1rem, 3rem);
  line-height: 1.2;
  margin-bottom: 16px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.hero-stats div {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(29, 78, 216, 0.2);
  background: linear-gradient(135deg, rgba(255, 245, 240, 0.9), rgba(255, 235, 230, 0.6));
}

.stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-card {
  background: linear-gradient(150deg, #ffffff 0%, #fff9f5 50%, #fff5f0 100%);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(29, 78, 216, 0.12);
}

.hero-card h2 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.hero-card p {
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Celebration categories in hero */
.hero-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.category-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(29, 78, 216, 0.18);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast);
}

.category-tile:hover {
  background: var(--accent-soft);
  border-color: rgba(29, 78, 216, 0.35);
  transform: translateY(-2px);
}

.category-title {
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

/* Sections */

.section {
  padding: 40px 0;
}

.section-alt {
  background: linear-gradient(180deg, #fff8f5 0%, #fff0eb 50%, #ffebe5 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}

.section-header h2 {
  margin-bottom: 10px;
  font-size: 1.7rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.35rem;
    line-height: 1.3;
  }
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

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

.services-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  border: 1px solid rgba(29, 78, 216, 0.1);
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.06);
  overflow: hidden;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.card-price {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.card-book-btn {
  display: inline-block;
  margin-top: 0;
}

.card-img-link {
  display: block;
  overflow: hidden;
  margin: -18px -18px 12px -18px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card-img-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-fast);
}

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

/* Product detail page */
.product-detail-back {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.product-detail-back:hover {
  color: var(--accent-strong);
}

.product-detail-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.product-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.product-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-detail-title {
  margin: 0 0 12px;
  font-size: 1.75rem;
}

.product-detail-price {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.product-detail-desc {
  margin: 0 0 24px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .product-detail-inner {
    grid-template-columns: 1fr;
  }
}

.service-column h3 {
  margin-bottom: 8px;
}

.service-column .btn {
  margin-top: 12px;
  display: inline-block;
}

.category-photo-link {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4 / 3;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.category-photo-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(29, 78, 216, 0.15);
}

.category-photo-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.75rem;
  color: var(--accent-strong);
}

/* Split sections */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.split-text .lead {
  color: var(--muted);
  font-size: 0.96rem;
}

.split-text h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  columns: 2;
  column-gap: 24px;
}

.bullets li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.split-card {
  background: linear-gradient(150deg, rgba(255, 248, 245, 0.95) 0%, #ffffff 50%, rgba(255, 240, 235, 0.9) 100%);
  border-radius: var(--radius-lg);
  padding: 20px 20px 16px;
  border: 1px solid rgba(29, 78, 216, 0.12);
  box-shadow: var(--shadow-soft);
}

.split-card h3 {
  margin-top: 6px;
}

.split-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(29, 78, 216, 0.1);
  border: 1px solid rgba(29, 78, 216, 0.25);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-strong);
}

/* Caravan gallery */

.caravan-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 6px;
}

.caravan-gallery img {
  display: block;
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  height: 90px;
  border: 1px solid rgba(29, 78, 216, 0.2);
}

.caravan-gallery-large {
  margin-top: 16px;
}

.caravan-gallery-large img {
  height: 220px;
  border-radius: var(--radius-md);
}

/* Timeline */

.timeline {
  max-width: 720px;
  margin: 0 auto;
  border-left: 2px solid rgba(29, 78, 216, 0.25);
  padding-left: 18px;
}

.timeline-step {
  position: relative;
  padding-bottom: 16px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.step-number {
  position: absolute;
  left: -31px;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-strong);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.step-content h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Forms */

.lead-form {
  display: grid;
  gap: 10px;
}

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

label {
  font-size: 0.8rem;
  color: var(--muted);
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(29, 78, 216, 0.25);
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
}

/* Mobile: prevent iOS zoom on input focus (16px minimum) */
@media (max-width: 768px) {
  input,
  select,
  textarea {
    font-size: 16px;
    padding: 10px 12px;
    min-height: 44px;
  }

  .btn {
    min-height: 44px;
    padding: 12px 20px;
  }

  .nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.2);
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

/* FAQ */

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

details {
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  padding: 10px 12px;
  background: #ffffff;
}

summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.92rem;
}

summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  color: var(--accent-strong);
  font-weight: 500;
}

details p {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Contact */

.contact-section {
  padding-bottom: 46px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-highlights {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.contact-highlights li {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 4px;
}

/* Footer */

.site-footer {
  background: #1a1a1a;
  color: #e5e5e5;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0 2rem;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

.footer-col {
  font-size: 0.9rem;
}

.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-heading.footer-sub {
  margin-top: 1.25rem;
  font-size: 0.9rem;
}

.footer-about p {
  margin: 0;
  line-height: 1.6;
  color: #b3b3b3;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-newsletter-note {
  margin: 0.25rem 0 0 !important;
  font-size: 0.85rem;
  color: #999 !important;
}

.footer-links,
.footer-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-categories li {
  margin-bottom: 0.4rem;
}

.footer-links a,
.footer-categories a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-categories a:hover {
  color: #fff;
}

.footer-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0 1.25rem;
  text-align: center;
}

.footer-bottom .container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

.footer-copyright {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
}

.footer-note {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: #737373;
}

/* Floating contact buttons */

.float-actions {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  right: max(20px, env(safe-area-inset-right));
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.float-call {
  background: #1d4ed8;
}

.float-wa {
  background: #25d366;
}

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem var(--container-padding) 1.5rem;
  }

  .footer-categories {
    grid-template-columns: 1fr;
  }

  .float-actions {
    bottom: max(16px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .float-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .split,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bullets {
    columns: 1;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    inset: 56px 0 auto;
    margin: 0;
    padding: 10px 16px 12px;
    background: linear-gradient(180deg, #fffbf7 0%, #fff5f0 100%);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    border-bottom: 1px solid rgba(29, 78, 216, 0.15);
  }

  .nav.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    padding-block: 10px;
  }

  .hero {
    padding-top: 26px;
  }
}

@media (max-width: 520px) {
  :root {
    --container-padding: 16px;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stats div {
    padding: 8px 12px;
  }

  .section {
    padding: 30px 0;
  }
}

