/* ============================================
   CREOVI STUDIO — FINAL v3
   Button/Accent: #F9FF00 (Yellow)
   Violet: #7c5cff
   Dark BG: #1a1433
   ============================================ */

:root {
  --yellow: #F9FF00;
  --yellow-dim: rgba(249, 255, 0, 0.7);
  --yellow-glow: rgba(249, 255, 0, 0.25);
  --yellow-subtle: rgba(249, 255, 0, 0.06);
  --violet: #7c5cff;
  --violet-light: #9b82ff;
  --violet-glow: rgba(124, 92, 255, 0.2);
  --violet-subtle: rgba(124, 92, 255, 0.06);

  --dark-bg: #1a1433;
  --dark-bg-2: #140f2a;
  --dark-card: rgba(255, 255, 255, 0.04);
  --dark-card-hover: rgba(255, 255, 255, 0.08);
  --dark-glass: rgba(255, 255, 255, 0.05);
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-text: #f0f0f5;
  --dark-text-2: rgba(240, 240, 245, 0.6);
  --dark-text-3: rgba(240, 240, 245, 0.3);

  --light-bg: #f7f5ff;
  --light-bg-2: #ffffff;
  --light-border: rgba(0, 0, 0, 0.07);
  --light-text: #111118;
  --light-text-2: #555566;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 999px;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--dark-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.sidebar-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* === SCROLL REVEAL === */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }
.reveal-on-scroll:nth-child(2) { transition-delay: 0.07s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.14s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.21s; }

/* ================================================
   BUTTONS — Yellow #F9FF00
   ================================================ */

/* Primary filled */
.btn-fill {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer; border: none;
  background: var(--yellow); color: #111;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 4px 25px var(--yellow-glow);
  letter-spacing: -0.01em;
}
.btn-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.btn-fill:hover::after,
.btn-fill:active::after { transform: translateX(100%); }
.btn-fill:hover {
  box-shadow: 0 6px 35px var(--yellow-glow), 0 0 60px rgba(249, 255, 0, 0.1);
  transform: translateY(-2px);
}
.btn-fill:active { transform: scale(0.97) !important; }

.btn-arrow {
  transition: transform 0.3s var(--ease); font-size: 13px;
}
.btn-fill:hover .btn-arrow { transform: translateX(4px); }

/* Outline (on dark bg) */
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer;
  background: transparent; color: var(--dark-text);
  border: 1.5px solid var(--dark-border);
  transition: transform 0.35s var(--ease), border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  letter-spacing: -0.01em;
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(249, 255, 0, 0.04);
}
.btn-outline:active { transform: scale(0.97) !important; }

/* Outline (on light bg) */
.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer;
  background: transparent; color: var(--light-text);
  border: 1.5px solid var(--light-border);
  transition: transform 0.35s var(--ease), border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  letter-spacing: -0.01em;
}
.btn-outline-light:hover {
  border-color: var(--violet);
  color: var(--violet);
  background: var(--violet-subtle);
}
.btn-outline-light:active { transform: scale(0.97) !important; }

.btn-sm { padding: 12px 24px; font-size: 14px; }

/* Mobile: always show active-like states */
@media (hover: none) {
  .btn-fill {
    box-shadow: 0 4px 20px var(--yellow-glow);
  }
  .btn-outline {
    border-color: rgba(255,255,255,0.15);
  }
  .btn-outline-light {
    border-color: rgba(0,0,0,0.12);
  }
  .service-card {
    background: var(--dark-card-hover) !important;
    border-color: rgba(124, 92, 255, 0.1) !important;
  }
  .service-card::after {
    transform: scaleX(1) !important;
  }
  .brand-logo {
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  }
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  max-width: 1300px; margin: auto; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; position: relative;
}
.center-logo { flex: 0 0 auto; display: flex; align-items: center; }
.logo-img { height: 55px; width: auto; }
.left-links { display: none !important; }
.nav-links { flex: 1; display: flex; justify-content: flex-end; gap: 2px; align-items: center; }
.right-links { flex: unset; display: flex; gap: 2px; justify-content: flex-end; align-items: center; }
.nav-links a {
  font-family: var(--font-body); font-size: 14px; padding: 9px 15px;
  font-weight: 500; color: var(--dark-text-2); border-radius: var(--radius-full);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: var(--dark-text); background: var(--violet-subtle); }

