/* ============================================================
   BROTHERS INVISIBLE GRILL - Main Stylesheet
   Brand Colors: Navy Blue #1a2b5e | Gold #f5a623 | Red #c0392b
   ============================================================ */

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

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --navy: #1a2b5e;
  --navy-dark: #0f1a3e;
  --navy-light: #253470;
  --gold: #f5a623;
  --gold-dark: #d4891a;
  --gold-light: #fbbf47;
  --red: #c0392b;
  --white: #ffffff;
  --cream: #f8f6f1;
  --gray-100: #f4f5f7;
  --gray-200: #e9eaed;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text-dark: #111827;
  --text-body: #374151;
  --shadow-sm: 0 2px 8px rgba(26,43,94,0.10);
  --shadow-md: 0 4px 24px rgba(26,43,94,0.15);
  --shadow-lg: 0 8px 40px rgba(26,43,94,0.20);
  --shadow-xl: 0 16px 60px rgba(26,43,94,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utility Classes ───────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-gold { background: var(--gold); }
.bg-cream { background: var(--cream); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); text-align: center;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white); color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark); transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.section-header { margin-bottom: 50px; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy); line-height: 1.2; margin-bottom: 12px;
}
.section-header p {
  font-size: 1rem; color: var(--gray-600); max-width: 600px;
}
.section-header.center p { margin: 0 auto; }
.divider {
  width: 60px; height: 4px; background: var(--gold);
  border-radius: 2px; margin: 12px 0 16px;
}
.divider.center { margin: 12px auto 16px; }

/* ─── Top Bar ───────────────────────────────────────────── */
.top-bar {
  background: var(--navy-dark);
  color: var(--gray-200);
  padding: 8px 0;
  font-size: 0.8rem;
}
.top-bar .container {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.top-bar a { color: var(--gold); transition: var(--transition); }
.top-bar a:hover { color: var(--gold-light); }
.top-info { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.top-info span { display: flex; align-items: center; gap: 6px; }
.top-social { display: flex; gap: 10px; }
.top-social a {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: var(--transition);
}
.top-social a:hover { background: var(--gold); color: var(--navy); }

/* ─── Navigation ────────────────────────────────────────── */
.navbar {
  background: var(--white);
  padding: 0; position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  min-height: 100px;
  padding: 10px 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img {
  height: 80px; width: auto; border-radius: 50%;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text strong {
  font-size: 1rem; font-weight: 800; color: var(--navy);
  line-height: 1.1; letter-spacing: -0.3px;
}
.nav-logo-text span {
  font-size: 0.7rem; color: var(--gold); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu li { position: relative; }
.nav-menu a {
  display: block; padding: 8px 14px;
  font-size: 0.88rem; font-weight: 500; color: var(--gray-800);
  border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--navy); background: var(--gray-100);
}
/* Dropdown */
.has-dropdown > a::after {
  content: ' ▾'; font-size: 0.65rem;
}
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); min-width: 220px;
  padding: 8px 0; opacity: 0; pointer-events: none;
  transform: translateY(8px); transition: var(--transition);
  z-index: 200;
}
.has-dropdown:hover .dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.dropdown li a {
  padding: 9px 18px; font-size: 0.83rem;
  display: flex; align-items: center; gap: 8px; border-radius: 0;
}
.dropdown li a:hover { background: var(--cream); color: var(--navy); }
.dropdown li a::before { content: '›'; color: var(--gold); font-size: 1rem; }
/* Mega dropdown for services */
.mega-dropdown {
  position: absolute; top: 100%; left: -280px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); width: 640px;
  padding: 24px; opacity: 0; pointer-events: none;
  transform: translateY(8px); transition: var(--transition);
  z-index: 200; display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.has-dropdown:hover .mega-dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  border-radius: 50px !important; font-weight: 700 !important;
  padding: 10px 22px !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none; background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 16px 20px; max-height: 0;
  overflow: hidden; transition: max-height 0.4s ease;
}
.mobile-nav.open { display: block; max-height: 600px; overflow-y: auto; }
.mobile-nav a {
  display: block; padding: 10px 0; font-size: 0.9rem;
  color: var(--gray-800); border-bottom: 1px solid var(--gray-200);
  font-weight: 500;
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-sub { padding-left: 16px; }
.mobile-sub a { font-size: 0.82rem; color: var(--gray-600); }

/* ─── Hero Section ──────────────────────────────────────── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--navy-dark);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.35; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(26,43,94,0.92) 0%, rgba(15,26,62,0.75) 60%, rgba(197,57,43,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold); padding: 6px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
  font-weight: 800;
}
.hero h1 .highlight { color: var(--gold); }
.hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.82); margin-bottom: 32px;
  line-height: 1.7; max-width: 560px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 50px; flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--gold); line-height: 1; font-family: 'Playfair Display', serif;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 2px; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-text { color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; }
.scroll-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  animation: bounce 2s infinite;
}
.scroll-arrow svg { color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─── Features Strip ────────────────────────────────────── */
.features-strip {
  background: var(--navy);
  padding: 24px 0;
}
.features-grid {
  display: flex; gap: 0; flex-wrap: wrap;
}
.feature-item {
  flex: 1; min-width: 180px;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(245,166,35,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.feature-text strong { display: block; color: var(--white); font-size: 0.88rem; font-weight: 600; }
.feature-text span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

/* ─── Services Section ──────────────────────────────────── */
.services-section { padding: 80px 0; background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-xl);
}
.service-card-img {
  position: relative; height: 200px; overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,43,94,0.7) 0%, transparent 60%);
}
.service-card-num {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}
.service-card-body { padding: 20px; }
.service-card-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 12px;
}
.service-card-body h3 {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 8px; line-height: 1.3;
}
.service-card-body p {
  font-size: 0.82rem; color: var(--gray-600);
  line-height: 1.6; margin-bottom: 14px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--gold);
  transition: var(--transition);
}
.service-link:hover { color: var(--gold-dark); gap: 10px; }

