/* =========================================
   MADHU DERANGULA - ANDHRA LUXURY REDESIGN
   Telugu Bridal Grandeur Design System
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Noto+Sans+Telugu:wght@400;600&family=Raleway:wght@300;400;500;600&display=swap');

/* =========================================
   ANDHRA COLOR PALETTE
   ========================================= */
:root {
  /* Core Andhra Colors */
  --color-maroon: #7B1A2A;         /* Deep Kumkum Red */
  --color-maroon-dark: #5a1020;    /* Darker Maroon */
  --color-maroon-light: #a52535;
  --color-gold: #C8962A;           /* Rich Temple Gold */
  --color-gold-light: #e8b84b;     /* Soft Gold */
  --color-gold-dim: #9e7520;
  --color-saffron: #D4733A;        /* Saffron/Turmeric Orange */
  --color-ivory: #fdf5e6;          /* Warm Ivory Parchment */
  --color-ivory-alt: #f5e8cc;      /* Deeper Cream */
  --color-peacock: #1A6B6E;        /* Peacock Teal */
  --color-text: #1c0d0d;           /* Deep Warm Black */
  --color-text-light: #5c3d3d;     /* Warm Brown */
  --color-white: #ffffff;

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-subheading: 'EB Garamond', serif;
  --font-body: 'Raleway', sans-serif;
  --font-telugu: 'Noto Sans Telugu', sans-serif;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #C8962A, #e8b84b, #C8962A);
  --grad-maroon: linear-gradient(135deg, #7B1A2A, #a52535, #7B1A2A);
  --grad-temple: linear-gradient(180deg, #1c0d0d 0%, #3d1515 50%, #1c0d0d 100%);

  /* Spacing */
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  /* Utilities */
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 2px;

  /* Decorative: Kolam-inspired SVG border (base64 inline) */
  --border-ornament: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='12' viewBox='0 0 60 12'%3E%3Cpath d='M0 6 Q15 0 30 6 Q45 12 60 6' stroke='%23C8962A' stroke-width='1' fill='none'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-ivory);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

p { color: var(--color-text-light); margin-bottom: 1rem; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

img { max-width: 100%; height: auto; display: block; }

/* =========================================
   LAYOUT
   ========================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: var(--space-xl) 0; }

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

.text-center { text-align: center; }

/* =========================================
   DECORATIVE DIVIDERS (Kolam / Temple Style)
   ========================================= */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold));
}

.ornament-divider::after {
  background: linear-gradient(to left, transparent, var(--color-gold));
}

.ornament-center {
  color: var(--color-gold);
  font-size: 1.2rem;
}

/* Section Header Style */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-saffron);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-maroon);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-maroon);
  color: var(--color-gold-light);
  border-color: var(--color-gold-dim);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(123, 26, 42, 0.35);
  color: var(--color-gold-light);
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--color-maroon-dark);
  border-color: var(--color-gold-dim);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(200, 150, 42, 0.35);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--color-white);
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--color-gold-light);
  color: var(--color-gold-light);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(253, 245, 230, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(123, 26, 42, 0.12);
  border-bottom: 1px solid var(--color-ivory-alt);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-gold-light);
  transition: var(--transition);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.navbar.scrolled .logo {
  color: var(--color-maroon);
  text-shadow: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.92);
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--color-text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.nav-links .nav-book a {
  background: var(--grad-maroon);
  color: var(--color-gold-light);
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--color-gold-dim);
  letter-spacing: 1.5px;
}

.nav-links .nav-book a::after { display: none; }
.nav-links .nav-book a:hover { box-shadow: 0 8px 20px rgba(123,26,42,0.4); transform: translateY(-1px); }
.navbar.scrolled .nav-links .nav-book a { color: var(--color-gold-light); }

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition);
}

.navbar.scrolled .mobile-menu-btn span { background-color: var(--color-maroon); }

/* =========================================
   HERO SECTION — Grand Andhra Temple Feel
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_andhra_bridal.png');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  z-index: -2;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 13, 13, 0.55) 0%,
    rgba(60, 10, 20, 0.45) 40%,
    rgba(28, 13, 13, 0.85) 100%
  );
  z-index: -1;
}

/* Top gold border bar */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
  z-index: 10;
}

/* Bottom gold border bar */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
  z-index: 10;
}

.hero-content {
  max-width: 860px;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(35px);
  animation: fadeInUp 1.2s ease forwards 0.4s;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-badge::before,
.hero-badge::after {
  content: '✦';
  font-size: 0.6rem;
  color: var(--color-gold);
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.05;
  letter-spacing: 2px;
  color: var(--color-white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-title span {
  color: var(--color-gold-light);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
}

.hero-divider span {
  font-size: 1.5rem;
  color: var(--color-gold);
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold));
}
.hero-divider::after {
  background: linear-gradient(to left, transparent, var(--color-gold));
}

.hero-tagline {
  font-family: var(--font-subheading);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(253, 245, 230, 0.9);
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  border: 2px solid var(--color-gold);
  padding: 12px;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(200, 150, 42, 0.35);
  z-index: 0;
}

.about-image-frame img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.about-stats {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--grad-maroon);
  border: 1px solid var(--color-gold-dim);
  padding: 2rem 2.5rem;
  text-align: center;
  z-index: 10;
  box-shadow: 0 15px 40px rgba(123, 26, 42, 0.3);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-gold-light);
  display: block;
  line-height: 1;
}

.stat-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(253, 245, 230, 0.8);
  margin-top: 0.3rem;
}

