/* =============================================
   HH BUILDERS CONSTRUCTION — styles.css
   ============================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* Brand Colors */
  --brand-primary:       #2171AB;
  --brand-secondary:     #14507E;
  --brand-accent:        #2171AB;
  --brand-accent-hover:  #185d8f;
  --brand-gray:          #FFFFFF;
  --color-on-primary:    #FFFFFF;

  /* Palette Scale */
  --primary-50:  #EDF4FB;
  --primary-100: #B8D6EE;
  --primary-300: #5DA3CF;
  --primary-500: #2171AB;
  --primary-700: #14507E;
  --primary-900: #0A2E49;

  /* Neutral Colors */
  --color-dark:   #111827;
  --color-mid:    #4B5563;
  --color-light:  #F3F6FA;
  --color-white:  #FFFFFF;
  --color-border: #E2E8F0;

  /* Section Alternating BGs */
  --bg-alt-1: var(--color-white);
  --bg-alt-2: var(--color-light);
  --bg-alt-3: #EEF2F9;

  /* Spacing & Layout */
  --section-padding:  90px;
  --container-max:    1240px;
  --radius-card:      14px;
  --radius-btn:       6px;
  --shadow-card:      0 4px 24px rgba(33,113,171,0.10);
  --shadow-card-hover:0 12px 40px rgba(33,113,171,0.18);

  /* Typography */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-white);
  opacity: 0;
  transition: opacity 0.5s ease;
  line-height: 1.75;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1 { font-family: var(--font-heading); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; line-height: 1.05; letter-spacing: 0.03em; }
h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.1; letter-spacing: 0.02em; }
h3 { font-family: var(--font-body); font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 600; }
p  { font-size: 1rem; line-height: 1.8; }

/* ── Layout ── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.section-padding { padding-block: var(--section-padding); }
.bg-white  { background: var(--color-white); }
.bg-light  { background: var(--color-light); }
.bg-mid    { background: var(--bg-alt-3); }
.bg-dark   { background: var(--brand-secondary); color: var(--color-white); }

/* ── Section Headings ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 10px;
}
.section-heading {
  color: var(--color-dark);
  margin-bottom: 16px;
}
.section-heading.light { color: var(--color-white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--color-mid);
  max-width: 620px;
}
.section-sub.light { color: rgba(255,255,255,0.78); }
.text-center { text-align: center; }
.text-center .section-sub { margin-inline: auto; }

/* ── Animation System ── */
.anim-target {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease calc(var(--i, 0) * 0.11s),
              transform 0.65s ease calc(var(--i, 0) * 0.11s);
}
.anim-target.animate-in { opacity: 1; transform: none; }

.fade-in-block { animation: fadeInSection 0.9s ease 0.2s both; }

