/* ============================================================
   JK Drywall & Paint, LLC — styles.css
============================================================ */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F4F6FA;
  --navy: #1B2A4A;
  --navy-dark: #121E38;
  --red: #C8202F;
  --red-dark: #A11824;
  --text: #1A1A1A;
  --text-secondary: #5B6472;
  --gold: #FFD700;
  --font-title: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text); font-family: var(--font-body);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.section-title {
  font-family: var(--font-title); font-weight: 700; font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  text-align: center; position: relative; padding-bottom: 1rem; margin-bottom: 1rem; color: var(--text);
}
.section-title::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 70px; height: 4px; background: linear-gradient(90deg, var(--red), var(--red-dark)); border-radius: 4px;
}
.section-sub { text-align: center; color: var(--text-secondary); max-width: 700px; margin: 0 auto 2.5rem; }

.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.12); border: 1px solid #fff; color: #fff;
  padding: 0.45rem 1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.2rem;
}

.reveal { opacity: 0; transform: translateY(30px) scale(0.98); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.9rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  position: relative; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap; min-height: 48px;
}
.btn-red { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 8px 24px rgba(200,32,47,0.3); }
.btn-navy-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn:hover { transform: translateY(-3px); }
.btn-red:hover { box-shadow: 0 12px 30px rgba(200,32,47,0.5); }
.btn::before {
  content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn:hover::before { left: 130%; }

/* ============================================================
   Top bar
============================================================ */
.top-bar {
  background: var(--navy); color: #fff; font-size: 0.78rem; font-weight: 600;
  padding: 0.45rem 0; white-space: nowrap; overflow-x: auto; scrollbar-width: none; text-align: center;
}
.top-bar::-webkit-scrollbar { display: none; }
.top-bar .container { display: inline-block; padding: 0 1.25rem; }

/* ============================================================
   Navbar
============================================================ */
.navbar {
  position: sticky; top: 0; left: 0; width: 100%; z-index: 1000;
  background: #fff; border-bottom: 3px solid var(--red); box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.navbar.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.7rem; padding: 0.6rem 1.25rem; max-width: 1350px; margin: 0 auto; }

.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo-img { height: 46px; width: auto; display: block; }
@media (max-width: 480px) { .nav-logo-img { height: 36px; } }
.logo-icon {
  width: 42px; height: 42px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon svg { width: 24px; height: 24px; fill: #fff; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-jk { font-family: var(--font-title); font-weight: 800; font-size: 1.05rem; color: var(--red); }
.logo-name { font-family: var(--font-title); font-weight: 700; font-size: 0.72rem; color: var(--navy); white-space: nowrap; }

.nav-menu { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-link { font-weight: 600; font-size: 0.92rem; position: relative; padding: 0.3rem 0; color: var(--text); }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px; background: var(--red); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; }

.btn-phone-nav {
  display: flex; align-items: center; gap: 0.35rem; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; font-weight: 700;
  padding: 0.6rem 1rem; border-radius: 999px; font-size: 0.85rem; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(200,32,47,0.35); min-height: 44px;
}

.lang-toggle { display: flex; background: var(--bg-alt); border: 1px solid var(--navy); border-radius: 999px; overflow: hidden; }
.lang-pill { padding: 0.4rem 0.7rem; font-size: 0.8rem; font-weight: 700; color: var(--navy); transition: background 0.25s ease, color 0.25s ease; }
.lang-pill.active { background: var(--navy); color: #fff; }

.hamburger { display: none; flex-direction: column; padding: 0.4rem; position: relative; z-index: 1051; min-height: 44px; min-width: 44px; justify-content: center; }
.hamburger span { display:block; width:24px; height:2px; background:#1B2A4A; border-radius:2px; transition: transform 0.3s ease, opacity 0.3s ease; margin: 5px 0; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,7px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-7px); }

/* ============================================================
   Hero
============================================================ */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 4rem 1rem 4rem; }
.hero-bg { position: absolute; inset: 0; background: url('img/hero.png') center/cover no-repeat; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(18,30,56,0.82) 0%, rgba(27,42,74,0.45) 55%, rgba(27,42,74,0.25) 100%);
}
.hero-content { position: relative; z-index: 3; max-width: 820px; margin: 0 auto; }
.hero-logo {
  display: block; margin: 0 auto 1.4rem; width: 220px; max-width: 60%; height: auto;
  filter: drop-shadow(0 0 22px rgba(255,255,255,0.75)) drop-shadow(0 8px 20px rgba(0,0,0,0.35));
  animation: heroLogoBeat 1.6s ease-in-out infinite;
}
@keyframes heroLogoBeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.08); }
  30% { transform: scale(1); }
  45% { transform: scale(1.06); }
  60% { transform: scale(1); }
}
@media (max-width: 600px) { .hero-logo { width: 150px; margin-bottom: 1rem; } }

.hero-glow { position: absolute; border-radius: 50%; filter: blur(45px); opacity: 0.5; z-index: 1; pointer-events: none; animation: heroFloat 10s ease-in-out infinite; }
.hero-glow.g1 { width: 240px; height: 240px; top: 10%; left: 6%; background: radial-gradient(circle, rgba(200,32,47,0.55), transparent 70%); animation-delay: 0s; }
.hero-glow.g2 { width: 300px; height: 300px; bottom: 8%; right: 8%; background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%); animation-delay: 3s; }
.hero-glow.g3 { width: 170px; height: 170px; top: 42%; right: 22%; background: radial-gradient(circle, rgba(200,32,47,0.4), transparent 70%); animation-delay: 6s; }
@keyframes heroFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-28px) scale(1.1); }
}
.hero-shimmer { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero-shimmer::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 38%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.16), transparent);
  animation: heroShimmer 6.5s ease-in-out infinite;
}
@keyframes heroShimmer {
  0% { left: -60%; }
  42%, 100% { left: 130%; }
}
@media(max-width:768px){ .hero-glow { display: none; } }

