@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --red: #8B1A1A;
  --red-dark: #6B1212;
  --red-light: #B02020;
  --beige: #F5ECD7;
  --beige-dark: #E8D9BC;
  --black: #1A0A0A;
  --black-soft: #220E0E;
  --black-card: #2A1010;
  --white: #FAF4E8;
  --gray: #9A8A7A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; line-height: 1.1; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: 1.5rem; }
p { color: #C8B89A; font-size: 1.05rem; line-height: 1.7; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }

/* ===== FADED BG LOGO ===== */
.bg-logo {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 65vw; max-width: 750px;
  opacity: 0.045;
  pointer-events: none;
  z-index: 1;
  animation: bgFloat 14s ease-in-out infinite;
  filter: blur(1px);
}
@keyframes bgFloat {
  0%,100% { transform: translate(-50%, -50%) scale(1) rotate(-1deg); }
  50%      { transform: translate(-50%, -52%) scale(1.05) rotate(1deg); }
}

/* ===== PARTICLES ===== */
.particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  padding: 14px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 5, 5, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s ease;
}
header.header-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.logo { height: 70px; width: auto; object-fit: contain; }
nav { display: flex; gap: 36px; align-items: center; }
nav a {
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 0.88rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--beige);
  position: relative; padding-bottom: 4px;
  transition: color 0.3s ease, transform 0.2s ease;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red-light);
  transition: width 0.3s ease;
}
nav a:hover, nav a.active { color: var(--red-light); transform: translateY(-2px); }
nav a:hover::after, nav a.active::after { width: 100%; }

/* ===== FAB BUTTONS ===== */
.fab-group {
  position: fixed;
  top: 20px; right: 24px;
  z-index: 9999;
  display: flex; gap: 10px;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.fab-group.fab-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.fab {
  font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 22px;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.fab-call {
  background: rgba(26,10,10,0.92);
  color: var(--beige);
  border: 2px solid rgba(245,236,215,0.3);
}
.fab-call:hover { border-color: var(--beige); color: var(--beige); transform: translateY(-2px); }
.fab-book {
  background: var(--red);
  color: var(--beige);
  border: 2px solid var(--red);
  animation: fabPulse 2.5s ease-in-out infinite;
}
.fab-book:hover { background: var(--red-light); border-color: var(--red-light); color: var(--beige); transform: translateY(-2px); animation: none; }
@keyframes fabPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(139,26,26,0.5); }
  50%      { box-shadow: 0 0 0 9px rgba(139,26,26,0); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 28px; left: 28px;
  z-index: 9999;
  background: var(--black-card);
  color: var(--beige);
  border: 2px solid rgba(139,26,26,0.4);
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  opacity: 0; pointer-events: none;
  transition: all 0.3s ease;
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--red); border-color: var(--red); color: var(--beige); transform: translateY(-3px); }