@keyframes kenburns     { from { transform:scale(1) translateX(0); } to { transform:scale(1.08) translateX(-1%); } }
@keyframes slideDown    { from { transform:translateY(-40px); opacity:0; } to { transform:none; opacity:1; } }
@keyframes trustScroll  { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes fadeInSection{ from { opacity:0; } to { opacity:1; } }
@keyframes heroFadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes statBounce   { 0%{transform:scale(0.88);opacity:0;} 70%{transform:scale(1.04);} 100%{transform:scale(1);opacity:1;} }
@keyframes pulse        { 0%,100%{transform:scale(1);} 50%{transform:scale(1.04);} }

/* ── Buttons — 3D Push Style ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--brand-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 0 var(--brand-accent-hover);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  text-transform: uppercase;
}
.btn-primary:hover  { transform: translateY(3px); box-shadow: 0 3px 0 var(--brand-accent-hover); }
.btn-primary:active { transform: translateY(6px); box-shadow: 0 0px 0 var(--brand-accent-hover); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-transform: uppercase;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--color-white); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--brand-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-btn);
  border: 2px solid var(--brand-primary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}
.btn-secondary:hover { background: var(--brand-primary); color: var(--color-white); }

/* ── Top Bar ── */
.top-bar {
  background: var(--brand-secondary);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--brand-accent);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-links a {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.top-bar-links a:hover { color: var(--color-white); }
.top-bar-links a i { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.top-bar-promo { font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 600; letter-spacing: 0.05em; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 14px 0;
  background: var(--primary-900);
}
.site-header.scrolled {
  background: var(--primary-900);
  box-shadow: 0 2px 20px rgba(0,0,0,0.22);
  padding: 10px 0;
}
/* top-bar offset: header sits below top-bar when not scrolled */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
  transition: transform 0.25s ease, filter 0.25s ease;
}
.header-logo:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 16px rgba(33,113,171,0.5));
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.9);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--brand-gray);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.main-nav a:hover { color: var(--brand-gray); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.active::after { transform: scaleX(1); }
.site-header.scrolled .main-nav a { color: rgba(255,255,255,0.9); }
.site-header.scrolled .main-nav a:hover { color: var(--brand-gray); }

.nav-has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 100;
  border-top: 3px solid var(--brand-accent);
}
.nav-has-dropdown:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: none; }
.nav-dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 0.85rem;
  color: var(--color-dark) !important;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: var(--color-light); color: var(--brand-accent) !important; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--brand-gray);
  display: flex; align-items: center; gap: 6px;
}
.site-header.scrolled .header-phone { color: var(--brand-gray); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s;
}
.site-header.scrolled .hamburger span { background: var(--color-dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile Nav ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--brand-secondary);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--color-white);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--brand-accent); }
.mobile-nav-sub { padding-left: 20px; display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.mobile-nav-sub a { font-family: var(--font-body); font-size: 1rem; letter-spacing: 0; border: none; padding: 5px 0; }
.mobile-nav-footer { margin-top: auto; padding-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.mobile-nav-footer a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.mobile-nav-footer a i { color: var(--color-on-primary); }

/* ── Hero (Swiper Slideshow) ── */
.hero-swiper {
  position: relative;
  height: calc(100vh - 0px);
  min-height: 600px;
}
/* Push hero below top-bar + header */
.hero-swiper .swiper-wrapper {}
.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 14s ease-in-out infinite alternate;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,40,0.42) 0%, rgba(33,113,171,0.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 0;
  margin-top: -120px;
}
.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-badge {
  background: rgba(33,113,171,0.22);
  border: 1px solid rgba(160,160,161,0.55);
  color: var(--brand-gray);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.hero-title {
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 18px;
  animation: heroFadeUp 0.8s ease 0.1s both;
}
.hero-title span { color: var(--brand-gray); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 540px;
  animation: heroFadeUp 0.8s ease 0.3s both;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  animation: heroFadeUp 0.8s ease 0.5s both;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  animation: heroFadeUp 0.8s ease 0.7s both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-trust-item i { color: var(--brand-gray); font-size: 1rem; }

/* Hero Swiper Controls */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: var(--color-white);
  background: rgba(33,113,171,0.35);
  width: 48px; height: 48px;
  border-radius: 50%;
  transition: background 0.2s;
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover { background: var(--brand-primary); }
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 16px; font-weight: 900; }
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.5); }
.hero-swiper .swiper-pagination-bullet-active { background: var(--brand-gray); }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--brand-primary);
  padding: 13px 0;
  overflow: hidden;
  border-bottom: 3px solid var(--brand-gray);
}
.trust-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: trustScroll 28s linear infinite;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.trust-item i { color: var(--brand-gray); font-size: 1rem; }
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-gray);
  opacity: 0.6;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--color-border);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.service-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,30,0.6) 0%, transparent 55%);
}
.service-card-body {
  padding: 22px 22px 26px;
}
.service-card-icon {
  width: 46px; height: 46px;
  background: var(--primary-50);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--brand-accent);
  margin-bottom: 14px;
}
.service-card h3 { margin-bottom: 8px; color: var(--color-dark); }
.service-card p { font-size: 0.9rem; color: var(--color-mid); margin-bottom: 18px; }
.service-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.service-card-link:hover { color: var(--brand-accent); gap: 10px; }

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--brand-accent);
  color: var(--color-on-primary);
  padding: 18px 22px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1;
}
.about-img-badge span { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.about-text .section-label { margin-bottom: 8px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p  { color: var(--color-mid); margin-bottom: 18px; }
.about-checklist { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-dark);
  font-weight: 500;
}
.about-check-item i { color: var(--brand-accent); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

/* ── Stats Band ── */
.stats-band {
  background: var(--brand-secondary);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255,255,255,0.06) 0%, transparent 65%),
              radial-gradient(ellipse at bottom right, rgba(33,113,171,0.15) 0%, transparent 65%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.stat-number span { color: var(--color-on-primary); }
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ── Why Choose Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.why-item {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--brand-accent);
}
.why-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.why-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--color-on-primary);
  margin-bottom: 18px;
}
.why-item h3 { margin-bottom: 10px; color: var(--color-dark); }
.why-item p  { font-size: 0.92rem; color: var(--color-mid); }

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 52px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid var(--color-border);
}
.step-number {
  width: 56px; height: 56px;
  background: var(--brand-accent);
  color: var(--color-on-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(232,160,32,0.35);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p  { font-size: 0.92rem; color: var(--color-mid); }

/* ── Testimonials ── */
.testimonials-section { background: var(--color-light); }
.testimonials-swiper-wrap { margin-top: 50px; }
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
  height: auto;
  border-bottom: 4px solid var(--brand-accent);
}
.testimonial-stars { color: var(--brand-accent); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote { font-size: 0.95rem; color: var(--color-mid); margin-bottom: 22px; line-height: 1.7; font-style: italic; }
.testimonial-author strong { font-size: 0.9rem; color: var(--color-dark); display: block; }
.testimonial-author span { font-size: 0.8rem; color: var(--brand-accent); font-weight: 600; }
.swiper-pagination-bullet { background: var(--color-border); }
.swiper-pagination-bullet-active { background: var(--brand-accent); }
#testimonialsPagination { margin-top: 30px; position: relative; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  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='%23E8A020' fill-opacity='0.06'%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-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 8px; }
.cta-banner p  { color: rgba(255,255,255,0.78); font-size: 1.05rem; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 14px; flex-shrink: 0; }
.cta-phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  padding: 14px 24px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s;
}
.cta-phone-link:hover { background: rgba(255,255,255,0.2); }
.cta-phone-link i { color: var(--brand-accent); }

/* ── FAQ Accordion ── */
.faq-list { max-width: 820px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-white);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--color-dark);
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--color-light); }
.faq-question.open { color: var(--brand-primary); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--primary-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  font-size: 0.85rem;
  color: var(--brand-primary);
}
.faq-question.open .faq-icon { background: var(--brand-accent); color: var(--color-on-primary); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.93rem; color: var(--color-mid); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Contact Section ── */
.contact-section { background: var(--color-light); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form-wrap { background: var(--color-white); border-radius: var(--radius-card); padding: 40px; box-shadow: var(--shadow-card); }
.form-steps-indicator { display: flex; gap: 8px; margin-bottom: 32px; }
.form-step-dot {
  flex: 1;
  height: 4px;
  background: var(--color-border);
  border-radius: 4px;
  transition: background 0.3s;
}
.form-step-dot.active { background: var(--brand-accent); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step-title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-dark); margin-bottom: 22px; letter-spacing: 0.03em; }
.services-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.service-pick-card {
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.service-pick-card:hover { border-color: var(--brand-accent); background: var(--primary-50); }
.service-pick-card.selected { border-color: var(--brand-primary); background: var(--brand-primary); color: var(--color-white); }
.service-pick-card i { font-size: 1.1rem; color: var(--brand-accent); }
.service-pick-card.selected i { color: var(--brand-accent); }
.radio-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.radio-pill { display: none; }
.radio-pill-label {
  padding: 9px 18px;
  border: 2px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-dark);
  transition: all 0.2s;
}
.radio-pill:checked + .radio-pill-label { border-color: var(--brand-primary); background: var(--brand-primary); color: var(--color-white); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--color-dark); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 16px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--brand-primary); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }
.btn-form-prev { background: none; border: 2px solid var(--color-border); padding: 11px 24px; border-radius: var(--radius-btn); font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: all 0.2s; }
.btn-form-prev:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.contact-info-panel { display: flex; flex-direction: column; gap: 28px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.contact-card-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--color-on-primary);
  flex-shrink: 0;
}
.contact-card-text strong { display: block; font-size: 0.85rem; color: var(--color-mid); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-card-text a, .contact-card-text span { font-size: 1.02rem; font-weight: 600; color: var(--color-dark); transition: color 0.2s; word-break: break-all; overflow-wrap: break-word; }
.contact-card-text a:hover { color: var(--brand-accent); }
.map-embed {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 16px;
}
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success h3 { color: var(--color-dark); margin-bottom: 10px; }
.form-success p  { color: var(--color-mid); }
.lottie-check { width: 120px; height: 120px; margin: 0 auto 20px; }

/* ── Footer ── */
.site-footer {
  background: var(--primary-900);
  color: rgba(255,255,255,0.82);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo img { height: 46px; border-radius: 6px; }
.footer-logo-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-white); letter-spacing: 0.06em; }
.footer-about { font-size: 0.9rem; margin-bottom: 22px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--brand-accent); border-color: var(--brand-accent); color: var(--color-on-primary); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  letter-spacing: 0.07em;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s, gap 0.2s;
}
.footer-links a::before { content: '›'; color: var(--brand-accent); font-size: 1rem; }
.footer-links a:hover { color: var(--color-white); gap: 10px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.72);
}
.footer-contact-item i { color: var(--brand-accent); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.82); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--brand-accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--brand-accent); }

