/* ============================================================
   VIVAAN REALTY — style.css
   Theme: Luxury White/Grey with Red accent
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --red: #C8102E;
  --red-dark: #9B0C23;
  --red-light: #F5D6DB;
  --black: #0D0D0D;
  --dark: #1A1A1A;
  --grey-dark: #3A3A3A;
  --grey-mid: #6B6B6B;
  --grey-light: #F4F4F4;
  --grey-border: #E0E0E0;
  --white: #FFFFFF;
  --cream: #FAFAF8;
  --gold: #C9A84C;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 4px;
  --radius-lg: 12px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Bebas Neue', cursive;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { color: var(--grey-mid); line-height: 1.75; }

.section-tag {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  color: var(--black);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-mid);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.text-center { text-align: center; }
.text-red { color: var(--red); }

/* ── Containers ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,16,46,0.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,16,46,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }

/* ── Header / Navbar ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
#header.scrolled {
  border-bottom-color: var(--grey-border);
  box-shadow: var(--shadow-sm);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-dark);
  letter-spacing: 0.04em;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.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 {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #1a2a1a 0%,
    #0d1a2e 30%,
    #1a0d0d 70%,
    #0d0d0d 100%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,16,46,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(200,16,46,0.08) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-text .hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-text .hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
}
.hero-text h1 {
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}
.hero-text h1 span { color: var(--red); }
.hero-location {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.hero-price-strip {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.price-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  padding: 8px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-pill .type { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.price-pill .price { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); font-weight: 700; }
.price-pill .price span { color: var(--red); }
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .num {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}
.hero-stat .num span { color: var(--red); }
.hero-stat .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; }

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-form-card h3 { font-size: 1.25rem; margin-bottom: 4px; color: var(--black); }
.hero-form-card p { font-size: 0.85rem; margin-bottom: 20px; color: var(--grey-mid); }
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--grey-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; margin-top: 4px; justify-content: center; }

/* ── Section: USPs / Stats ── */
.usp-bar {
  background: var(--red);
  padding: 28px 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.usp-item:last-child { border-right: none; }
.usp-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.usp-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 2px; }
.usp-item p { color: rgba(255,255,255,0.75); font-size: 0.82rem; line-height: 1.4; margin: 0; }

/* ── About Section ── */
.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 130px;
  box-shadow: var(--shadow-md);
}
.about-badge .big { font-family: var(--font-accent); font-size: 2.5rem; line-height: 1; }
.about-badge .small { font-size: 0.75rem; opacity: 0.85; }
.about-text .section-tag { display: block; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}
.about-feature-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.about-feature h4 { font-size: 0.9rem; margin-bottom: 2px; }
.about-feature p { font-size: 0.8rem; line-height: 1.4; margin: 0; }

/* ── Pricing Section ── */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pricing-card {
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  background: var(--white);
}
.pricing-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.pricing-card.featured {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}
.pricing-card-header {
  background: var(--grey-light);
  padding: 24px;
  border-bottom: 1px solid var(--grey-border);
}
.pricing-card.featured .pricing-card-header {
  background: var(--red);
}
.pricing-card-header .type {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--dark);
}
.pricing-card.featured .pricing-card-header .type { color: var(--white); }
.pricing-card-header .price-from { font-size: 0.75rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.1em; }
.pricing-card.featured .pricing-card-header .price-from { color: rgba(255,255,255,0.7); }
.pricing-card-header .price-amt {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  margin-top: 4px;
}
.pricing-card.featured .pricing-card-header .price-amt { color: var(--white); }
.popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.pricing-card-body { padding: 24px; }
.pricing-features { margin-bottom: 24px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.88rem;
  color: var(--grey-dark);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Floor Plans ── */
.floorplan-section { background: var(--grey-light); }
.floorplan-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 40px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab-btn {
  padding: 12px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-mid);
  background: var(--white);
  border-right: 1px solid var(--grey-border);
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active {
  background: var(--red);
  color: var(--white);
}
.tab-btn:hover:not(.active) { background: var(--grey-light); color: var(--dark); }
.floorplan-panel { display: none; }
.floorplan-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.floorplan-image-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.floorplan-image-wrap img {
  max-height: 380px;
  margin: 0 auto;
  object-fit: contain;
}
.floorplan-placeholder {
  background: linear-gradient(135deg, #f8f8f8, #eeeeee);
  border-radius: var(--radius);
  padding: 60px 20px;
  text-align: center;
  border: 2px dashed var(--grey-border);
}
.floorplan-placeholder .fp-icon { font-size: 4rem; margin-bottom: 16px; }
.floorplan-placeholder p { font-size: 0.9rem; color: var(--grey-mid); }
.floorplan-specs { }
.floorplan-specs h3 { margin-bottom: 20px; }
.spec-table { width: 100%; }
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-border);
  font-size: 0.9rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row .label { color: var(--grey-mid); }
.spec-row .value { font-weight: 600; color: var(--dark); }

/* ── Connectivity ── */
.connectivity-section { background: var(--white); }
.connectivity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.connectivity-map {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}
.connectivity-map iframe { width: 100%; height: 100%; border: none; }
.connectivity-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.conn-card {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--red);
  transition: var(--transition);
}
.conn-card:hover { background: var(--red); }
.conn-card:hover .conn-icon,
.conn-card:hover .conn-to,
.conn-card:hover .conn-time { color: var(--white) !important; }
.conn-icon { font-size: 1.5rem; margin-bottom: 8px; }
.conn-to { font-weight: 600; font-size: 0.9rem; color: var(--dark); margin-bottom: 4px; }
.conn-time { font-size: 0.82rem; color: var(--grey-mid); }