/* Gradient fallback for missing images */
.grad-balcony { background: linear-gradient(135deg, #1a2b5e 0%, #2d4a8a 100%); }
.grad-spikes { background: linear-gradient(135deg, #c0392b 0%, #e05a4a 100%); }
.grad-sports { background: linear-gradient(135deg, #1a8c4e 0%, #2db36a 100%); }
.service-icon-large {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center; font-size: 5rem;
}

/* ─── About Section ─────────────────────────────────────── */
.about-section { padding: 80px 0; background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-visual { position: relative; }
.about-video-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); position: relative;
}
.about-video-wrap video { width: 100%; display: block; border-radius: var(--radius-xl); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); border-radius: var(--radius-md);
  padding: 20px 24px; box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 800; color: var(--navy); }
.about-badge span { font-size: 0.78rem; color: var(--navy); font-weight: 600; }
.about-content { padding-left: 10px; }
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy); margin-bottom: 16px; line-height: 1.2;
}
.about-content p {
  font-size: 0.95rem; color: var(--gray-600);
  line-height: 1.8; margin-bottom: 16px;
}
.about-features { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.about-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: var(--cream); border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.about-feature-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.about-feature strong { display: block; color: var(--navy); font-size: 0.9rem; }
.about-feature p { color: var(--gray-600); font-size: 0.8rem; margin: 0; }

/* ─── Why Choose Us ─────────────────────────────────────── */
.why-section { padding: 80px 0; background: var(--navy); }
.why-section .section-header h2 { color: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 28px;
  text-align: center; transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1); transform: translateY(-4px);
  border-color: var(--gold);
}
.why-icon {
  width: 60px; height: 60px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 16px;
}
.why-card h3 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.8rem; line-height: 1.6; }

/* ─── Gallery Preview ───────────────────────────────────── */
.gallery-preview { padding: 80px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; min-height: 180px;
  object-fit: cover; transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(26,43,94,0.0); transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(26,43,94,0.5); }
.gallery-item-overlay svg {
  color: var(--white); font-size: 2rem; opacity: 0;
  transition: var(--transition); transform: scale(0.5);
}
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; transform: scale(1); }

/* Gallery Video Items */
.gallery-video-item { position: relative; border-radius: var(--radius-md); overflow: hidden; }
.gallery-video-item video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vid-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; background: rgba(26,43,94,0.4);
  transition: var(--transition); cursor: pointer;
}
.vid-play-btn:hover { background: rgba(26,43,94,0.6); }
.play-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; color: var(--navy);
  transition: var(--transition);
}
.vid-play-btn:hover .play-circle { transform: scale(1.1); }

/* ─── Testimonials ──────────────────────────────────────── */
.testimonials { padding: 80px 0; background: var(--white); }
.testimonials-slider { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 28px; border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
}
.author-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.author-loc { font-size: 0.75rem; color: var(--gray-400); }

