/* ============================================
   Maharaja Banquet Hall - Main Stylesheet
   ============================================ */

/* ---------- CSS Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #b8860b;
  --primary-dark: #8b6508;
  --primary-light: #d4a817;
  --secondary: #1a1a2e;
  --accent: #c9a227;
  --success: #2d6a4f;
  --warning: #e6a23c;
  --error: #c0392b;
  --dark: #0f0f1e;
  --darker: #080812;
  --light: #f8f5f0;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --white: #ffffff;
  --gold-gradient: linear-gradient(135deg, #d4a817 0%, #b8860b 50%, #8b6508 100%);
  --dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --shadow-gold: 0 8px 30px rgba(184,134,11,.25);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all .4s cubic-bezier(.25,.8,.25,1);
  --transition-fast: all .2s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: #333;
  background: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
section { position: relative; }

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-gold { color: var(--primary); }

.section-padding { padding: 90px 0; }

.section-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}
.section-subtitle::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 20px; height: 2px;
  background: var(--primary);
  transform: translateY(-50%);
}

.section-title {
  font-size: 38px;
  color: var(--secondary);
  margin-bottom: 20px;
  font-weight: 700;
}
.section-title span { color: var(--primary); }

.section-desc {
  max-width: 650px;
  margin: 0 auto 50px;
  color: var(--gray);
  font-size: 16px;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-gold {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(184,134,11,.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--darker);
  color: #ccc;
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar a { color: #ccc; transition: var(--transition-fast); }
.top-bar a:hover { color: var(--primary); }
.top-bar i { color: var(--primary); margin-right: 5px; }
.top-bar-right a {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.08);
  transition: var(--transition-fast);
}
.top-bar-right a:hover { background: var(--primary); color: var(--white); }
.top-bar-right a i { margin: 0; }

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.1);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
}
.logo i {
  font-size: 32px;
  color: var(--primary);
}
.logo span { color: var(--primary); }
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary);
  border-radius: 6px;
  transition: var(--transition-fast);
  position: relative;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary);
}
.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 50%;
}

.nav-cta {
  margin-left: 10px;
  padding: 10px 24px !important;
  background: var(--gold-gradient);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.menu-toggle {
  display: none;
  font-size: 24px;
  color: var(--secondary);
  cursor: pointer;
  background: none;
  border: none;
}

/* ---------- Hero Slider ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10,10,20,.75) 0%, rgba(20,20,40,.55) 100%);
}
.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: var(--white);
  width: 90%;
  max-width: 800px;
  padding: 0 20px;
}
.hero-content .hero-subtitle {
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
  font-weight: 600;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}
.hero-content h1 {
  font-size: 60px;
  margin-bottom: 20px;
  line-height: 1.15;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}
.hero-content h1 span { color: var(--primary-light); }
.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .9s forwards;
}

.hero-dots {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dots .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 2px solid transparent;
}
.hero-dots .dot.active {
  background: var(--primary);
  border-color: var(--white);
  transform: scale(1.2);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition-fast);
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--primary); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* Slider down arrow */
.scroll-down {
  position: absolute;
  bottom: 80px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  font-size: 24px;
  animation: bounce 2s infinite;
  cursor: pointer;
}