/* ── Mobile CTA ── */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--brand-primary);
  display: none;
  z-index: 990;
  border-top: 2px solid var(--brand-accent);
}
.mobile-cta-inner { display: flex; align-items: stretch; }
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.mobile-cta a:first-child { background: var(--brand-accent); color: var(--color-on-primary); }
.mobile-cta a:first-child:hover { background: var(--brand-accent-hover); }
.mobile-cta a:last-child:hover { background: rgba(255,255,255,0.08); }

/* ── Scroll Top ── */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px; height: 46px;
  background: var(--brand-accent);
  color: var(--color-on-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 980;
  box-shadow: 0 4px 16px rgba(33,113,171,0.45);
  border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-4px); }

/* ── Floating Contact Widget ── */
.floating-contact-widget {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 985;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.fcw-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.fcw-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.28); }
.fcw-call {
  background: var(--brand-primary);
  color: var(--color-white);
}
.fcw-email {
  background: var(--brand-gray);
  color: #111;
}
.fcw-btn i { font-size: 1rem; }
@media (max-width: 768px) {
  .floating-contact-widget { bottom: 70px; right: 12px; }
  .fcw-btn span { display: none; }
  .fcw-btn { padding: 14px; border-radius: 50%; }
}

/* ── Inner Page Hero ── */
.inner-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,18,30,0.62);
}
.inner-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.inner-hero h1 { color: var(--color-white); margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--brand-accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── Gallery ── */
.gallery-filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--color-border);
  border-radius: 50px;
  background: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--color-dark);
}
.filter-btn:hover { border-color: var(--brand-accent); color: var(--brand-accent); }
.filter-btn.active { background: var(--brand-primary); border-color: var(--brand-primary); color: var(--color-white); }
.masonry-grid { }
.masonry-item {
  width: calc(33.333% - 16px);
  margin-bottom: 22px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.masonry-item img { width: 100%; display: block; transition: transform 0.4s; }
.masonry-item:hover img { transform: scale(1.05); }

/* ── Service Area Cards ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.area-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  height: 260px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.area-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.area-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.area-card:hover .area-card-bg { transform: scale(1.06); }
.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,30,0.82) 0%, rgba(10,18,30,0.25) 100%);
}
.area-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: var(--color-white);
}
.area-card-content h3 { font-family: var(--font-heading); font-size: 1.8rem; letter-spacing: 0.05em; margin-bottom: 4px; }
.area-card-content p  { font-size: 0.82rem; color: rgba(255,255,255,0.72); }
.area-card-arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: var(--brand-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-on-primary);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.area-card:hover .area-card-arrow { opacity: 1; }

/* ── Section Dividers ── */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }
.section-tilted { clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); padding-bottom: 80px; }