/* ── Customer Gallery ── */
.gallery-section { background: var(--cream); }
.gallery-tag { background: var(--red-light); color: var(--red); padding: 4px 16px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; display: inline-block; margin-bottom: 12px; }
.masonry-grid {
  columns: 4;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,16,46,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay span { color: var(--white); font-size: 2rem; }

/* ── Testimonials ── */
.testimonials-section { background: var(--dark); }
.testimonials-section .section-tag { color: var(--red); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.5); }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide {
  min-width: 33.333%;
  padding: 0 12px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.testimonial-img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
}
.testimonial-info .name { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.testimonial-info .unit { color: var(--red); font-size: 0.8rem; }
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}
.slider-arrows { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.slider-arrow:hover { background: var(--red); border-color: var(--red); }

/* ── Lead Form Section ── */
.lead-section { background: var(--grey-light); }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lead-info { }
.lead-info h2 { margin-bottom: 16px; }
.lead-info p { margin-bottom: 28px; }
.lead-contact-items { display: flex; flex-direction: column; gap: 16px; }
.lead-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lead-contact-icon {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.lead-contact-item .detail { font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.lead-contact-item .sub { font-size: 0.82rem; color: var(--grey-mid); }
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.lead-form-card h3 { margin-bottom: 6px; }
.lead-form-card .subtitle { font-size: 0.88rem; color: var(--grey-mid); margin-bottom: 28px; }

/* ── FAQ Section ── */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--red); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
  gap: 12px;
}
.faq-item.open .faq-question { color: var(--red); }
.faq-icon { font-size: 1.3rem; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--grey-mid); }

/* ── Footer ── */
footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.6);
}
.footer-top {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo { height: 50px; margin-bottom: 16px; filter: brightness(2); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-body); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a:hover { color: var(--red); }

/* ── Floating Buttons ── */
.floating-btns {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  white-space: nowrap;
}
.float-btn:hover { transform: translateX(-4px); box-shadow: var(--shadow-lg); }
.float-btn-label { overflow: hidden; max-width: 0; transition: max-width 0.4s ease; white-space: nowrap; }
.floating-btns:hover .float-btn-label { max-width: 200px; }
.float-wa { background: #25D366; color: var(--white); }
.float-call { background: var(--dark); color: var(--white); }
.float-visit { background: var(--red); color: var(--white); }
.float-icon { font-size: 1.3rem; flex-shrink: 0; }

/* ── Popup / Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  padding: 48px 40px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s ease;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--grey-light);
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: var(--red); color: var(--white); }
.modal-tag { background: var(--red); color: var(--white); padding: 4px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; display: inline-block; margin-bottom: 16px; }
.modal-box h2 { font-size: 1.6rem; margin-bottom: 6px; }
.modal-box .subtitle { font-size: 0.88rem; color: var(--grey-mid); margin-bottom: 24px; }

/* ── Image Lightbox ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--red); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(200,16,46,0.2), transparent);
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb a:hover { color: var(--red); }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,0.25); }

/* ── Utility ── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }
.tag-chip {
  background: var(--red-light);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.red-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.red-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-border);
}

/* ── Scroll top ── */
#scroll-top {
  position: fixed;
  bottom: 180px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 998;
  box-shadow: var(--shadow-sm);
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--red); }

/* ── Page transitions ── */
.page-fade-in { animation: pageFadeIn 0.6s ease forwards; }
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