.hero-title { font-family: var(--font-title); font-weight: 800; font-size: clamp(1.9rem, 5.5vw, 3.2rem); line-height: 1.15; color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.hero-sub { font-size: clamp(0.95rem, 2.2vw, 1.15rem); font-weight: 500; margin: 1.2rem 0 1.6rem; color: #F0F2F6; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }

.hero-phone {
  display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-title); font-weight: 700;
  font-size: clamp(1.3rem, 4vw, 1.8rem); color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 0.7rem 1.6rem; border-radius: 12px; margin: 0 0 1.6rem; box-shadow: 0 10px 28px rgba(200,32,47,0.4);
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.2rem; }

.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 1.2rem; }
.trust-row .trust-item {
  font-size: 0.82rem; font-weight: 600; color: #fff;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.35); padding: 0.5rem 1rem; border-radius: 999px;
  opacity: 0; animation: trustFadeIn 0.6s ease forwards;
}
.trust-row .trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-row .trust-item:nth-child(2) { animation-delay: 0.25s; }
.trust-row .trust-item:nth-child(3) { animation-delay: 0.4s; }
.trust-row .trust-item:nth-child(4) { animation-delay: 0.55s; }
@keyframes trustFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   Before/After auto-slider (below hero)
============================================================ */
.ba-slider-section { padding: 2.5rem 0 3rem; background: var(--bg); }
.ba-slider { position: relative; overflow: hidden; max-width: 900px; margin: 0 auto; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(27,42,74,0.12); }
.ba-track { display: flex; transition: transform 0.9s cubic-bezier(0.65,0,0.35,1); }
.ba-slide { flex: 0 0 100%; position: relative; }
.ba-slide .ba-pair { display: grid; grid-template-columns: 1fr 1fr; }
.ba-slide .ba-half { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.ba-slide .ba-half img { width: 100%; height: 100%; object-fit: cover; }
.ba-slide .ba-badge {
  position: absolute; top: 10px; left: 10px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.5px;
  padding: 0.35rem 0.7rem; border-radius: 6px; color: #fff;
}
.ba-slide .ba-badge.ba-before { background: var(--red); }
.ba-slide .ba-badge.ba-after { background: var(--navy); left: auto; right: 10px; }
.ba-slide .ba-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.7rem 1rem; text-align: center;
  background: linear-gradient(0deg, rgba(18,30,56,0.85), transparent); color: #fff; font-family: var(--font-title); font-weight: 700; font-size: 0.95rem;
}
.ba-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.1rem; }
.ba-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--bg-alt); border: 2px solid var(--navy); opacity: 0.35; cursor: pointer; padding: 0; transition: opacity 0.3s ease, transform 0.3s ease; }
.ba-dot.active { opacity: 1; background: var(--red); border-color: var(--red); transform: scale(1.2); }
@media (max-width: 480px) { .ba-slide .ba-label { font-size: 0.82rem; } }

