/* ============================================
   MEMORY LANE - LIVE ENTERTAINMENT
   Website Stylesheet
   Design: Brushed metal header, red/navy duotone,
   inspired by memorylanetoronto.com
   Colors: Navy #1B2A4A | Red #C41E3A | Gold #D4A843
   ============================================ */

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

:root {
  --navy: #1B2A4A;
  --navy-dark: #0F1A2E;
  --navy-light: #2A3D63;
  --red: #C41E3A;
  --red-dark: #9E1830;
  --red-light: #E8425A;
  --gold: #D4A843;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --light-gray: #EEEEEE;
  --gray: #888888;
  --dark-gray: #333333;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--dark-gray);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 16px; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; margin-bottom: 12px; }
p { margin-bottom: 16px; }
.text-red { color: var(--red); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.text-light { color: var(--gray); }
.lead { font-size: 1.15rem; color: #555; line-height: 1.7; }
.section-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* ============================================
   BRUSHED METAL HEADER BAR
   Matches current memorylanetoronto.com design
   ============================================ */
.top-bar {
  background: url('../images/brushed-metal.png') center/cover no-repeat;
  padding: 10px 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-logo img {
  height: 55px;
  width: auto;
}
.top-bar-logo .logo-text {
  display: inline-flex;
  flex-direction: column;
  margin-left: 10px;
  vertical-align: middle;
}
.top-bar-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 1px;
}
.top-bar-logo .logo-tagline {
  font-family: var(--font-main);
  font-size: 0.65rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.top-bar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: calc((100% - 820px) / 2);
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--dark-gray);
}
.top-bar-contact a {
  color: var(--dark-gray);
  font-weight: 500;
}
.top-bar-contact a:hover { color: var(--red); }
.top-bar-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.top-bar-social a {
  color: var(--dark-gray);
  font-size: 1rem;
  transition: color var(--transition);
}
.top-bar-social a:hover { color: var(--red); }
.top-bar-badge img {
  height: 50px;
  width: auto;
}

/* === NAVIGATION (below brushed metal bar) === */
.navbar {
  position: fixed;
  top: 75px; /* below the top bar */
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  padding: 0 24px;
  transition: all var(--transition);
  border-bottom: 3px solid var(--red);
}
.navbar.scrolled {
  background: rgba(27, 42, 74, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}
.nav-links { display: flex; gap: 0; align-items: center; list-style: none; }
.nav-links li { position: relative; }
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  padding: 12px 18px;
  display: block;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  letter-spacing: 1px !important;
  transition: background var(--transition) !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: var(--transition);
}

/* === GOOGLE RATING WIDGET (floating) === */
.google-rating {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: var(--white);
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  transition: transform var(--transition);
}
.google-rating:hover { transform: translateY(-2px); }
.google-rating .g-logo {
  font-weight: 700;
  font-size: 1.2rem;
}
.google-rating .g-logo span:nth-child(1) { color: #4285F4; }
.google-rating .g-logo span:nth-child(2) { color: #EA4335; }
.google-rating .g-logo span:nth-child(3) { color: #FBBC05; }
.google-rating .g-logo span:nth-child(4) { color: #4285F4; }
.google-rating .g-logo span:nth-child(5) { color: #34A853; }
.google-rating .g-logo span:nth-child(6) { color: #EA4335; }
.google-rating-info { line-height: 1.3; }
.google-rating-link { font-size: 0.75rem; color: var(--gray); }
.google-rating-link a { color: #4285F4; }
.google-rating .stars { color: #FBBC05; font-size: 0.9rem; letter-spacing: 1px; }
.google-rating .score { font-weight: 700; font-size: 1.3rem; color: var(--dark-gray); }

/* === HERO (with video background + reduced duotone overlay) === */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  margin-top: 119px; /* top-bar + nav height */
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Red/Navy duotone overlay — reduced transparency, sits above video */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(196, 30, 58, 0.58) 0%,
    rgba(140, 20, 45, 0.48) 30%,
    rgba(27, 42, 74, 0.58) 70%,
    rgba(15, 26, 46, 0.68) 100%
  );
  z-index: 2;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(196, 30, 58, 0.45) 0%,
    rgba(140, 20, 45, 0.35) 30%,
    rgba(27, 42, 74, 0.45) 70%,
    rgba(15, 26, 46, 0.55) 100%
  );
}
.hero-bg::before {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 80px 24px 80px;
}
.hero-content .section-label { color: var(--gold); }
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.hero-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.hero-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(196,30,58,0.4); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover { border-color: var(--white); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-dark); color: var(--white); transform: translateY(-2px); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* === SECTIONS === */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); padding: 80px 0; }
.section-dark {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-label { color: var(--gold); }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.section-header p { color: #666; font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* === BRUSHED METAL DIVIDER (section separator) === */
.metal-divider {
  height: 60px;
  background: url('../images/brushed-metal.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.metal-divider-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === SERVICES SECTION (alternating layout from current site) === */
.services-section { padding: 0; }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
.service-block.reverse .service-image { order: -1; }
.service-image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}
.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 4px;
}
.service-content .service-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 20px;
}
.service-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

/* === REVIEW BADGE (80+ Reviews circle) === */
.review-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  text-align: center;
  box-shadow: 0 4px 15px rgba(196,30,58,0.3);
}
.review-badge .badge-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.review-badge .badge-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 2px;
}
.review-badge .badge-stars {
  font-size: 0.55rem;
  letter-spacing: 2px;
  margin-top: 2px;
}

/* === CLIENT / COLLABORATOR LOGOS === */
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
}
.logo-grid img {
  height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition);
}
.logo-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.venue-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
}
.venue-logo-grid img {
  height: 55px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all var(--transition);
}
.venue-logo-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.card-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.card-body { padding: 24px; }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border-radius: 8px;
  border: 2px solid var(--light-gray);
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.pricing-card.featured {
  border-color: var(--red);
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(196,30,58,0.15);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px;
}
.pricing-header { padding: 32px 24px 16px; }
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-desc { font-size: 0.9rem; color: var(--gray); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--red);
  font-weight: 700;
  padding: 16px 0;
}
.pricing-features {
  list-style: none;
  padding: 0 24px 24px;
  text-align: left;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--light-gray);
  padding-left: 24px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.pricing-footer { padding: 0 24px 32px; }