/* ---------- About Section ---------- */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.about-images img {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-images img:first-child {
  grid-row: span 2;
  height: 100%;
}
.about-images .about-img-2 { height: 250px; }
.about-images .about-img-3 { height: 250px; }

.about-badge {
  position: absolute;
  bottom: -20px; right: -10px;
  background: var(--gold-gradient);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-badge .number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-badge .text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content .section-subtitle { padding-left: 0; }
.about-content .section-subtitle::before { display: none; }
.about-content h2 {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 20px;
}
.about-content h2 span { color: var(--primary); }
.about-content p {
  color: #555;
  margin-bottom: 20px;
  font-size: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 25px 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary);
}
.about-feature i {
  color: var(--primary);
  font-size: 18px;
}

/* ---------- Services Section ---------- */
.services {
  background: linear-gradient(180deg, var(--light) 0%, #f0ebe0 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
}
.service-card-icon {
  position: absolute;
  bottom: -25px; left: 30px;
  width: 55px; height: 55px;
  background: var(--gold-gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.service-card-body {
  padding: 35px 30px 30px;
}
.service-card-body h3 {
  font-size: 22px;
  color: var(--secondary);
  margin-bottom: 12px;
}
.service-card-body p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 15px;
}
.service-card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.service-card-link:hover { gap: 12px; }

/* ---------- Gallery Section ---------- */
.gallery {
  background: var(--white);
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 8px 22px;
  border: 2px solid var(--gray-light);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition-fast);
  background: none;
}
.gallery-filter:hover,
.gallery-filter.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(184,134,11,.05);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(184,134,11,.7), rgba(15,15,30,.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i {
  font-size: 32px;
  color: var(--white);
  transform: scale(.5);
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay i { transform: scale(1); }
.gallery-item-label {
  position: absolute;
  bottom: 15px; left: 15px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Gallery Popup (Lightbox) ---------- */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.92);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: fadeIn .3s ease;
}
.lightbox.active { display: flex; }
.lightbox-content {
  max-width: 800px;
  max-height: 85vh;
  position: relative;
  animation: zoomIn .4s ease;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: -45px; right: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--error); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav:hover { background: var(--primary); }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }
.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

/* ---------- Video Section ---------- */
.video-section {
  background: linear-gradient(180deg, #f0ebe0 0%, var(--light) 100%);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.video-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 8/12;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.video-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.video-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.video-card:hover img { transform: scale(1.08); }
.video-card-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(15,15,30,.4), rgba(15,15,30,.6));
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 24px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  border: 3px solid rgba(255,255,255,.3);
}
.video-card:hover .video-play-btn {
  transform: scale(1.15);
  border-color: var(--white);
}
.video-play-btn::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: ripple 1.5s infinite;
}
.video-card-label {
  position: absolute;
  bottom: 20px; left: 20px;
  color: var(--white);
  z-index: 2;
}
.video-card-label h4 {
  font-size: 18px;
  margin-bottom: 4px;
}
.video-card-label span {
  font-size: 13px;
  opacity: .8;
}

/* Video Popup */
.video-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.92);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: fadeIn .3s ease;
}
.video-popup.active { display: flex; }
.video-popup-content {
  max-width: 250px;
  width: 100%;
  position: relative;
  animation: zoomIn .4s ease;
}
.video-popup-content video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0,0,0,.5);
}
.video-popup-close {
  position: absolute;
  top: -45px; right: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex; align-items: center; justify-content: center;
}
.video-popup-close:hover { background: var(--error); transform: rotate(90deg); }

/* ---------- Why Us Section ---------- */
.why-us {
  background: var(--dark-gradient);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,134,11,.08), transparent 70%);
  border-radius: 50%;
}
.why-us .section-title { color: var(--white); }
.why-us .section-title span { color: var(--primary-light); }
.why-us .section-desc { color: rgba(255,255,255,.6); }
.why-us .section-subtitle { color: var(--primary-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.why-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(184,134,11,.3);
  transform: translateY(-5px);
}
.why-card-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.why-card-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--white);
}
.why-card-body p {
  color: rgba(255,255,255,.6);
  font-size: 15px;
}

/* ---------- Counter Section ---------- */
.counter-section {
  background: var(--gold-gradient);
  padding: 60px 0;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.counter-item {
  color: var(--white);
}
.counter-item i {
  font-size: 36px;
  margin-bottom: 12px;
  opacity: .9;
}
.counter-item .counter-number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.counter-item .counter-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: .9;
}

/* ---------- FAQ Section ---------- */
.faq {
  background: var(--white);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--light);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition-fast);
}
.faq-item.active {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
  font-family: var(--font-heading);
}
.faq-question i {
  font-size: 18px;
  color: var(--primary);
  transition: transform .3s ease;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 25px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 25px 20px;
}
.faq-answer p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- Clients/Testimonials ---------- */
.clients {
  background: linear-gradient(180deg, var(--light) 0%, #f0ebe0 100%);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card .quote-icon {
  position: absolute;
  top: 20px; right: 25px;
  font-size: 40px;
  color: rgba(184,134,11,.12);
}
.testimonial-stars {
  margin-bottom: 15px;
}
.testimonial-stars i {
  color: var(--primary);
  font-size: 16px;
}
.testimonial-text {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}
.testimonial-author h5 {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--gray);
}

