/* ===== VARIABLES ===== */
:root {
  --color-primary: #1a2744;
  --color-primary-light: #2a3f6a;
  --color-accent: #e8a023;
  --color-accent-hover: #d4911a;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f7fa;
  --color-bg-dark: #0f1a2e;
  --color-text: #333333;
  --color-text-light: #6b7280;
  --color-text-on-dark: #e2e8f0;
  --color-border: #e5e7eb;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  transition: var(--transition);
}

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

.header__logo img {
  height: 48px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.header__nav a:hover {
  color: var(--color-accent);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}

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

.header__lang-wrap {
  position: relative;
}

.header__lang-btn {
  color: #fff !important;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem !important;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.header__lang-btn::after { display: none !important; }

.header__lang-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary) !important;
}

.header__lang-drop {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-width: 120px;
  overflow: hidden;
  z-index: 100;
}

.header__lang-wrap:hover .header__lang-drop,
.header__lang-drop.is-open {
  display: block;
}

.header__lang-drop a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem !important;
  color: var(--color-text) !important;
  text-transform: none;
  letter-spacing: 0;
  transition: var(--transition);
}

.header__lang-drop a:hover {
  background: var(--color-bg-alt);
  color: var(--color-accent) !important;
}

.header__lang-drop a::after { display: none !important; }

/* Mobile menu */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(165deg, rgba(26, 39, 68, 0.85) 0%, rgba(15, 26, 46, 0.9) 100%),
              url('../img/hero-trucks.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 160, 35, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(42, 63, 106, 0.3) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 160, 35, 0.15);
  border: 1px solid rgba(232, 160, 35, 0.3);
  color: var(--color-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero__title span {
  display: block;
  background: linear-gradient(135deg, var(--color-accent), #f0c060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-text-on-dark);
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.85;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 160, 35, 0.3);
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.25);
}

.btn--outline:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 24px;
}

.section--alt {
  background: var(--color-bg-alt);
  position: relative;
}

.section--alt::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-bg-alt);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* Truck on diagonal */
.section__truck {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.section__truck svg {
  position: absolute;
  width: 28px;
  height: 28px;
  fill: var(--color-accent);
  opacity: 1;
  top: 50%;
  transform: translateY(-100%);
  left: -28px;
  transition: none;
  cursor: pointer;
  pointer-events: auto;
}

.section--dark .section__truck svg {
  fill: var(--color-primary);
  opacity: 1;
}

.section--alt::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-bg-alt);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
  z-index: 1;
}

.section--dark {
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  position: relative;
}

.section--dark::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-primary);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-text-light);
  font-size: 0.85rem;
  transition: var(--transition);
}

.gallery-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item svg {
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item--has-img {
  border: none;
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
}

.section--dark .section__title {
  color: #ffffff;
}

.section__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
}

.star-icon {
  width: 32px;
  height: 32px;
  fill: #f59e0b;
}

.star-icon--partial {
  fill: none;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 16px auto 0;
}

.section--dark .section__subtitle {
  color: var(--color-text-on-dark);
  opacity: 0.75;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(232, 160, 35, 0.1), rgba(232, 160, 35, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.service-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.service-card__text {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 32px;
}

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

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature__number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.about-feature__content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.about-feature__content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== TAPA BADGE ===== */
.tapa-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(232, 160, 35, 0.06);
  border: 1px solid rgba(232, 160, 35, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
}

.tapa-badge img {
  width: 80px;
}

.tapa-badge p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.tapa-badge strong {
  color: var(--color-primary);
}

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.location__maps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location__streetview {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 250px;
}

.location__streetview iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
}

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

.location__address {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.location__address strong {
  display: block;
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.location__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
}

.location__detail svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.location__detail a {
  color: var(--color-primary);
  font-weight: 600;
  transition: var(--transition);
}

.location__detail a:hover {
  color: var(--color-accent);
}

.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 400px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__text {
  color: var(--color-text-on-dark);
  opacity: 0.8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-method:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-accent);
}

.contact-method__icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 160, 35, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-method__icon svg {
  width: 22px;
  height: 22px;
}

.contact-method__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.contact-method__value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.contact-method__value a {
  color: #fff;
  transition: var(--transition);
}

.contact-method__value a:hover {
  color: var(--color-accent);
}

.contact__form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.12);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__submit {
  width: 100%;
  padding: 16px;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.form__submit:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 160, 35, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 24px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--color-accent);
}

/* ===== REVIEWS ===== */
.reviews-scroll {
  overflow: hidden;
  position: relative;
  margin: 0 -24px;
  padding: 0 24px;
}

.reviews-scroll::before,
.reviews-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.reviews-scroll::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.reviews-scroll::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.reviews-scroll__track {
  display: flex;
  gap: 24px;
  animation: scroll-reviews 110s linear infinite;
  width: max-content;
}

.reviews-scroll__track:hover {
  animation-play-state: paused;
}

@keyframes scroll-reviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  min-width: 340px;
  max-width: 380px;
  flex-shrink: 0;
}

.review-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.review-card__date {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.review-card__stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  font-style: italic;
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== RESTAURANT ===== */
.restaurant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.restaurant__name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.restaurant__type {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.restaurant__desc {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 28px;
}

.restaurant__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.restaurant__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.restaurant__feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.restaurant__hours {
  background: rgba(232, 160, 35, 0.06);
  border: 1px solid rgba(232, 160, 35, 0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.restaurant__hours-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.restaurant__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  border-bottom: 1px solid rgba(232, 160, 35, 0.1);
}

.restaurant__hours-row:last-child {
  border-bottom: none;
}

.restaurant__hours-row span:last-child {
  font-weight: 600;
  color: var(--color-text);
}

.restaurant__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

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

.restaurant__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-text-light);
}

.restaurant__image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ===== LEGAL ===== */
.legal {
  padding: 120px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 1000;
  max-width: 380px;
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.82rem;
  line-height: 1.5;
  box-shadow: var(--shadow-lg);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  margin-bottom: 12px;
  opacity: 0.85;
}

.cookie-banner a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
}

.cookie-banner__btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cookie-banner__btn--accept {
  background: var(--color-accent);
  color: var(--color-primary);
}

.cookie-banner__btn--accept:hover {
  background: var(--color-accent-hover);
}

.cookie-banner__btn--reject {
  background: rgba(255,255,255,0.1);
  color: var(--color-text-on-dark);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-banner__btn--reject:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__toggle {
    display: flex;
  }

  .hero__content {
    padding: 100px 20px 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    min-width: 280px;
    max-width: 300px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section {
    padding: 64px 20px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}