/* ── Utilities ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.gap-32 { gap: 32px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 60px; }
  .main-nav { display: none; }
  .header-cta .btn-primary { display: none; }
  .hamburger { display: flex; }
  .hero-swiper, .hero-slide { height: 100svh; min-height: 500px; }
  .hero-content { padding-top: 100px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .mobile-cta { display: block; }
  .masonry-item { width: calc(50% - 11px); }
  .about-img-badge { right: 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .services-icon-grid { grid-template-columns: 1fr; }
  .top-bar-promo { display: none; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .masonry-item { width: 100%; }
  .areas-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; gap: 10px; }
}

/* ── Footer Bottom Layout updates ── */
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* ── Interactive Credits for Social Expert Digital ── */
.footer-credit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.credit-interactive-trigger {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.credit-link {
  color: var(--color-white) !important;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.credit-link:hover {
  background: var(--brand-accent);
  color: #111 !important;
  border-color: var(--brand-accent);
}
.credit-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #4ade80; /* bright green for interaction */
  border-radius: 50%;
  position: relative;
}
.credit-pulse::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  background-color: #4ade80;
  border-radius: 50%;
  animation: creditPulseAnim 1.8s infinite ease-in-out;
  opacity: 0.8;
}
.credit-link:hover .credit-pulse,
.credit-link:hover .credit-pulse::after {
  background-color: #111; /* change color on hover when link goes dark text */
}