/* ---------- Contact Section ---------- */
.contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 55px; height: 55px;
  border-radius: 14px;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.contact-info-body h4 {
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 5px;
}
.contact-info-body p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.5;
}
.contact-info-body a {
  color: var(--gray);
  transition: var(--transition-fast);
}
.contact-info-body a:hover { color: var(--primary); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.contact-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--secondary);
  transition: var(--transition-fast);
  border: 1px solid var(--gray-light);
}
.contact-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--light);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
}
.contact-form-wrapper h3 {
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 8px;
}
.contact-form-wrapper > p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 25px;
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}
.form-group label .required { color: var(--error); }
.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--secondary);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(184,134,11,.08);
}
.form-control::placeholder { color: #aaa; }
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-error {
  color: var(--error);
  font-size: 13px;
  margin-top: 5px;
  display: none;
}
.form-group.error .form-control {
  border-color: var(--error);
}
.form-group.error .form-error { display: block; }

.form-success {
  background: var(--success);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  animation: fadeUp .4s ease;
}
.form-success.show { display: flex; }

/* ---------- Map ---------- */
.map-section {
  padding: 0;
  height: 400px;
  overflow: hidden;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.2) contrast(1.1);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--darker);
  color: rgba(255,255,255,.6);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-about .logo {
  color: var(--white);
  margin-bottom: 18px;
}
.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  font-size: 14px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links li a:hover { color: var(--primary); padding-left: 5px; }
.footer-links li a i { font-size: 12px; color: var(--primary); }

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
  align-items: flex-start;
}
.footer-contact li i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact li a { color: rgba(255,255,255,.6); }
.footer-contact li a:hover { color: var(--primary); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,.7);
  transition: var(--transition-fast);
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  text-align: center;
  font-size: 14px;
}
.footer-bottom a { color: var(--primary); }

/* ---------- Floating Buttons ---------- */
.floating-buttons {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.floating-btn {
  width: 55px; height: 55px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  transition: var(--transition-fast);
  border: none;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-btn.call {
  background: linear-gradient(135deg, #d4a817, #b8860b);
}
.floating-btn.whatsapp {
  background: #25d366;
}
.floating-btn.whatsapp::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: ripple 1.5s infinite;
}
.floating-btn.top {
  background: var(--secondary);
  opacity: 0;
  pointer-events: none;
}
.floating-btn.top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Page Header (sub pages) ---------- */
.page-header {
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}
.page-header::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10,10,20,.8), rgba(20,20,40,.6));
}
.page-header-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 20px;
}
.page-header h1 {
  font-size: 42px;
  margin-bottom: 12px;
}
.page-header h1 span { color: var(--primary-light); }
.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}
.page-header .breadcrumb a { color: rgba(255,255,255,.7); }
.page-header .breadcrumb a:hover { color: var(--primary-light); }
.page-header .breadcrumb span { color: var(--primary-light); }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Scroll-triggered animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: .15s; }
.animate-on-scroll.delay-2 { transition-delay: .3s; }
.animate-on-scroll.delay-3 { transition-delay: .45s; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-content h1 { font-size: 44px; }
  .section-title { font-size: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .header { padding: 0; }
  .header-inner { padding: 10px 15px; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 25px 30px;
    gap: 0;
    box-shadow: -5px 0 30px rgba(0,0,0,.15);
    transition: right .4s ease;
    overflow-y: auto;
  }
  .nav-menu.active { right: 0; }
  .nav-menu li { width: 100%; }
  .nav-menu li a {
    display: block;
    padding: 14px 15px;
    width: 100%;
    border-bottom: 1px solid var(--gray-light);
    border-radius: 0;
  }
  .nav-menu li a::after { display: none; }
  .nav-cta {
    margin: 15px 0 0;
    width: 100%;
    text-align: center;
    border-radius: 50px;
  }

  .hero-content h1 { font-size: 34px; }
  .hero-content p { font-size: 15px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-arrow { display: none; }
  .scroll-down { display: none; }

  .section-padding { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .about-features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .video-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .why-card { flex-direction: column; text-align: center; }
  .why-card-icon { margin: 0 auto; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item .counter-number { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 25px 20px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .page-header h1 { font-size: 30px; }
  .about-images { grid-template-columns: 1fr 1fr; }
  .about-images img:first-child { grid-row: auto; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .section-title { font-size: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-filters { gap: 8px; }
  .gallery-filter { padding: 6px 16px; font-size: 13px; }
  .floating-buttons { bottom: 20px; right: 20px; }
  .floating-btn { width: 48px; height: 48px; font-size: 20px; }
  .about-badge { padding: 15px 20px; }
  .about-badge .number { font-size: 28px; }
}