/* ─── CTA Banner ────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, var(--red) 100%);
  padding: 70px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white); margin-bottom: 12px; position: relative;
}
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-phone {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 700; font-size: 1.3rem;
  margin-bottom: 24px; justify-content: center;
}
.cta-phone span { font-size: 1.5rem; }

/* ─── Footer ────────────────────────────────────────────── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; flex-wrap: wrap;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 75px; border-radius: 50%; }
.footer-logo-text strong { display: block; color: var(--white); font-size: 0.95rem; font-weight: 700; }
.footer-logo-text span { font-size: 0.68rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h4 {
  color: var(--white); font-size: 0.9rem; font-weight: 700;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a::before { content: '›'; color: var(--gold); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; margin-bottom: 12px;
}
.footer-contact li span:first-child { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.65); }
.footer-contact li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom span { color: var(--gold); }

/* ─── Page Header (for inner pages) ────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 49%, var(--white) 50%);
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--white);
  font-weight: 800; margin-bottom: 12px; position: relative;
}
.page-header p { color: rgba(255,255,255,0.75); font-size: 1rem; position: relative; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-bottom: 20px; position: relative;
}
.breadcrumb a { color: var(--gold); font-size: 0.82rem; }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* ─── Service Inner Page ────────────────────────────────── */
.service-detail { padding: 80px 0; }
.service-detail-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: start;
}
.service-video-hero { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.service-video-hero video { width: 100%; display: block; }
.service-video-hero img { width: 100%; height: 400px; object-fit: cover; }
.service-detail-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--navy); margin-bottom: 12px;
}
.service-detail-content p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.service-features-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.service-feature {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--cream); border-radius: var(--radius-sm);
}
.service-feature::before {
  content: '✓'; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--navy); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}
.service-feature span { font-size: 0.87rem; color: var(--gray-700); font-weight: 500; }
.service-info-box {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 28px; color: var(--white); margin-top: 24px;
}
.service-info-box h4 { color: var(--gold); font-size: 0.95rem; margin-bottom: 14px; }
.info-row { display: flex; gap: 12px; margin-bottom: 10px; align-items: flex-start; }
.info-row label { font-size: 0.78rem; color: rgba(255,255,255,0.5); min-width: 100px; }
.info-row span { font-size: 0.82rem; color: rgba(255,255,255,0.85); font-weight: 500; }

/* ─── Gallery Page ──────────────────────────────────────── */
.gallery-page { padding: 60px 0; }
.gallery-filter {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 50px; font-size: 0.82rem;
  font-weight: 600; border: 2px solid var(--gray-200);
  background: var(--white); color: var(--gray-600);
  cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--navy); background: var(--navy); color: var(--white);
}
.gallery-masonry {
  columns: 4; gap: 16px;
}
.gallery-masonry .gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--radius-md); overflow: hidden;
}
.gallery-masonry .gallery-item img,
.gallery-masonry .gallery-item video {
  width: 100%; display: block; border-radius: var(--radius-md);
  transition: transform 0.4s ease;
}
.gallery-masonry .gallery-item:hover img,
.gallery-masonry .gallery-item:hover video { transform: scale(1.03); }

/* ─── Contact Page ──────────────────────────────────────── */
.contact-section { padding: 70px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px;
}
.contact-info-card {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: 40px; color: var(--white);
}
.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; margin-bottom: 6px; color: var(--white);
}
.contact-info-card > p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(245,166,35,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; color: var(--gold);
}
.contact-detail-text label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text p {
  font-size: 0.9rem; color: var(--white); font-weight: 500; margin: 0;
}
.contact-detail-text a:hover { color: var(--gold); }
.contact-map { border-radius: var(--radius-md); overflow: hidden; margin-top: 28px; }
.contact-map iframe { width: 100%; height: 200px; border: none; display: block; }
.contact-form-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 40px; box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--navy); margin-bottom: 6px;
}
.contact-form-card > p { color: var(--gray-600); font-size: 0.85rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.88rem;
  color: var(--text-body); background: var(--white);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,43,94,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; padding: 16px 20px; background: #d4edda;
  border-radius: var(--radius-sm); border-left: 4px solid #28a745;
  color: #155724; font-size: 0.88rem; margin-top: 12px;
}

/* ─── WhatsApp Float ────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulse-wa 2s infinite; cursor: pointer; font-size: 1.6rem;
  text-decoration: none;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
}
.phone-float {
  position: fixed; bottom: 95px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; box-shadow: var(--shadow-md);
  cursor: pointer; font-size: 1.4rem; text-decoration: none;
  transition: var(--transition);
}
.phone-float:hover { background: var(--gold); transform: scale(1.1); }

/* ─── Animations ────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; }
  .gallery-masonry { columns: 3; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-info span:not(:first-child) { display: none; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 80vh; }
  .features-strip .features-grid { gap: 0; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .section-pad { padding: 50px 0; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .mega-dropdown { display: none !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery-masonry { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 1; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