.nav-cta {
  background: var(--yellow) !important; color: #111 !important;
  font-weight: 600 !important; padding: 9px 20px !important; font-size: 13px !important;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 12px var(--yellow-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--yellow-glow); }

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  position: absolute; right: 20px; top: 26px; cursor: pointer; z-index: 1001; padding: 6px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--dark-text); border-radius: 2px; }

/* Sidebar */
.sidebar {
  position: fixed; top: 0; left: -300px; width: 280px; height: 100dvh;
  background: var(--dark-bg-2); border-right: 1px solid var(--dark-border);
  padding: 24px 20px; z-index: 9999;
  transition: left 0.35s var(--ease); display: flex; flex-direction: column; overflow-y: auto;
}
.sidebar.active { left: 0; }
.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(3px);
  z-index: 9998; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.sidebar-overlay.active { opacity: 1; pointer-events: all; }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; }
.sidebar-logo-img { width: 110px; height: auto; }
.close-btn {
  font-size: 1.1rem; background: none; border: none; cursor: pointer;
  color: var(--dark-text-2); width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.close-btn:hover { background: var(--violet-subtle); color: var(--dark-text); }
.sidebar-links { display: flex; flex-direction: column; gap: 4px; margin-top: 28px; }
.sidebar-links a {
  font-family: var(--font-body); font-size: 15px; color: var(--dark-text-2);
  padding: 13px 14px; border-radius: var(--radius-sm); transition: all 0.2s;
}
.sidebar-links a:hover { color: var(--dark-text); background: var(--violet-subtle); }
.sidebar-btn { margin-top: 8px; width: 100%; text-align: center; }

/* ================================================
   HERO (DARK)
   ================================================ */
.hero-wrapper {
  background: var(--dark-bg);
  background-image:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(124, 92, 255, 0.1), transparent 70%),
    radial-gradient(ellipse 40% 30% at 70% 10%, rgba(249, 255, 0, 0.03), transparent 60%);
  width: 100%; position: relative; overflow: hidden;
}

.hero {
  padding: 40px 20px 70px;
  text-align: center; display: flex; flex-direction: column; align-items: center;
  max-width: 860px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 9px 20px; border: 1px solid var(--dark-border);
  border-radius: var(--radius-full); margin-bottom: 24px;
  color: var(--dark-text-2); background: var(--dark-glass);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: 18px; font-weight: 600; line-height: 1.1; letter-spacing: -0.03em;
}
.highlight {
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; font-weight: 700;
}
.highlight-dark {
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; font-weight: 700;
}
.animated-words {
  display: inline-block; margin-left: 6px;
  font-family: var(--font-heading); font-weight: 700;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dim));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animated-words.visible { opacity: 1; transform: translateY(0); }
.subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.8vw, 1.1rem);
  color: var(--dark-text-2); max-width: 540px; margin-bottom: 32px; line-height: 1.7;
}
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; width: 100%;
}

/* ================================================
   CAROUSEL (LIGHT)  — Requirement #5
   ================================================ */
.cards-section {
  padding: 20px 0; background: var(--light-bg); position: relative; overflow: hidden;
}
.cards-section::before, .cards-section::after {
  content: ''; position: absolute; top: 0; width: 60px; height: 100%; z-index: 2; pointer-events: none;
}
.cards-section::before { left: 0; background: linear-gradient(to right, var(--light-bg), transparent); }
.cards-section::after { right: 0; background: linear-gradient(to left, var(--light-bg), transparent); }
.carousel-wrapper { width: 100%; overflow: hidden; }
.cards-container { display: flex; gap: 10px; will-change: transform; padding: 10px 0; }
.cards-container img {
  width: 200px; aspect-ratio: 9 / 16; object-fit: cover; flex-shrink: 0;
  border-radius: var(--radius-md); border: 1px solid var(--light-border);
  transition: transform 0.3s ease;
}

/* ================================================
   TRUSTED BRANDS (LIGHT)
   ================================================ */
.trusted-brands { padding: 60px 20px; background: var(--light-bg); text-align: center; }
.trusted-title {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  padding: 10px 24px; border: 1px solid var(--light-border);
  border-radius: var(--radius-full); margin-bottom: 36px;
  background: #fff; color: var(--light-text-2); box-shadow: 0 1px 8px rgba(0,0,0,0.03);
}
.brands-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; max-width: 1100px; margin: 0 auto;
}
.brand-logo {
  background: #fff; padding: 18px 12px; border-radius: var(--radius-md);
  border: 1px solid var(--light-border); display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.brand-logo:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(124,92,255,0.07); }