/* ============================================================
   Services
============================================================ */
.services-section { padding: 5rem 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--bg-alt); border-radius: var(--radius); overflow: hidden; border: 2px solid var(--bg-alt);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05); transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex; flex-direction: column; cursor: pointer;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--red); box-shadow: 0 18px 36px rgba(200,32,47,0.15); }
.service-card-img { aspect-ratio: 16/10; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.service-icon { font-size: 1.8rem; }
.service-card-body h3 { font-family: var(--font-title); font-weight: 700; font-size: 1.05rem; color: var(--text); }
.service-card-body p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

.services-cta-wrap { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   Video showcase strip
============================================================ */
.video-showcase { position: relative; width: 100%; max-height: 500px; height: 60vh; overflow: hidden; }
.video-showcase video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-showcase-overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,30,56,0.75), rgba(27,42,74,0.35));
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1.5rem;
}
.video-showcase-overlay h2 { font-family: var(--font-title); font-weight: 800; color: #fff; font-size: clamp(1.4rem, 4vw, 2.4rem); margin-bottom: 1.4rem; text-shadow: 0 4px 20px rgba(0,0,0,0.4); }

/* ============================================================
   Why choose us
============================================================ */
.why-section { padding: 5rem 0; background: var(--bg-alt); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: #fff; border: 1px solid rgba(27,42,74,0.08); border-radius: var(--radius);
  padding: 1.6rem; display: flex; align-items: flex-start; gap: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: 0 14px 30px rgba(200,32,47,0.12); }
.why-icon { font-size: 1.8rem; flex-shrink: 0; }
.why-card h4 { font-family: var(--font-title); font-weight: 700; font-size: 0.98rem; margin-bottom: 0.3rem; color: var(--text); }
.why-card p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.4; }

