﻿/**
 * TEMA MAKTUB BATATA CHURRASCO
 * =============================
 * Dark luxury · Cinematic food branding · Fire & Gold
 */
:root {
  --primary: #c0392b;
  --primary-dark: #922b21;
  --primary-light: #2a0f0d;
  --primary-rgb: 192, 57, 43;
  --accent: #c9a227;
  --accent-rgb: 201, 162, 39;
  --fire: #e85d04;
  --fire-rgb: 232, 93, 4;
  --text: #f0e6d8;
  --text-muted: #a39482;
  --bg: #0d0a08;
  --bg-alt: #14100e;
  --bg-card: #1a1310;
  --bg-card-hover: #1f1713;
  --white: #ffffff;
  --border: #2a1f18;
  --border-glow: rgba(201, 162, 39, 0.15);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --glow-red: 0 0 20px rgba(192, 57, 43, 0.25);
  --glow-gold: 0 0 25px rgba(201, 162, 39, 0.2);
  --radius: 12px;
  --radius-lg: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, button, .btn, .service-card, .testimonial-card, .benefit-card, .faq-item, .contact-method, .service-item {
  transition: all 0.2s ease;
}

main {
  display: block;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul {
  list-style: none;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section-header {
  margin-bottom: 45px;
  text-align: center;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--glow-red);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
}

.cta-banner .btn-whatsapp,
.cta-section .btn-whatsapp {
  background: var(--accent);
  color: var(--bg);
  box-shadow: var(--glow-gold);
}

.cta-banner .btn-whatsapp:hover,
.cta-section .btn-whatsapp:hover {
  background: #b8921e;
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.4);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(13, 10, 8, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(42, 31, 24, 0.6);
}

.header-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent);
}

.site-brand i {
  font-size: 1.4rem;
  color: var(--primary);
}