.brand-logo img { max-width: 100%; max-height: 65px; object-fit: contain; }

/* ================================================
   ABOUT (DARK)
   ================================================ */
.about-section {
  background: var(--dark-bg-2);
  background-image: radial-gradient(ellipse 40% 50% at 20% 50%, rgba(124,92,255,0.05), transparent);
  padding: 70px 20px; display: flex; justify-content: center; align-items: center;
}
.about-wrapper {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  max-width: 860px; width: 100%;
}
.about-card {
  background: var(--dark-glass); backdrop-filter: blur(16px);
  border: 1px solid var(--dark-border); border-radius: var(--radius-lg);
  width: 100%; padding: 3rem 2.5rem; color: var(--dark-text); text-align: center;
}
.about-badge {
  display: inline-flex; font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 8px 26px; border: 1px solid var(--dark-border);
  border-radius: var(--radius-full); margin-bottom: 24px; color: var(--dark-text-2);
}
.about-title {
  font-family: var(--font-heading); font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600; margin-bottom: 0.8rem; letter-spacing: -0.02em;
}
.about-divider {
  border: none; height: 1px;
  background: linear-gradient(to right, transparent, var(--dark-border), transparent);
  margin: 1rem auto; max-width: 220px;
}
.about-highlight {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 400;
  margin-bottom: 0.8rem; color: var(--dark-text-2);
}
.about-description {
  font-family: var(--font-body); font-size: 0.95rem; line-height: 1.75;
  color: var(--dark-text-2); max-width: 680px; margin: 0 auto;
}
.about-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ================================================
   WORK SECTION + REELS/STATICS (DARK) — #6
   ================================================ */
.work-section {
  text-align: center; padding: 70px 20px 40px;
  background: var(--dark-bg);
}
.work-label {
  display: inline-flex; font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 8px 26px; border: 1px solid var(--dark-border);
  border-radius: var(--radius-full); margin-bottom: 18px;
  color: var(--dark-text-2); background: var(--dark-glass);
}
.work-heading {
  font-family: var(--font-heading); font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 600; line-height: 1.2; margin-bottom: 30px;
  color: var(--dark-text); letter-spacing: -0.02em;
}

.toggle-section { margin-bottom: 10px; }
.toggle-buttons {
  display: flex; justify-content: center; align-items: center;
  padding: 5px; border-radius: var(--radius-full);
  background: var(--dark-glass); border: 1px solid var(--dark-border);
  gap: 4px; width: fit-content; margin: 0 auto; flex-wrap: wrap;
}
.toggle-buttons .btn {
  padding: 12px 24px; margin: 0; border: none; border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: 14px; cursor: pointer;
  background: transparent; color: var(--dark-text-2); font-weight: 500;
  transition: all 0.3s ease; white-space: nowrap; min-width: auto;
}
.toggle-buttons .btn.active {
  background: var(--yellow); color: #111;
  box-shadow: 0 2px 14px var(--yellow-glow);
}
.toggle-buttons .btn:hover:not(.active) { color: var(--dark-text); background: var(--yellow-subtle); }

.reel-wrapper, .static-wrapper {
  padding: 10px 20px 30px; background: var(--dark-bg);
}
.reel-section, .static-gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px;
}
.reel-card {
  aspect-ratio: 9 / 16; width: 100%; border-radius: var(--radius-md);
  overflow: hidden; background: var(--dark-card); border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
}
.reel-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.4); }
.reel-card wistia-player { width: 100%; height: 100%; display: block; }
.static-gallery img {
  width: 100%; height: auto; object-fit: contain; border-radius: var(--radius-sm);
  border: 1px solid var(--dark-border); transition: transform 0.3s ease;
}
.static-gallery img:hover { transform: scale(1.02); }

@media (min-width: 768px) { .reel-section, .static-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .reel-section, .static-gallery { grid-template-columns: repeat(5, 1fr); } }

/* ================================================
   SERVICES (DARK) — #7 Glowing cards
   ================================================ */
.services-section {
  padding: 70px 20px; text-align: center;
  background: var(--dark-bg-2); position: relative; overflow: hidden;
}
.services-section::before {
  content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(124,92,255,0.07), transparent 70%);
  pointer-events: none;
}