/* Kolam Corner Decorations */
.corner-decor {
  position: absolute;
  width: 40px;
  height: 40px;
  color: var(--color-gold);
  font-size: 1.5rem;
  line-height: 1;
}
.corner-decor.tl { top: -18px; left: -18px; }
.corner-decor.tr { top: -18px; right: -18px; }
.corner-decor.bl { bottom: -18px; left: -18px; }
.corner-decor.br { bottom: -18px; right: -18px; }

.about-content { }

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--color-maroon);
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.9;
}

.seen-on-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold-dim);
  margin-bottom: 0.8rem;
  display: block;
}

.seen-on-logos {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.seen-on-logos span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-maroon);
  opacity: 0.65;
  transition: var(--transition);
}

.seen-on-logos span:hover { opacity: 1; }

/* =========================================
   SERVICES SECTION — Temple Card Style
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--color-white);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--color-ivory-alt);
  position: relative;
  overflow: hidden;
}

/* Top gold accent line */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--grad-gold);
  transition: var(--transition);
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(123, 26, 42, 0.1);
  border-color: var(--color-gold);
}

.service-icon {
  font-size: 2.8rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--color-maroon);
}

.service-price {
  display: inline-block;
  background: var(--color-ivory-alt);
  color: var(--color-maroon);
  padding: 0.4rem 1rem;
  font-weight: 700;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-left: 3px solid var(--color-gold);
}

/* =========================================
   PORTFOLIO SECTION
   ========================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  border: 2px solid transparent;
  transition: border-color 0.4s ease;
}

.portfolio-item:hover {
  border-color: var(--color-gold);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(90, 16, 32, 0.9) 0%,
    rgba(60, 10, 20, 0.5) 50%,
    rgba(0,0,0,0) 100%
  );
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition);
}

.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-category {
  color: var(--color-gold-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  transform: translateY(15px);
  transition: transform 0.4s ease 0.1s;
}

.portfolio-title {
  color: var(--color-white);
  font-size: 1.4rem;
  transform: translateY(15px);
  transition: transform 0.4s ease 0.2s;
}

.portfolio-item:hover .portfolio-category,
.portfolio-item:hover .portfolio-title { transform: translateY(0); }

/* =========================================
   TESTIMONIALS — Luxe Quote Style
   ========================================= */
.testimonials-section { position: relative; }

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 20rem;
  color: var(--color-maroon);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}

.testimonial-slider {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.testimonial-item {
  background: var(--color-white);
  padding: 3.5rem;
  border: 1px solid var(--color-ivory-alt);
  box-shadow: 0 15px 50px rgba(123, 26, 42, 0.07);
  position: relative;
}

/* Gold top accent */
.testimonial-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-subheading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-maroon-dark);
  margin-bottom: 2rem;
  line-height: 1.9;
}

.testimonial-author {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--color-saffron);
}

/* =========================================
   BOOKING SECTION — Dark Temple Aesthetic
   ========================================= */
.booking-section {
  background: var(--grad-temple);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Background temple pattern using CSS */
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(200,150,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,115,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.booking-section .section-subtitle { color: var(--color-gold-light); }
.booking-section .section-title { color: var(--color-ivory); }

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.booking-info h3 {
  font-size: 2.2rem;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
}

.booking-info p { color: rgba(253, 245, 230, 0.75); margin-bottom: 2rem; }

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 150, 42, 0.15);
  color: var(--color-gold-light);
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(200, 150, 42, 0.3);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.urgency-badge::before { content: '🪔'; }

.whatsapp-btn-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #25D366;
  color: white;
  padding: 1.3rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.whatsapp-btn-large:hover {
  background-color: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.booking-form {
  background: rgba(253, 245, 230, 0.04);
  border: 1px solid rgba(200, 150, 42, 0.3);
  padding: 3rem;
  backdrop-filter: blur(5px);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: var(--color-gold-light);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200, 150, 42, 0.3);
  color: var(--color-ivory);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control::placeholder { color: rgba(253, 245, 230, 0.4); }
.form-control option { background-color: #3d1515; color: var(--color-ivory); }

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.09);
}

/* =========================================
   FOOTER — Rich Dark with Gold
   ========================================= */
.footer {
  background-color: #0f0509;
  color: rgba(253, 245, 230, 0.65);
  padding: 5rem 0 2rem;
  border-top: 3px solid var(--color-maroon);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.footer-cta {
  text-align: center;
  padding: 3rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(200, 150, 42, 0.2);
}

.footer-cta h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}

.footer-cta p {
  color: rgba(253, 245, 230, 0.6);
  margin-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 1rem;
  color: var(--color-gold);
  font-size: 2rem;
  text-shadow: none;
}

.footer h4 {
  color: var(--color-ivory);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 150, 42, 0.2);
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.8rem; }

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover { color: var(--color-gold-light); padding-left: 5px; }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
}

/* =========================================
   STICKY WHATSAPP
   ========================================= */
.sticky-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.sticky-whatsapp:hover { transform: scale(1.12) rotate(-5deg); }

/* =========================================
   MEDIA GALLERY
   ========================================= */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.media-item {
  background: var(--color-white);
  border: 1px solid var(--color-ivory-alt);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(123, 26, 42, 0.06);
}

.video-container video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.media-caption {
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-align: center;
  color: var(--color-maroon);
  border-top: 1px solid var(--color-ivory-alt);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
  .hero-title { font-size: 4rem; }

  .about-grid,
  .booking-container { grid-template-columns: 1fr; gap: 3rem; }

  .about-stats { right: 0; }

  .services-grid,
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .navbar .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-title { font-size: 2.8rem; }
  .hero-buttons { flex-direction: column; }
  .section-title { font-size: 2.2rem; }

  .services-grid,
  .portfolio-grid,
  .media-grid { grid-template-columns: 1fr; }

  .section { padding: 4rem 0; }
}