nav {
  display: none;
  align-items: center;
  gap: 28px;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

nav a:hover, nav a.active {
  color: var(--accent);
}

nav .btn-whatsapp {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(13, 10, 8, 0.97);
  backdrop-filter: blur(16px);
  padding: 20px;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  padding: 10px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover {
  color: var(--accent);
}

@media (min-width: 900px) {
  nav { display: flex; }
  .hamburger { display: none; }
}

/* Hero Section — Cinematic Dark */
.hero {
  padding-top: 110px;
  padding-bottom: 60px;
  background: radial-gradient(ellipse at 30% 20%, rgba(192, 57, 43, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
              var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(232, 93, 4, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 30%, rgba(192, 57, 43, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
  background: rgba(201, 162, 39, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--fire);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--fire);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-actions .btn {
  flex: 1 1 auto;
}

@media (max-width: 600px) {
  .hero-actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-icon {
  color: var(--accent);
}

.trust-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
}

/* Mobile: hero image on top */
@media (max-width: 899px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
  }

  .hero-image {
    order: -1;
  }
}

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(192, 57, 43, 0.15), 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  filter: brightness(1.05) contrast(1.05);
}

.hero-stat {
  position: absolute;
  background: rgba(20, 16, 14, 0.9);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(42, 31, 24, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat-1 {
  top: 15px;
  right: -15px;
}

.hero-stat-2 {
  bottom: 25px;
  left: -15px;
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.stat-icon-green {
  background: rgba(37, 211, 102, 0.15);
  color: #4ade80;
}

.stat-icon-orange {
  background: rgba(232, 93, 4, 0.15);
  color: var(--fire);
}

.stat-num {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Services Grid — Dark Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: all 0.35s ease;
  overflow: hidden;
  word-wrap: break-word;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
  box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.12), inset 0 0 0 1px rgba(var(--accent-rgb), 0.1);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(192, 57, 43, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.service-icon i {
  color: var(--primary);
}

.service-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  z-index: 1;
}

/* Service Page Specific */
.service-hero {
  padding-top: 110px;
  padding-bottom: 50px;
  background: radial-gradient(ellipse at 50% 0%, rgba(192, 57, 43, 0.1) 0%, transparent 60%), var(--bg);
}

.service-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.service-hero h1 span {
  color: var(--accent);
}

.service-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 24px;
}

.hero-fun-text {
  font-size: 0.95rem !important;
  color: var(--text-muted) !important;
  line-height: 1.75 !important;
  max-width: 560px !important;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
  opacity: 0.85;
}

.service-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.service-hero-grid-single {
  display: block;
}

.service-hero-content {
  min-width: 0;
}

/* Mobile: product image on top */
@media (max-width: 991px) {
  .service-hero-grid {
    display: flex;
    flex-direction: column;
  }

  .service-hero-media {
    order: -1;
  }
}

.service-hero-media {
  border-radius: var(--radius-lg);
  box-shadow: 0 0 30px rgba(192, 57, 43, 0.12), 0 14px 36px rgba(0, 0, 0, 0.4);
  background: var(--bg-card);
}

.service-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

@media (min-width: 992px) {
  .service-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 36px;
  }
}

.service-content {
  padding: 50px 0;
  overflow: hidden;
  background: var(--bg);
}

.service-section {
  margin-bottom: 50px;
}

.service-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.service-section p {
  color: var(--text-muted);
  line-height: 1.7;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-card);
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.service-feature i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 3px;
}

.service-feature span {
  font-size: 0.95rem;
  color: var(--text);
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.benefit-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}

.benefit-card:hover {
  border-color: rgba(var(--accent-rgb), 0.25);
  background: var(--bg-card-hover);
  box-shadow: var(--glow-gold);
}

.benefit-icon {
  width: 46px;
  height: 46px;
  background: rgba(192, 57, 43, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.benefit-icon i {
  color: var(--primary);
}

.benefit-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 14px;
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
}

.step-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  border-color: rgba(var(--accent-rgb), 0.2);
  background: var(--bg-card-hover);
}

.stars {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: rgba(192, 57, 43, 0.15);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.author-name {
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text);
}

.author-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA Banner — Fire Gradient */
.cta-banner {
  background: linear-gradient(135deg, #2a0f0d 0%, var(--primary-dark) 40%, #4a1010 70%, var(--bg) 100%);
  padding: 55px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232, 93, 4, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(192, 57, 43, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.cta-banner .badge {
  background: rgba(201, 162, 39, 0.2);
  color: var(--accent);
  border-color: rgba(201, 162, 39, 0.3);
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.03rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* Area */
.area-inner {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .area-inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192, 57, 43, 0.1);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 500;
  border: 1px solid rgba(192, 57, 43, 0.15);
}

.area-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 0 25px rgba(192, 57, 43, 0.1), 0 15px 40px rgba(0, 0, 0, 0.4);
}

.area-image-natural {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* FAQ — Dark Accordion */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question i {
  transition: transform 0.3s;
  color: var(--accent);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 20px 16px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  background: var(--bg-alt);
  padding: 65px 0;
  text-align: center;
}

.final-cta-inner {
  max-width: 580px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.final-cta h2 span {
  color: var(--accent);
}

.final-cta p {
  color: var(--text-muted);
  font-size: 1.03rem;
  margin-bottom: 25px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Contact Page */
.contact-section {
  padding: 110px 0 50px;
  background: radial-gradient(ellipse at 50% 0%, rgba(192, 57, 43, 0.06) 0%, transparent 60%), var(--bg);
}

.contact-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.contact-info h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: var(--glow-gold);
}

.contact-method i {
  width: 44px;
  height: 44px;
  background: rgba(192, 57, 43, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-method span {
  font-weight: 500;
  color: var(--text);
}

.contact-method small {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

/* About Page */
.about-hero {
  padding: 110px 0 50px;
  background: radial-gradient(ellipse at 50% 0%, rgba(192, 57, 43, 0.08) 0%, transparent 60%), var(--bg);
}

.about-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.about-content {
  padding: 50px 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.about-text h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--text);
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-box {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
}

.stat-box .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-box .stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Footer — Dark Luxury */
footer {
  background: #080605;
  color: var(--text);
  padding: 50px 0 20px;
  border-top: 1px solid rgba(201, 162, 39, 0.08);
}

.footer-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 35px;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.footer-logo i {
  color: var(--primary);
}

.footer-brand p {
  color: #7a6f62;
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7a6f62;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--accent);
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a, .footer-col li {
  color: #7a6f62;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(42, 31, 24, 0.4);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: #7a6f62;
  font-size: 0.84rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a6f62;
  font-size: 1rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--bg);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom));
  right: max(20px, env(safe-area-inset-right));
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 1200;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.3;
  white-space: nowrap;
  max-width: min(220px, calc(100vw - 110px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  border: 1px solid var(--border);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px), (hover: none) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 1.45rem;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

.section-divider {
  height: 1px;
  background: var(--border);
  max-width: 1150px;
  margin: 0 auto;
}

/* Page Title */
.page-title {
  padding: 120px 0 40px;
  background: radial-gradient(ellipse at 50% 0%, rgba(192, 57, 43, 0.08) 0%, transparent 60%), var(--bg);
  text-align: center;
}

.page-title h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.page-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.breadcrumb a {
  color: var(--accent);
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Services List Page */
.services-list {
  display: grid;
  gap: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.35s ease;
  overflow: hidden;
  flex-wrap: wrap;
}

.service-item:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  background: var(--bg-card-hover);
  box-shadow: var(--glow-gold);
}

.service-item-icon {
  width: 60px;
  height: 60px;
  background: rgba(192, 57, 43, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.service-item-icon i {
  color: var(--primary);
}

.service-item-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.service-item-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-item-content {
  min-width: 0;
}

.service-item-link {
  margin-left: auto;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

/* CTA Section in Pages */
.cta-section {
  background: linear-gradient(135deg, #2a0f0d 0%, var(--primary-dark) 40%, #4a1010 70%, var(--bg) 100%);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232, 93, 4, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 12px;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 22px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* Error/Not Found */
.not-found {
  padding: 150px 0;
  text-align: center;
  background: var(--bg);
}

.not-found h1 {
  font-size: 6rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.not-found p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* Background alternation */
.section[style*="background: var(--bg-light)"] {
  background: var(--bg-alt) !important;
}

/* =====================================================================
   PRINT STYLES
   ===================================================================== */
@media print {
  header, .mobile-nav, .whatsapp-float, footer, .cta-banner, .cta-section,
  .btn, .hero-actions, .final-cta-actions, .breadcrumb {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
    overflow: visible;
  }

  .hero, .service-hero, .about-hero, .contact-section, .page-title {
    padding-top: 0;
    background: none;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  img {
    max-width: 500px;
    page-break-inside: avoid;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  .service-card, .benefit-card, .testimonial-card {
    box-shadow: none;
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
}