.section-labels {
  font-family: var(--font-body); font-size: 13px; padding: 8px 24px;
  color: var(--light-text-2); border: 1px solid var(--light-border);
  border-radius: var(--radius-full); margin-bottom: 16px; font-weight: 500;
  display: inline-block; background: #fff;
}
.section-labels--dark {
  color: var(--dark-text-2); border-color: var(--dark-border); background: var(--dark-glass);
}
.section-headings {
  font-family: var(--font-heading); font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 600; margin-bottom: 44px; color: var(--dark-text); letter-spacing: -0.02em;
}

.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 1100px; margin: 0 auto 44px;
}

.service-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center;
  transition: all 0.45s var(--ease); position: relative; overflow: hidden;
}
/* Glow gradient behind card */
.service-card::before {
  content: ''; position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(124,92,255,0.15), rgba(249,255,0,0.08), transparent);
  border-radius: var(--radius-lg); z-index: -1; opacity: 0;
  transition: opacity 0.45s var(--ease);
}
/* Bottom accent bar */
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--violet), var(--yellow));
  transform: scaleX(0); transition: transform 0.45s var(--ease); transform-origin: left;
}
.service-card:hover {
  transform: translateY(-8px);
  background: var(--dark-card-hover);
  border-color: rgba(124,92,255,0.15);
  box-shadow: 0 0 40px rgba(124,92,255,0.08), 0 16px 40px rgba(0,0,0,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.service-icon-wrap img { height: 50px; width: auto; }
.service-card h3 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  color: var(--dark-text); margin-bottom: 0.5rem;
}
.service-card p {
  font-family: var(--font-body); font-size: 0.88rem;
  color: var(--dark-text-2); line-height: 1.6;
}
.center-button { display: flex; justify-content: center; }

/* ================================================
   TESTIMONIALS (DARK) — #8
   ================================================ */
.testimonial-section {
  background: var(--dark-bg);
  background-image: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(124,92,255,0.06), transparent);
  display: flex; flex-direction: column; align-items: center;
  padding: 70px 20px;
}
.testimonial-header { text-align: center; margin-bottom: 30px; }
.section-label {
  display: inline-flex; font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 8px 26px; border: 1px solid var(--dark-border);
  border-radius: var(--radius-full); margin-bottom: 18px;
  color: var(--dark-text-2); background: var(--dark-glass);
}
.section-heading {
  font-family: var(--font-heading); font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 600; max-width: 700px; margin: 0 auto; line-height: 1.2;
  color: var(--dark-text); letter-spacing: -0.02em;
}
.testimonial-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px; max-width: 1100px; width: 100%; margin: 0 auto;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

.testimonial-card {
  border: 1px solid var(--dark-border); background: var(--dark-card);
  border-radius: var(--radius-md); overflow: hidden; transition: all 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: 0 10px 35px rgba(0,0,0,0.3); transform: translateY(-3px);
  border-color: rgba(124,92,255,0.12);
}
.testimonial-card img { width: 100%; height: auto; display: block; }

/* ================================================
   CONTACT (LIGHT) — #9
   ================================================ */