/* ===== TICKER ===== */
.ticker-wrap {
  width: 100%; background: var(--red);
  padding: 9px 0; overflow: hidden;
  position: relative; z-index: 3;
  margin-top: 98px;
}
.ticker {
  display: flex; gap: 60px;
  animation: tickerScroll 24s linear infinite;
  width: max-content;
}
.ticker span {
  font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--beige); white-space: nowrap;
}
.ticker span::before { content: ' ✦ '; opacity: 0.6; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
section { padding: 100px 60px; position: relative; z-index: 3; }
.section-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 0.75rem;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--red-light); margin-bottom: 16px; display: block;
}
.gold-divider { width: 60px; height: 3px; background: var(--red); margin-bottom: 40px; }
.section-title { margin-bottom: 20px; color: var(--beige); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Children animate when parent is visible */
.card, .why-item, .review-card, .coverage-item,
.service-detail-card, .discount-card, .faq-item, .pricing-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
              transform 0.6s cubic-bezier(0.4,0,0.2,1),
              border-color 0.35s ease, box-shadow 0.35s ease,
              background 0.3s ease;
}
.fade-in.visible .card,
.fade-in.visible .why-item,
.fade-in.visible .review-card,
.fade-in.visible .coverage-item,
.fade-in.visible .service-detail-card,
.fade-in.visible .discount-card,
.fade-in.visible .faq-item,
.fade-in.visible .pricing-card { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.fade-in.visible .card:nth-child(1),.fade-in.visible .why-item:nth-child(1),.fade-in.visible .review-card:nth-child(1),.fade-in.visible .coverage-item:nth-child(1),.fade-in.visible .pricing-card:nth-child(1) { transition-delay: 0.05s; }
.fade-in.visible .card:nth-child(2),.fade-in.visible .why-item:nth-child(2),.fade-in.visible .review-card:nth-child(2),.fade-in.visible .coverage-item:nth-child(2),.fade-in.visible .pricing-card:nth-child(2) { transition-delay: 0.15s; }
.fade-in.visible .card:nth-child(3),.fade-in.visible .why-item:nth-child(3),.fade-in.visible .review-card:nth-child(3),.fade-in.visible .coverage-item:nth-child(3),.fade-in.visible .pricing-card:nth-child(3) { transition-delay: 0.25s; }
.fade-in.visible .card:nth-child(4),.fade-in.visible .why-item:nth-child(4),.fade-in.visible .review-card:nth-child(4) { transition-delay: 0.35s; }
.fade-in.visible .why-item:nth-child(5),.fade-in.visible .review-card:nth-child(5) { transition-delay: 0.45s; }
.fade-in.visible .why-item:nth-child(6),.fade-in.visible .review-card:nth-child(6) { transition-delay: 0.55s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 60px 60px 60px;
  background: linear-gradient(135deg, rgba(139,26,26,0.07) 0%, transparent 60%), var(--black);
  gap: 40px; overflow: hidden;
}
.hero-content { flex: 1; max-width: 580px; }
.hero-image { flex: 1; display: flex; justify-content: flex-end; animation: slideInRight 1s cubic-bezier(0.22,1,0.36,1) 0.2s both; }
.hero-image img { width: 100%; max-width: 560px; height: 360px; object-fit: cover; border: 3px solid var(--red); box-shadow: 0 20px 60px rgba(139,26,26,0.35); }
.hero-label {
  display: inline-block; font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 0.75rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--beige);
  background: var(--red); padding: 6px 16px;
  margin-bottom: 28px; width: fit-content;
  animation: slideInLeft 0.7s cubic-bezier(0.22,1,0.36,1) both, labelGlow 3s ease-in-out 1s infinite alternate;
}
.hero-content h2 { color: var(--beige); margin-bottom: 12px; animation: slideInLeft 0.8s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.hero-content h2 span { color: var(--red-light); }
.hero-content p { max-width: 460px; margin-bottom: 48px; font-size: 1.1rem; animation: slideInLeft 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s both; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; animation: slideInLeft 0.8s cubic-bezier(0.22,1,0.36,1) 0.35s both; }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes labelGlow { from { box-shadow: none; } to { box-shadow: 0 0 20px rgba(139,26,26,0.55); } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 16px 36px;
  cursor: pointer; transition: all 0.3s ease;
  border: 2px solid var(--red); background: var(--red); color: var(--beige);
}
.btn:hover { background: var(--red-light); border-color: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,26,26,0.45); color: var(--beige); }
.btn-secondary { background: transparent; color: var(--beige); border-color: rgba(245,236,215,0.4); }
.btn-secondary:hover { background: var(--beige); color: var(--black); border-color: var(--beige); }
button.btn { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px; cursor: pointer; border: 2px solid var(--red); background: var(--red); color: var(--beige); transition: all 0.3s ease; width: fit-content; }
button.btn:hover { background: var(--red-light); border-color: var(--red-light); transform: translateY(-2px); }

