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

:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --red: #c41e1e;
  --red-dark: #8b1a1a;
  --red-glow: rgba(196, 30, 30, 0.3);
  --gold: #c9a84c;
  --gold-light: #e0c068;
  --white: #f5f0e8;
  --gray: #888;
  --gray-light: #bbb;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader {
  width: 60px; height: 60px;
  border: 3px solid var(--black-card);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--red); }
.nav-logo span {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--white); letter-spacing: 1px;
}
.nav-logo .accent { color: var(--red); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gray-light);
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--red); color: var(--white);
  padding: 0.7rem 1.5rem; border-radius: 4px;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--red-glow);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; z-index: 1001; background: none; border: none;
}
.hamburger span {
  width: 28px; height: 2px; background: var(--white);
  transition: transform 0.3s, opacity 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); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/interior.png') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(140,20,20,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 800px; padding: 0 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(196,30,30,0.15); border: 1px solid rgba(196,30,30,0.3);
  padding: 0.5rem 1.2rem; border-radius: 50px;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px;
  color: var(--red); margin-bottom: 2rem;
  animation: fadeInDown 1s 0.2s both;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem;
  animation: fadeInUp 1s 0.4s both;
}
.hero h1 .line { display: block; }
.hero h1 .highlight {
  color: var(--red);
  text-shadow: 0 0 40px var(--red-glow);
}
.hero p {
  font-size: 1.1rem; color: var(--gray-light); max-width: 550px;
  margin: 0 auto 2.5rem; animation: fadeInUp 1s 0.6s both;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 1s 0.8s both;
}
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 1rem 2.5rem; border-radius: 4px;
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; border: none; cursor: pointer;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover {
  background: var(--red-dark); transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--red-glow);
}
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 1rem 2.5rem; border-radius: 4px;
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--red); color: var(--red);
  transform: translateY(-3px);
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll span {
  display: block; width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3); border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: ''; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 8px;
  background: var(--red); border-radius: 2px;
  animation: scroll-dot 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
@keyframes scroll-dot { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }

/* ===== SECTION COMMON ===== */
.section { padding: 6rem 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 4px; color: var(--red); margin-bottom: 1rem;
  position: relative; padding: 0 2rem;
}
.section-tag::before, .section-tag::after {
  content: ''; position: absolute; top: 50%;
  width: 30px; height: 1px; background: var(--red);
}
.section-tag::before { left: -10px; }
.section-tag::after { right: -10px; }
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: 1rem;
}
.section-subtitle { color: var(--gray); max-width: 550px; margin: 0 auto; font-size: 1rem; }

/* ===== ABOUT ===== */
#about { background: var(--black-light); }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-image {
  position: relative; border-radius: 8px; overflow: hidden;
}
.about-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 8px; }
.about-image::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid var(--red); border-radius: 8px;
  transform: translate(12px, 12px); z-index: -1;
}
.about-text h3 {
  font-family: var(--font-heading); font-size: 2.2rem;
  margin-bottom: 1.5rem; line-height: 1.3;
}
.about-text p { color: var(--gray-light); margin-bottom: 1.5rem; font-size: 0.95rem; }
.about-stats {
  display: flex; gap: 2rem; margin-top: 2rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-heading); font-size: 2.5rem;
  font-weight: 700; color: var(--red);
}
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); }

/* ===== SERVICES ===== */
.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;
}
.service-card {
  background: var(--black-card); border-radius: 12px;
  padding: 2.5rem 2rem; border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196,30,30,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: 12px;
  background: rgba(196,30,30,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.5rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(196,30,30,0.2); }
.service-card h3 {
  font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 0.75rem;
}
.service-card p { color: var(--gray); font-size: 0.9rem; margin-bottom: 1.5rem; }
.service-price {
  font-family: var(--font-heading); font-size: 1.5rem;
  color: var(--red); font-weight: 700;
}
.service-price span { font-size: 0.8rem; color: var(--gray); font-weight: 400; }

/* ===== GALLERY ===== */
#gallery { background: var(--black-light); }
.gallery-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 8px;
  cursor: pointer;
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials-container { max-width: 800px; margin: 0 auto; position: relative; }
.testimonial-card {
  text-align: center; padding: 3rem 2rem;
  display: none;
}
.testimonial-card.active { display: block; animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1.5rem; letter-spacing: 4px; }
.testimonial-text {
  font-family: var(--font-heading); font-size: 1.4rem;
  font-style: italic; line-height: 1.8; margin-bottom: 2rem;
  color: var(--gray-light);
}
.testimonial-author { font-weight: 600; font-size: 1rem; }
.testimonial-role { color: var(--gray); font-size: 0.8rem; margin-top: 0.25rem; }
.testimonial-dots {
  display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem;
}
.testimonial-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer;
  transition: all 0.3s;
}
.testimonial-dots button.active { background: var(--red); transform: scale(1.3); }

/* ===== PRICING ===== */
#pricing { background: var(--black-light); }
.pricing-table {
  max-width: 800px; margin: 0 auto;
  background: var(--black-card); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.pricing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: rgba(196,30,30,0.05); }
.pricing-service h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 0.25rem; }
.pricing-service p { color: var(--gray); font-size: 0.8rem; }
.pricing-amount {
  font-family: var(--font-heading); font-size: 1.5rem;
  font-weight: 700; color: var(--red); white-space: nowrap;
}

/* ===== CONTACT / MAP ===== */
.contact-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem; background: var(--black-card); border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s;
}
.contact-item:hover { border-color: rgba(196,30,30,0.3); }
.contact-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(196,30,30,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 0.25rem; }
.contact-item p { color: var(--gray-light); font-size: 0.9rem; }
.contact-item a { color: var(--gray-light); transition: color 0.3s; }
.contact-item a:hover { color: var(--red); }
.contact-map {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  min-height: 400px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.8) invert(0.92) contrast(0.85); }

/* ===== HOURS ===== */
.hours-grid {
  max-width: 600px; margin: 2rem auto 0;
  background: var(--black-card); border-radius: 16px;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; }
.hours-row .time { color: var(--red); font-weight: 600; }
.hours-row.today { color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  background: var(--black-light);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 2rem 1.5rem;
}
.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo img { width: 40px; height: 40px; border-radius: 50%; }
.footer-logo span { font-family: var(--font-heading); font-size: 1.1rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05); display: flex;
  align-items: center; justify-content: center;
  transition: all 0.3s; font-size: 1rem;
}
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-copy { width: 100%; text-align: center; color: var(--gray); font-size: 0.8rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-copy .heart { color: var(--red); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s, transform 0.8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; opacity: 0; visibility: hidden; transition: all 0.4s;
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
  color: var(--white); transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image img { height: 350px; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 220px); }
  .gallery-item:first-child { grid-row: span 1; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 1.2rem; }
  .hero h1 { font-size: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .pricing-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .about-stats { flex-direction: column; align-items: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .footer-content { flex-direction: column; text-align: center; }
}
