/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', Arial, sans-serif;
  background: #f4f4f4;
  color: #222;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background: #111;
  padding: 10px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 3px solid rgba(198,40,40,0.4);
  box-shadow: 0 0 30px rgba(198,40,40,0.25);
  animation: fadeUp 0.6s ease both;
}

.nav-logo {
  height: 52px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  opacity: 0.85;
  position: relative;
  padding-bottom: 3px;
  transition: opacity 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #c62828;
  transition: width 0.25s ease;
}

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-book-btn {
  background: #c62828;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: .2s;
  font-family: 'Barlow', sans-serif;
}

.nav-book-btn:hover { background: #a61e1e; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: #0d0d0d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(198,40,40,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(198,40,40,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  background: rgba(198,40,40,0.2);
  border: 1px solid rgba(198,40,40,0.4);
  color: #ff6b6b;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}

.hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero-content h1 span { color: #c62828; }

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.btn-primary {
  background: #c62828;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: .2s;
  font-family: 'Barlow', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.4s ease;
}

.btn-primary:hover { background: #a61e1e; transform: translateY(-2px); }
.btn-primary:hover::after { left: 150%; }
.btn-primary.mt { margin-top: 20px; }

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: .2s;
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  animation: fadeUp 0.6s ease 0.4s both;
}

.stat-item {
  padding: 0 32px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #c62828;
}

.stat-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ===== SECTIONS ===== */
.section-inner {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c62828;
  margin-bottom: 10px;
}

.section-label.light { color: rgba(198,40,40,0.7); }

h2 {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  color: #111;
  margin-bottom: 50px;
}

h2.light { color: #fff; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.box {
  background: #fff;
  padding: 24px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-bottom: 3px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(198,40,40,0.12);
  border-bottom-color: #c62828;
}

.box-icon { font-size: 28px; margin-bottom: 10px; }
.box-title { font-weight: 700; font-size: 15px; color: #111; margin-bottom: 6px; }
.box-desc  { font-size: 13px; color: #888; line-height: 1.5; }

/* ===== GALLERY ===== */
.dark-section { background: #111; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: #222;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  padding: 24px 12px 12px;
  font-size: 12px;
  font-weight: 600;
  transform: translateY(4px);
  opacity: 0.8;
  transition: transform 0.3s, opacity 0.3s;
}

.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }

/* ===== BRANDS ===== */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.brand-item {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 13px;
  color: #444;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: .2s;
  cursor: default;
}

.brand-item:hover {
  border-color: #c62828;
  color: #c62828;
  background: #fff5f5;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-row a {
  color: #c62828;
  text-decoration: none;
  font-weight: 700;
}

.contact-map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: #0d0d0d;
  color: rgba(255,255,255,0.5);
  padding: 30px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 13px;
}

.footer-logo {
  height: 48px;
  width: auto;
  border-radius: 50%;
  opacity: 0.8;
}

footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: #c62828; }

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  animation: slideIn 0.6s ease 1s both, wa-pulse 2.5s 1.6s infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.7); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== BOOKING POPUP ===== */
.overlay-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}

.overlay-bg.active {
  opacity: 1;
  pointer-events: all;
}

.popup {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.overlay-bg.active .popup { transform: translateY(0); }

.popup-close {
  position: absolute;
  top: 16px; right: 20px;
  background: #f0f0f0;
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  color: #555;
  transition: .2s;
}

.popup-close:hover { background: #ddd; color: #111; }

.popup h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  margin-bottom: 6px;
  text-align: left;
}

.popup-sub {
  color: #888;
  font-size: 14px;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.popup input,
.popup select,
.popup textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.popup input:focus,
.popup select:focus,
.popup textarea:focus {
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(198,40,40,0.1);
}

.popup textarea {
  width: 100%;
  min-height: 80px;
  resize: vertical;
  margin-bottom: 16px;
}

.popup button[type="submit"] {
  width: 100%;
  padding: 15px;
  background: #c62828;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: .2s;
}

.popup button[type="submit"]:hover { background: #a61e1e; }
.popup button[type="submit"]:disabled { background: #aaa; cursor: not-allowed; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  #navbar { padding: 12px 20px; }
  #navbar.scrolled { padding: 8px 20px; }
  .nav-links a { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .popup { padding: 28px 20px; }
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 14px; border-radius: 50%; }
}

@media (max-width: 600px) {

  /* Hero */
  .hero { min-height: 80vh; padding: 80px 16px 30px; }
  .hero-logo { width: 75px; height: 75px; }
  .hero-content h1 { font-size: 38px; }
  .hero-sub { font-size: 12px; }
  .hero-stats { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }

  /* Section padding */
  .section-inner { padding: 40px 14px; }

  /* Services — 2 columns, first 6 only */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .box { padding: 14px 10px; }
  .box-icon { font-size: 20px; margin-bottom: 6px; }
  .box-title { font-size: 12px; }
  .box-desc { font-size: 11px; }
  .services-grid .box:nth-child(n+7) { display: none; }
  .services-grid.expanded .box:nth-child(n+7) { display: block !important; }

  /* Show more button */
  .show-more-wrap { display: block; }

  /* Gallery — 2 columns square */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .gallery-item { aspect-ratio: 1/1; }
  .gallery-caption { font-size: 11px; padding: 16px 8px 8px; }
}

/* Show More button */
.show-more-wrap {
  display: none;
  text-align: center;
  margin-top: 18px;
}
.show-more-btn {
  background: transparent;
  border: 2px solid #c62828;
  color: #c62828;
  padding: 10px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: .2s;
}
.show-more-btn:hover { background: #c62828; color: #fff; }

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-left: 4px solid #c62828;
  transition: transform 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(198,40,40,0.1);
}

.faq-q {
  font-weight: 700;
  font-size: 15px;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-a {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.2s, background 0.2s;
}

.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

.review-stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 12px;
}

.review-text {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 600;
}

.review-author span {
  color: rgba(255,255,255,0.3);
  font-weight: 400;
  margin-left: 4px;
}

.review-loading {
  color: rgba(255,255,255,0.4);
  text-align: center;
  grid-column: 1/-1;
  padding: 20px;
}

.reviews-rating {
  text-align: center;
  margin-top: 10px;
}

.rating-stars {
  font-size: 28px;
  color: #f59e0b;
  margin-bottom: 6px;
}

.rating-text {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; }
}