/* ===== SERVICE CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 10px; }
.card { background: var(--black-card); border: 1px solid rgba(139,26,26,0.2); padding: 40px 32px; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--red); transition: height 0.35s ease; }
.card:hover { border-color: rgba(139,26,26,0.6); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.card:hover::before { height: 100%; }
.card-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.card:hover .card-icon { animation: iconBounce 0.5s cubic-bezier(0.22,1,0.36,1); }
.card h3 { color: var(--beige); margin-bottom: 12px; font-size: 1.4rem; letter-spacing: 2px; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--black-soft); border-top: 1px solid rgba(139,26,26,0.15); border-bottom: 1px solid rgba(139,26,26,0.15); overflow: hidden; }
.why-section h2 { color: var(--beige); margin-bottom: 16px; }
.why-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; border: 2px solid rgba(139,26,26,0.06); border-radius: 50%; pointer-events: none; animation: ringPulse 7s ease-in-out infinite; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 10px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; background: var(--black-card); border: 1px solid rgba(139,26,26,0.2); padding: 32px 28px; }
.why-item:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.why-icon { font-size: 2rem; flex-shrink: 0; margin-top: 4px; }
.why-item:hover .why-icon { animation: iconBounce 0.5s cubic-bezier(0.22,1,0.36,1); }
.why-item h3 { color: var(--beige); font-size: 1.2rem; margin-bottom: 8px; letter-spacing: 1px; }
@keyframes iconBounce { 0% { transform: scale(1) rotate(0); } 40% { transform: scale(1.3) rotate(-8deg); } 70% { transform: scale(0.95) rotate(4deg); } 100% { transform: scale(1) rotate(0); } }
@keyframes ringPulse { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 1; } }

/* ===== COVERAGE ===== */
.coverage-section { background: var(--black); }
.coverage-section h2 { color: var(--beige); margin-bottom: 16px; }
.coverage-section h2 span { color: var(--red-light); }
.coverage-desc { max-width: 600px; margin-bottom: 50px; }
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.coverage-item { background: var(--black-card); border: 1px solid rgba(139,26,26,0.2); padding: 36px 28px; }
.coverage-item:hover { border-color: var(--red); transform: translateY(-4px); }
.coverage-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.coverage-item h3 { color: var(--red-light); margin-bottom: 10px; font-size: 1.3rem; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, rgba(139,26,26,0.15) 0%, rgba(139,26,26,0.03) 100%), var(--black-soft); border-top: 3px solid var(--red); border-bottom: 3px solid var(--red); text-align: center; }
.cta-content h2 { font-size: clamp(2.5rem, 6vw, 5rem); color: var(--beige); margin-bottom: 16px; }
.cta-content h2 span { color: var(--red-light); }
.cta-content p { font-size: 1.1rem; margin-bottom: 40px; }
.cta-btn { font-size: 1.1rem; padding: 20px 50px; letter-spacing: 3px; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--black-soft); overflow: hidden; }
.reviews-section h2 { color: var(--beige); }
.reviews-section::before { content: '★★★★★'; position: absolute; top: 30px; right: -10px; font-size: 7rem; color: rgba(139,26,26,0.05); letter-spacing: 8px; pointer-events: none; white-space: nowrap; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 40px; }
.review-card { background: var(--black-card); border: 1px solid rgba(139,26,26,0.15); padding: 36px 32px; position: relative; }
.review-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 5rem; color: rgba(139,26,26,0.1); font-family: Georgia, serif; line-height: 1; }
.review-card:hover { border-color: rgba(139,26,26,0.5); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.stars { color: var(--red-light); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-card p { font-size: 0.97rem; font-style: italic; margin-bottom: 20px; color: #CCCCCC; }
.reviewer { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; color: var(--red-light); text-transform: uppercase; }

/* ===== FOOTER ===== */
.footer-full { background: #0F0505; border-top: 2px solid var(--red); position: relative; z-index: 3; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1fr; gap: 48px; padding: 70px 60px 50px; }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 3px; color: var(--red-light); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(139,26,26,0.3); }
.footer-logo-img { height: 80px; width: auto; object-fit: contain; margin-bottom: 16px; display: block; }
.footer-tagline { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; line-height: 1.6; }
.footer-socials { display: flex; gap: 10px; margin-top: 8px; }
.footer-social-link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--black-card); border: 1px solid rgba(139,26,26,0.35); color: var(--beige); font-family: 'Bebas Neue', sans-serif; font-size: 1rem; font-weight: 700; transition: all 0.3s ease; }
.footer-social-link:hover { background: var(--red); border-color: var(--red); color: var(--beige); transform: translateY(-3px); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #C8B89A; font-size: 0.95rem; transition: color 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '→'; color: var(--red-light); font-size: 0.8rem; }
.footer-links a:hover { color: var(--beige); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; gap: 12px; align-items: flex-start; color: #C8B89A; font-size: 0.9rem; line-height: 1.5; }
.footer-contact-list li span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-list a { color: var(--red-light); transition: color 0.3s; }
.footer-contact-list a:hover { color: var(--beige); }
.footer-cta-btn { display: block; text-align: center; padding: 13px 24px; font-size: 0.82rem; width: 100%; margin-top: 16px; }
.footer-bottom { border-top: 1px solid rgba(139,26,26,0.2); padding: 20px 60px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: var(--gray); font-size: 0.85rem; }

/* ===== CONTACT PAGE ===== */
.contact-hero { min-height: 40vh; display: flex; flex-direction: column; justify-content: center; padding: 140px 60px 60px; background: linear-gradient(135deg, rgba(139,26,26,0.08) 0%, transparent 60%), var(--black); }
.contact-hero h2 { color: var(--beige); margin-bottom: 16px; }
.contact-hero h2 span { color: var(--red-light); }
.contact-hero p { max-width: 500px; font-size: 1.1rem; }
.contact-section { background: var(--black-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { color: var(--beige); margin-bottom: 16px; }
.contact-info h2 span { color: var(--red-light); }
.contact-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 36px; }
.contact-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 4px; }
.contact-item h3 { color: var(--beige); font-size: 1rem; letter-spacing: 2px; margin-bottom: 6px; }
.contact-item a { color: var(--red-light); font-size: 1.05rem; font-weight: 600; transition: color 0.3s; }
.contact-item a:hover { color: var(--beige); }
.contact-item p { font-size: 1rem; color: #C8B89A; }
.contact-form-wrap h2 { color: var(--beige); margin-bottom: 16px; }
.contact-form-wrap h2 span { color: var(--red-light); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--beige); }
.form-group input, .form-group textarea { background: var(--black-card); border: 1px solid rgba(139,26,26,0.3); color: var(--beige); padding: 14px 18px; font-family: 'Barlow', sans-serif; font-size: 1rem; outline: none; transition: border-color 0.3s ease; resize: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--red); }
.contact-btn { width: fit-content; margin-top: 8px; }
.map-section { background: var(--black); }
.map-section h2 { color: var(--beige); margin-bottom: 16px; }
.map-section h2 span { color: var(--red-light); }
.map-wrap { border: 2px solid rgba(139,26,26,0.3); overflow: hidden; transition: border-color 0.3s; }
.map-wrap:hover { border-color: var(--red); }
.socials-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.social-link { display: flex; align-items: center; gap: 12px; color: var(--red-light); font-weight: 600; font-size: 1rem; transition: color 0.3s ease; }
.social-link:hover { color: var(--beige); }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--red); color: var(--beige); font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; flex-shrink: 0; transition: background 0.3s ease; }
.social-link:hover .social-icon { background: var(--red-light); }

/* ===== BOOKING PAGE ===== */
.call-cta-section { background: var(--red); padding: 40px 60px; }
.call-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.call-cta-inner h3 { color: var(--beige); font-size: 1.8rem; margin-bottom: 6px; }
.call-cta-inner p { color: rgba(245,236,215,0.85); }
.call-big-btn { background: var(--beige); color: var(--red); border-color: var(--beige); font-size: 1.1rem; padding: 18px 40px; white-space: nowrap; }
.call-big-btn:hover { background: var(--black); color: var(--beige); border-color: var(--black); }
.pricing-section { background: var(--black-soft); border-top: 1px solid rgba(139,26,26,0.2); }
.pricing-section h2 { color: var(--beige); margin-bottom: 16px; }
.pricing-section h2 span { color: var(--red-light); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 10px; }
.pricing-card { background: var(--black-card); border: 1px solid rgba(139,26,26,0.2); padding: 40px 32px; text-align: center; position: relative; }
.pricing-card.featured { border-color: var(--red); box-shadow: 0 0 30px rgba(139,26,26,0.2); }
.pricing-label { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--red); color: var(--beige); font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; padding: 4px 14px; white-space: nowrap; }
.pricing-card:hover { border-color: var(--red); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.pricing-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.pricing-card h3 { color: var(--beige); margin-bottom: 12px; font-size: 1.4rem; }
.price { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--red-light); letter-spacing: 2px; margin-bottom: 12px; line-height: 1; }
.price span { font-size: 1rem; color: var(--gray); letter-spacing: 1px; }
.booking-form-section { background: var(--black); }
.booking-form-section h2 { color: var(--beige); margin-bottom: 16px; }
.booking-form-section h2 span { color: var(--red-light); }
.booking-note { margin-bottom: 36px; max-width: 500px; }
.booking-form { display: flex; flex-direction: column; gap: 20px; max-width: 800px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== SERVICES PAGE ===== */
.services-detail-section { background: var(--black-soft); }
.services-detail-section h2 { color: var(--beige); margin-bottom: 16px; }
.services-detail-section h2 span { color: var(--red-light); }
.services-list { display: flex; flex-direction: column; gap: 24px; margin-top: 10px; }
.service-detail-card { background: var(--black-card); border: 1px solid rgba(139,26,26,0.2); padding: 40px 36px; display: flex; gap: 32px; align-items: flex-start; }
.service-detail-card:hover { border-color: var(--red); transform: translateX(6px); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.service-detail-icon { font-size: 3rem; flex-shrink: 0; }
.service-detail-content h3 { color: var(--beige); font-size: 1.6rem; margin-bottom: 10px; }
.service-detail-content p { margin-bottom: 16px; }
.service-price { display: inline-block; background: var(--red); color: var(--beige); font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; }
.discounts-section { background: var(--black); }
.discounts-section h2 { color: var(--beige); margin-bottom: 16px; }
.discounts-section h2 span { color: var(--red-light); }
.discounts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 10px; }
.discount-card { background: var(--black-card); border: 1px solid rgba(139,26,26,0.2); padding: 44px 36px; text-align: center; }
.discount-card:hover { border-color: var(--red); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.discount-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.discount-card h3 { color: var(--beige); font-size: 1.5rem; margin-bottom: 16px; }
.discount-badge { display: inline-block; background: var(--red); color: var(--beige); font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 3px; padding: 8px 24px; margin-bottom: 20px; }
.faq-section { background: var(--black-soft); }
.faq-section h2 { color: var(--beige); margin-bottom: 16px; }
.faq-section h2 span { color: var(--red-light); }
.faq-list { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; max-width: 860px; }
.faq-item { background: var(--black-card); border: 1px solid rgba(139,26,26,0.2); border-left: 3px solid var(--red); padding: 32px 36px; }
.faq-item:hover { border-color: var(--red); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.faq-item h3 { color: var(--beige); font-size: 1.15rem; margin-bottom: 10px; letter-spacing: 1px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; padding: 50px 24px 36px; } }
@media (max-width: 768px) {
  header { padding: 12px 20px; }
  nav { gap: 16px; }
  .hero { flex-direction: column; padding: 80px 24px 60px; text-align: center; align-items: center; }
  .hero-label { margin: 0 auto 24px; }
  .hero-buttons { justify-content: center; }
  .hero-image { justify-content: center; width: 100%; }
  .hero-image img { max-width: 100%; height: 220px; }
  section { padding: 70px 24px; }
  .cta-banner { padding: 70px 24px; }
  .call-cta-section { padding: 30px 24px; }
  .call-cta-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail-card { flex-direction: column; gap: 16px; }
  .contact-hero { padding: 120px 24px 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 30px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; text-align: center; }
  .back-to-top { bottom: 20px; left: 20px; width: 40px; height: 40px; font-size: 1rem; }
  .fab-group { top: 14px; right: 14px; gap: 8px; }
  .fab { padding: 10px 14px; font-size: 0.72rem; }
  .bg-logo { width: 90vw; }
  .ticker-wrap { margin-top: 74px; }
}