@keyframes creditPulseAnim {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* ── Minimal Lead Grabbing Popover ── */
.credit-popover {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 12px;
  width: 290px;
  background: #0d1722;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
/* Popover pointer/arrow */
.credit-popover::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 20px;
  border-width: 6px;
  border-style: solid;
  border-color: #0d1722 transparent transparent transparent;
}
.credit-interactive-trigger:hover .credit-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.popover-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 160, 32, 0.15);
  color: var(--brand-accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.credit-popover h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.credit-popover p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin-bottom: 14px;
}
.popover-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand-accent);
  color: #111;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.credit-popover:hover .popover-cta {
  background: var(--brand-accent-hover);
  transform: scale(1.02);
}
.popover-cta i {
  transition: transform 0.2s;
}
.credit-popover:hover .popover-cta i {
  transform: translateX(4px);
}

@media (max-width: 480px) {
  .credit-popover {
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    width: auto;
    margin: 0;
  }
  .credit-popover::after {
    display: none;
  }
}

/* Homepage Gallery Grid (3x3) & Items styling */
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .home-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.home-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  display: block;
  height: 220px;
  position: relative;
}
.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.home-gallery-item:hover img {
  transform: scale(1.06);
}
.home-gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.home-gallery-item:hover::after {
  opacity: 1;
}

/* Portrait Video Grid & Cards */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-card-portrait {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--color-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: block;
}
.video-card-portrait:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--brand-primary);
}
.video-card-portrait video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  display: block;
}