.contact-us {
  width: 100%; background: var(--light-bg);
  padding: 70px 20px 50px; text-align: center; position: relative; overflow: hidden;
}
.c-h {
  font-family: var(--font-heading); color: var(--light-text);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 600; margin-bottom: 30px; letter-spacing: -0.02em;
}
.contimg { margin-bottom: 24px; }
.contimg picture { display: block; }
.contimg img {
  width: 100%; max-width: 900px; border-radius: var(--radius-lg);
  margin: 0 auto; display: block;
}
.cta-buttons {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* ================================================
   FOOTER (DARK)
   ================================================ */
.footer {
  background: var(--dark-bg); color: var(--dark-text);
  font-family: var(--font-body); padding: 44px 20px 20px;
  border-top: 1px solid var(--dark-border);
}
.flogo-img {
  display: block; padding-bottom: 16px; margin: 0 auto;
  width: 50%; max-width: 380px; height: auto;
}
.divider { border: none; border-top: 1px solid var(--dark-border); max-width: 90%; margin: 0 auto 1.5rem; }
.footer-content {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 2rem; max-width: 960px; margin: 0 auto; text-align: left;
}
.footer-col-cta {
  display: flex; flex-direction: column; align-items: flex-start; flex: 1 1 250px;
}
.footer-col-cta h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.footer-col-cta p { font-size: 0.88rem; color: var(--dark-text-2); margin-bottom: 16px; line-height: 1.5; }
.footer-col { flex: 1 1 160px; min-width: 140px; }
.links ul { list-style: none; }
.links ul li { margin-bottom: 8px; }
.links ul li a { color: var(--dark-text-2); font-size: 14px; transition: color 0.2s; }
.links ul li a:hover { color: var(--yellow); }
.social-icons { display: flex; gap: 10px; margin-bottom: 12px; }
.social-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--dark-card); border: 1px solid var(--dark-border);
  overflow: hidden; transition: all 0.25s;
}
.social-icons a:hover { background: var(--yellow-subtle); border-color: rgba(249,255,0,0.15); transform: translateY(-2px); }
.social-icons img { width: 20px; height: 20px; object-fit: contain; }
.phone-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--dark-text-2); font-size: 14px; transition: color 0.2s;
}
.phone-link:hover { color: var(--yellow); }
.fa-phone-alt { font-size: 12px; }
.footer-bottom { text-align: center; margin-top: 1.5rem; color: var(--dark-text-3); font-size: 0.78rem; }

/* ================================================
   GLOW BG EFFECTS
   ================================================ */
.hero-wrapper::after {
  content: ''; position: absolute; top: 60%; left: -10%; width: 40%; height: 50%;
  background: radial-gradient(circle, rgba(249,255,0,0.03), transparent 60%);
  pointer-events: none;
}
.about-section::after {
  content: ''; position: absolute; bottom: 0; right: 0; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,255,0,0.03), transparent 70%);
  pointer-events: none;
}
.services-section::after {
  content: ''; position: absolute; bottom: -100px; right: -50px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,255,0,0.04), transparent 70%);
  pointer-events: none;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .left-links, .right-links { display: none !important; }
  .menu-toggle { display: flex; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 28px 16px 50px; }
  .hero-badge { font-size: 11px; padding: 7px 16px; margin-bottom: 18px; }
  .logo-img { height: 42px; }

  /* #3: Mobile hero buttons - full width, clear separation */
  .hero-cta {
    flex-direction: column; align-items: stretch; gap: 10px; width: 100%; max-width: 320px;
  }
  .hero-cta .btn-fill,
  .hero-cta .btn-outline {
    width: 100%; justify-content: center; padding: 16px 20px; font-size: 15px;
  }

  .about-card { padding: 1.8rem 1.2rem; border-radius: 24px; }
  .about-title { font-size: 1.3rem; }
  .about-description { font-size: 0.88rem; }

  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .brand-logo { padding: 12px 8px; border-radius: var(--radius-sm); }
  .brand-logo img { max-height: 50px; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-card { padding: 1.3rem 1rem; border-radius: 20px; }
  .service-icon-wrap { width: 44px; height: 44px; margin-bottom: 0.7rem; }
  .service-icon-wrap img { height: 40px; }
  .service-card h3 { font-size: 0.9rem; }
  .service-card p { font-size: 0.8rem; }

  .cards-section { padding: 12px 0; }
  .cards-container img { width: 150px; }
  .cards-container { gap: 8px; }

  .contimg img { border-radius: var(--radius-md); }
  .cta-buttons { flex-direction: column; align-items: center; gap: 10px; }
  .cta-buttons .btn-fill,
  .cta-buttons .btn-outline-light { width: 280px; justify-content: center; }

  .footer-content { flex-direction: column; align-items: center; text-align: center; }
  .footer-col-cta { align-items: center; text-align: center; }
  .social-icons { justify-content: center; }
  .phone-link { justify-content: center; }
  .links ul { margin: 0; }

  .reel-wrapper, .static-wrapper { padding: 8px 12px 24px; }

  .about-buttons { width: 100%; max-width: 320px; }
  .about-buttons .btn-fill,
  .about-buttons .btn-outline { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .services-grid { grid-template-columns: 1fr; gap: 10px; }

  /* #6: Toggle buttons proper on mobile */
  .toggle-buttons {
    flex-direction: column; gap: 4px; padding: 5px; width: calc(100% - 24px);
  }
  .toggle-buttons .btn { width: 100%; text-align: center; padding: 12px 16px; }

  .cards-container img { width: 130px; }

  .reel-section, .static-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