/* ============================================================
   Brands strip
============================================================ */
.brands-section { padding: 3rem 0 3.5rem; background: var(--bg); overflow: hidden; }
.brands-title { display: block; text-align: center; font-family: var(--font-title); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 1.8rem; }
.brands-track-wrap { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brands-track { display: flex; gap: 2.2rem; width: max-content; animation: brandsScroll 22s linear infinite; }
.brands-track:hover { animation-play-state: paused; }
.brand-pill {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.8rem; background: #fff; border: 1px solid rgba(27,42,74,0.1); border-radius: 999px;
  font-family: var(--font-title); font-weight: 700; font-size: 0.95rem; color: var(--navy);
  box-shadow: 0 6px 16px rgba(27,42,74,0.06); white-space: nowrap;
}
@keyframes brandsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   FAQ accordion
============================================================ */
.faq-section { padding: 5rem 0; background: var(--bg-alt); }
.faq-eyebrow { display: block; text-align: center; font-family: var(--font-title); font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px; color: var(--red); text-transform: uppercase; margin-bottom: 0.6rem; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { background: #fff; border: 1px solid rgba(27,42,74,0.08); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.faq-item:hover { border-color: rgba(200,32,47,0.3); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem; background: none; border: none; text-align: left; cursor: pointer;
  font-family: var(--font-title); font-weight: 700; font-size: 0.98rem; color: var(--text); min-height: 44px;
}
.faq-arrow { flex-shrink: 0; font-size: 1.4rem; color: var(--red); transition: transform 0.3s ease; }
.faq-item.open .faq-arrow { transform: rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 1.4rem 1.2rem; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.55; }
.faq-item.open .faq-answer { max-height: 300px; }
@media (max-width: 600px) { .faq-question { font-size: 0.9rem; padding: 1rem 1.1rem; } }

/* ============================================================
   Tips & Resources (SEO content)
============================================================ */
.tips-section { padding: 5rem 0; background: var(--bg); }
.tips-eyebrow { display: block; text-align: center; font-family: var(--font-title); font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px; color: var(--red); text-transform: uppercase; margin-bottom: 0.6rem; }
.tips-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 700px) { .tips-grid { grid-template-columns: 1fr 1fr; } }
.tip-card {
  background: var(--bg-alt); border-radius: var(--radius); padding: 1.6rem; border: 2px solid var(--bg-alt);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.tip-card:hover { transform: translateY(-6px); border-color: var(--navy); box-shadow: 0 14px 30px rgba(27,42,74,0.12); }
.tip-icon { font-size: 1.8rem; display: block; margin-bottom: 0.7rem; }
.tip-card h3 { font-family: var(--font-title); font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 0.6rem; line-height: 1.35; }
.tip-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   Gallery before/after
============================================================ */
.gallery-section { padding: 5rem 0; background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
.gallery-card {
  background: var(--bg-alt); border-radius: var(--radius); overflow: hidden; padding: 1.2rem;
  border: 2px solid var(--bg-alt); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover { transform: translateY(-6px); border-color: var(--navy); box-shadow: 0 14px 30px rgba(27,42,74,0.12); }
.gallery-card h3 { font-family: var(--font-title); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.9rem; text-align: center; color: var(--text); }
.gallery-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.gallery-half { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 1/1; }
.gallery-half img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, filter 0.4s ease; }
.gallery-half:hover img { transform: scale(1.06); }
.gallery-badge {
  position: absolute; top: 8px; left: 8px; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.5px;
  padding: 0.3rem 0.6rem; border-radius: 6px; color: #fff;
}
.badge-before { background: var(--red); }
.badge-after { background: var(--navy); }

/* ============================================================
   Process
============================================================ */
.process-section { padding: 5rem 0; background: var(--bg-alt); }
.process-steps { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 900px) { .process-steps { flex-direction: row; gap: 1.5rem; } }
.process-step { flex: 1; text-align: center; }
.process-step .num {
  width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-family: var(--font-title); font-weight: 800; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 8px 20px rgba(200,32,47,0.3);
}
.process-step h4 { font-family: var(--font-title); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--text); }
.process-step p { font-size: 0.85rem; color: var(--text-secondary); }

/* ============================================================
   About
============================================================ */
.about-section { padding: 5rem 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.2fr; } }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text-wrap h2 { text-align: left; }
.about-text-wrap h2::after { left: 0; transform: none; }
.about-text-wrap p { color: var(--text-secondary); line-height: 1.7; margin-top: 1.2rem; font-size: 1rem; }

/* ============================================================
   Contact (video + form)
============================================================ */
.contact-section { padding: 5rem 0; background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-video-col { display: flex; justify-content: center; }
.contact-video-col video { border: 3px solid var(--navy); }

.contact-form-title { text-align: left; }
.contact-form-title::after { left: 0; transform: none; }
.contact-form-sub { text-align: left; color: var(--text-secondary); margin: 0.8rem 0 1.6rem; }

.contact-form {
  background: #fff; border: 1px solid rgba(27,42,74,0.1); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 560px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.form-grid label { display: block; font-size: 0.8rem; margin-bottom: 0.4rem; color: var(--text-secondary); font-weight: 600; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; background: var(--bg-alt); border: 1px solid #DCE1EB; border-radius: 10px;
  padding: 0.85rem 0.9rem; color: var(--text); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.25s ease; min-height: 48px;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: none; border-color: var(--red); }
.form-grid textarea { resize: vertical; min-height: 110px; }
.form-submit-wrap { margin-top: 1.6rem; }
.form-submit-wrap .btn { width: 100%; }

/* ============================================================
   Reviews
============================================================ */
.reviews { padding: 5rem 0; background: var(--bg); }
.reviews-google { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.reviews-google .stars { color: var(--gold); letter-spacing: 2px; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 700px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review-card { background: var(--bg-alt); border: 1px solid rgba(0,0,0,0.05); border-radius: var(--radius); padding: 1.4rem; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.review-card:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: 0 14px 30px rgba(0,0,0,0.08); }
.review-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.9rem; }
.review-head img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review-head h5 { font-size: 0.9rem; color: var(--text); }
.review-head .stars { color: var(--gold); font-size: 0.75rem; }
.review-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================================
   Service area + map
============================================================ */
.service-area { padding: 5rem 0; background: var(--bg-alt); }
.service-area-text { text-align: center; max-width: 750px; margin: 0 auto 1.2rem; color: var(--text-secondary); }
.service-area-cities { text-align: center; font-weight: 700; color: var(--navy); margin-bottom: 2.5rem; font-size: 0.95rem; }

/* ============================================================
   Footer
============================================================ */
.footer { background: var(--navy); border-top: 3px solid var(--red); padding: 3rem 0 1.5rem; color: #fff; }
.footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; margin-bottom: 2rem; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; background: #fff; padding: 0.6rem 1.1rem; border-radius: 12px; }
.footer-logo-img { height: 44px; width: auto; display: block; }
.footer-logo .logo-icon { background: #fff; }
.footer-logo .logo-icon svg { fill: var(--navy); }
.footer-logo .logo-jk { color: var(--red); }
.footer-logo .logo-name { color: #fff; }
.footer-top .tag { color: var(--red); font-weight: 700; font-size: 0.85rem; margin-top: 0.4rem; }
.footer-social { display: flex; justify-content: center; gap: 0.8rem; margin-top: 0.6rem; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center; color: #fff; transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.social-icon.disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.footer-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; font-size: 0.85rem; margin-bottom: 1.2rem; }
.footer-links-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; font-size: 0.85rem; margin-bottom: 1.6rem; font-weight: 600; }
.footer-links-row a:hover { color: var(--red); }
.footer-bottom { text-align: center; font-size: 0.8rem; color: #B8C0D0; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.4rem; }
.footer-bottom p { margin-bottom: 0.3rem; }

/* ============================================================
   Floating WhatsApp
============================================================ */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 1500;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5); animation: waPulse 2.2s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); } 50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } }

/* ============================================================
   Responsive nav
============================================================ */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: 0; height: 100vh; width: 80%; max-width: 320px; z-index: 1050;
    background: #fff; flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 2rem; padding: 2rem; transform: translateX(100%); transition: transform 0.4s ease;
    border-left: 2px solid var(--red); box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.25rem; }
  .logo-name { display: none; }
}
@media (min-width: 901px) { .logo-name { display: block; } }
@media (max-width: 480px) { .gallery-pair { gap: 0.4rem; } }