/* === TESTIMONIALS === */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #444;
}
.testimonial-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}
.testimonial-meta {
  font-size: 0.8rem;
  color: var(--gray);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* === FEATURED TESTIMONIAL (full-width, like current site's client section) === */
.featured-testimonial {
  position: relative;
  padding: 60px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.featured-testimonial-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.featured-testimonial-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(196,30,58,0.8) 0%, rgba(27,42,74,0.9) 100%);
}
.featured-testimonial .container {
  position: relative;
  z-index: 2;
}
.featured-testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.featured-testimonial cite {
  font-style: normal;
  font-size: 1rem;
  opacity: 0.9;
}

/* === GALLERY GRID === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
}
.gallery-item {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* === VIDEO GRID === */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
/* Reel grid — 2x2 layout for Instagram reels */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.video-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.video-card .video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
/* Taller aspect ratio for Instagram reels */
.video-card .reel-wrap {
  position: relative;
  padding-bottom: 125%;
  height: 0;
}
.video-card .video-wrap iframe,
.video-card .reel-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-card .video-info { padding: 16px; }
.video-card h3 { font-size: 1rem; margin-bottom: 4px; }
.video-card p { font-size: 0.85rem; color: var(--gray); margin: 0; }
/* YouTube feature section below reels */
.youtube-feature {
  margin-top: 48px;
}
.youtube-feature .video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.youtube-feature .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: #555;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 16px;
}

/* === CONTACT FORM (red underline style from current site) === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid var(--red);
  border-radius: 0;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: transparent;
  color: var(--dark-gray);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; border: 1px solid #ddd; border-bottom: 2px solid var(--red); padding: 12px; border-radius: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-family: var(--font-main);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.contact-info-item p { font-size: 0.9rem; color: #555; margin: 0; }

/* === INSTAGRAM FEED SECTION === */
.instagram-section {
  padding: 40px 0;
  text-align: center;
}
.instagram-section h3 {
  font-family: var(--font-main);
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 400;
}
.instagram-section .ig-handle {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.instagram-section .ig-handle a { color: var(--navy); }
.instagram-section .ig-handle a:hover { color: var(--red); }

/* === FOOTER === */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer p { font-size: 0.9rem; line-height: 1.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}
.footer-sitemap {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-sitemap a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.footer-sitemap a:hover { color: var(--white); }

/* === PAGE HEROES (inner pages) === */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  text-align: center;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
  margin-top: 119px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; opacity: 0.8; max-width: 600px; margin: 0 auto; }

/* === FEATURE GRID (forced 4-column horizontal) === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature {
  text-align: center;
  padding: 24px 16px;
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.feature h3 { margin-bottom: 6px; font-size: 1.1rem; }
.feature p { font-size: 0.85rem; color: #555; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { opacity: 0.8; margin-bottom: 24px; font-size: 1.05rem; }

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 2001;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse .service-image { order: 0; }
  .service-image { min-height: 250px; }
}

@media (max-width: 768px) {
  /* Top bar responsive */
  .top-bar { padding: 8px 16px; }
  .top-bar-contact { display: none; }
  .top-bar-badge img { height: 40px; }
  .top-bar-logo { margin-left: 0; }
  .top-bar-logo img { height: 45px; }
  .top-bar-logo .logo-name { font-size: 1.1rem; }
  .top-bar-logo .logo-tagline { font-size: 0.55rem; }

  /* Navbar responsive */
  .navbar { top: 61px; }
  .hero, .page-hero { margin-top: 105px; }
  .nav-inner { justify-content: flex-end; }
  .nav-links {
    display: none;
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 24px;
    gap: 0;
  }
  .nav-links.active { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: left;
  }
  .nav-links a.active::after { display: none; }
  .nav-cta { display: block; text-align: center; margin-top: 12px; margin-left: 0; }
  .nav-toggle { display: block; }

  .hero-stats { flex-direction: column; gap: 16px; }
  .section { padding: 60px 0; }
  .section-alt { padding: 60px 0; }
  .section-dark { padding: 60px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }

  /* Google rating widget */
  .google-rating { bottom: 12px; left: 12px; padding: 8px 12px; font-size: 0.75rem; }
  .google-rating .score { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: center; }
  .hero-stats { gap: 12px; }
  .page-hero { padding: 140px 0 60px; }
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
