/*
Theme Name: SJS Premium
Author: SJS Service
Version: 1.0
Description: Premium home services WordPress theme
*/

/* =========================
   DESIGN TOKENS
========================= */
:root {
  --primary: #0E1E2B;
  --accent: #C9A24D;
  --bg: #F7F9FB;
  --white: #FFFFFF;

  --text-dark: #0F172A;
  --text-muted: #6B7280;

  --radius: 14px;
  --transition: 0.3s ease;
}

/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE
========================= */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 110px 0;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

h1 {
  font-size: 56px;
  line-height: 1.15;
}

h2 {
  font-size: 40px;
}

p {
  font-size: 16px;
  color: var(--text-muted);
}




/* =========================
   HEADER
========================= */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.4px;
}

/* Desktop nav */
.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

/* subtle gold underline on hover */
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

/* =========================
   MOBILE NAV
========================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: var(--primary);
    flex-direction: column;
    padding: 100px 24px;
    gap: 24px;
    transition: right var(--transition);
  }

  .main-nav.active {
    right: 0;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}


/* =========================
   FIX MOBILE HAMBURGER VISIBILITY
========================= */

.menu-toggle {
  position: relative;
  z-index: 1101; /* higher than menu + overlay */
}

/* Mobile only */
@media (max-width: 768px) {

  .menu-toggle {
    position: fixed;
    top: 22px;
    right: 24px;
  }

  .main-nav {
    z-index: 1100;
  }

  .menu-overlay {
    z-index: 1090;
  }
}



/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

/* Background image + overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(14,30,43,0.82),
      rgba(14,30,43,0.82)
    ),
    url('/wp-content/themes/sjs-premium/assets/images/hero.jpg')
      center / cover no-repeat;
  z-index: 1;
}

/* subtle gold glow */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(201,162,77,0.18),
    transparent 55%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent);
}

/* Heading */
.hero h1 {
  font-size: 58px;
  margin-bottom: 20px;
}

/* Paragraph */
.hero p {
  font-size: 18px;
  color: #E5E7EB;
  margin-bottom: 36px;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: #b8923f;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* =========================
   HERO RESPONSIVE
========================= */
@media (max-width: 768px) {

  .hero {
    min-height: 88vh;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    justify-content: center;
  }
}



/* =========================
   SOLUTIONS SECTION
========================= */

.solutions {
  background: var(--white);
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.solutions h2 {
  margin-bottom: 60px;
}

/* Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 48px;
}

/* Card */
.solution-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}

/* Image */
.solution-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Content */
.solution-content {
  padding: 34px;
}

.solution-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--primary);
}

.solution-content p {
  margin-bottom: 22px;
  line-height: 1.6;
}

/* Link */
.solution-link {
  font-weight: 600;
  color: var(--accent);
  font-size: 15px;
}

/* =========================
   SOLUTIONS RESPONSIVE
========================= */
@media (max-width: 768px) {

  .solutions h2 {
    font-size: 32px;
  }

  .solution-image img {
    height: 220px;
  }

}



/* =========================
   TRUST SECTION
========================= */

.trust {
  background: var(--bg);
  text-align: center;
}

.trust h2 {
  margin-bottom: 70px;
}

/* Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}

/* Item */
.trust-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .trust h2 {
    font-size: 32px;
  }

  .trust-item h3 {
    font-size: 40px;
  }
}



/* =========================
   FINAL CTA
========================= */

.final-cta {
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta-inner {
  max-width: 760px;
}

.final-cta h2 {
  margin: 20px 0;
}

.final-cta p {
  color: #CBD5E1;
  margin-bottom: 36px;
  font-size: 17px;
}

/* Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-outline-dark {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-outline-dark:hover {
  background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {

  .final-cta h2 {
    font-size: 32px;
  }

}






/* =========================
   SERVICE PAGE
========================= */

.service-hero {
  background: linear-gradient(135deg, #0e1e2b, #0b1a26);
  color: var(--white);
}

.service-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.service-hero-text h1 {
  margin: 20px 0;
}

.service-hero-text p {
  color: #cbd5e1;
  margin-bottom: 32px;
}

.service-hero-image img {
  width: 100%;
  border-radius: var(--radius);
}

/* Solutions */
.service-solutions {
  background: var(--white);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.service-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg);
}

/* Process */
.service-process {
  background: var(--bg);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.process-step span {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {

  .service-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

}


/* =========================
   SERVICE PAGE (STATIC)
========================= */

.service-hero {
  background: linear-gradient(135deg, #0e1e2b, #0b1a26);
  color: var(--white);
}

.service-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.service-hero-text p {
  color: #cbd5e1;
  margin-bottom: 32px;
}

.service-hero-image img {
  width: 100%;
  border-radius: var(--radius);
}

.service-content {
  background: var(--white);
}

.service-process {
  background: var(--bg);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.process-step span {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 768px) {
  .service-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* =========================
   SERVICE CARDS (PREMIUM)
========================= */

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.12);
}

.service-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: #475569;
  line-height: 1.6;
  font-size: 15px;
}


/* =========================
   SERVICE CARD ICON
========================= */

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;
  margin-bottom: 14px;

  border-radius: 50%;
  background: rgba(201,162,77,0.12);
  color: var(--accent);

  font-size: 14px;
  font-weight: 700;
}






/* =========================
   SERVICE HERO (LIGHT VERSION)
========================= */

.service-hero {
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #eef2f7 100%
  );
  color: #0f172a;
}

.service-hero .section-eyebrow {
  color: var(--accent);
}

.service-hero-text p {
  color: #334155;
}

.service-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-image img {
  max-width: 320px;
  opacity: 0.95;
}



/* Service hero logo size fix */
.service-hero-image img {
  max-width: 420px;   /* was ~320 */
  width: 100%;
}


/* WhatsApp button (service hero) */
.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: none;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}



/* =========================
   OUR SOLUTIONS (DARK)
========================= */

.service-content {
  background: #0b1a26;
  padding-top: 120px;
  padding-bottom: 120px;
}

.service-content h2 {
  color: #ffffff;
}

.service-content .service-card {
  background: #ffffff;
}


.service-content {
  margin-top: -40px;
}


/* =========================
   FINAL CTA (WITH MAP)
========================= */

.final-cta {
  background: #0b1a26;
  color: #ffffff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.cta-left h2 {
  margin-bottom: 16px;
}

.cta-left p {
  color: #cbd5e1;
  margin-bottom: 28px;
  max-width: 420px;
}

/* RIGHT */
.cta-right {
  background: rgba(255,255,255,0.04);
  padding: 24px;
  border-radius: 16px;
}

.cta-address h4 {
  margin-bottom: 10px;
}

.cta-address p {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* MAP */
.cta-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-right {
    margin-top: 40px;
  }
}



/* SERVICES – VISUAL SECTION */
.services-visual {
  background: linear-gradient(180deg, #071826 0%, #04121d 100%);
  padding: 90px 0;
}

.section-eyebrow {
  display: block;
  color: #d4a74a;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-info {
  padding: 22px;
}

.service-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0b1f33;
}

.service-info p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .service-card img {
    height: 170px;
  }
}




/* ===============================
   REAL WORK CAROUSEL
================================ */

.work-carousel {
  background: linear-gradient(180deg, #071825, #04121d);
  padding: 100px 0;
  overflow: hidden;
}

.work-carousel .section-eyebrow {
  color: #d4a84f;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
}

.work-carousel .section-title {
  color: #ffffff;
  margin: 10px 0 40px;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollCarousel 40s linear infinite;
}

.carousel-track img {
  height: 260px;
  width: auto;
  border-radius: 16px;
  user-select: none;
  pointer-events: auto;
  cursor: grab;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}

.carousel-track img:hover {
  transform: scale(1.04);
}

/* Pause on hover */
.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes scrollCarousel {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-track img {
    height: 200px;
  }
}



/* ===============================
   MOBILE SERVICES CAROUSEL
   =============================== */
@media (max-width: 768px) {

  .services-grid {
    display: flex;
    gap: 16px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
    border-radius: 18px;
  }

  .service-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
  }

  .service-info {
    padding: 14px 16px 18px;
  }

  .service-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .service-info p {
    font-size: 14px;
    line-height: 1.5;
  }
}




/* ===============================
   MOBILE SERVICES CAROUSEL
================================ */
@media (max-width: 768px) {

  .services-carousel {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
  }

  .services-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
  }

  .service-card {
    flex: 0 0 80vw;
    max-width: 80vw;
    border-radius: 16px;
  }

}



/* ===============================
   MOBILE SERVICES CAROUSEL
================================ */

.services-carousel {
  overflow: hidden;
  position: relative;
}

.services-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.service-card {
  flex: 0 0 80%;
  max-width: 80%;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.service-card h3 {
  margin-top: 12px;
  font-size: 18px;
}

.service-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* DESKTOP = normal grid */
@media (min-width: 768px) {
  .services-carousel {
    overflow: visible;
  }

  .services-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    transform: none !important;
  }

  .service-card {
    max-width: 100%;
  }
}


.desktop-only { display: block; }
.mobile-only { display: none; }

/* Desktop grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 14px;
}

.service-card img {
  width: 100%;
  border-radius: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }

  .services-carousel {
    overflow: hidden;
    margin-top: 20px;
  }

  .carousel-track {
    display: flex;
    gap: 16px;
    will-change: transform;
  }

  .carousel-track .service-card {
    min-width: 78vw;
    flex-shrink: 0;
  }
}



/* VISIBILITY CONTROL */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

/* DESKTOP GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

/* MOBILE CAROUSEL */
.services-carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.services-carousel .service-card {
  min-width: 85%;
  flex-shrink: 0;
}



/* ===============================
   MOBILE SERVICES CAROUSEL FIX
=============================== */

@media (max-width: 768px) {

  .services-carousel {
    overflow: hidden;
    width: 100%;
  }

  .services-carousel .carousel-track {
    display: flex;
    gap: 16px;
    will-change: transform;
  }

  .services-carousel .service-card {
    flex: 0 0 85%;          /* 🔥 THIS FIXES THE STRIPS */
    max-width: 85%;
    box-sizing: border-box;
  }

  .services-carousel .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
  }

}




/* ===============================
   SERVICES – BASE
================================ */

.services-visual {
  background: radial-gradient(ellipse at top, #0e2233 0%, #081724 100%);
  padding: 80px 0;
  overflow: hidden;
}

.services-visual .section-eyebrow {
  color: #d6a84f;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.services-visual .section-title {
  color: #ffffff;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 48px;
}

/* ===============================
   WRAPPER & TRACK
================================ */

.services-wrapper {
  width: 100%;
  overflow: hidden;
}

.services-track {
  display: flex;
  gap: 28px;
  will-change: transform;
}

/* ===============================
   SERVICE CARD (UNIFIED)
================================ */

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  flex: 0 0 auto;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 18px;
  margin: 0 0 6px;
  color: #0b1f2e;
}

.service-card p {
  font-size: 14px;
  color: #5f6b75;
  line-height: 1.5;
}

/* ===============================
   DESKTOP BEHAVIOR
================================ */

@media (min-width: 769px) {
  .services-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    transform: none !important;
  }

  .service-card {
    width: 100%;
  }

  .services-wrapper {
    overflow: visible;
  }
}

/* ===============================
   MOBILE CAROUSEL BEHAVIOR
================================ */

@media (max-width: 768px) {
  .services-track {
    display: flex;
    gap: 20px;
  }

  .service-card {
    width: 78vw;          /* KEY FIX: perfect mobile size */
    max-width: 320px;
  }

  .service-card img {
    height: 180px;
  }
}

/* ===============================
   SMOOTHNESS FIXES
================================ */

.services-track,
.service-card {
  touch-action: pan-y;
  user-select: none;
}


/* ===============================
   SERVICES BASE
================================ */
.services-visual {
  padding: 100px 0;
}

.services-visual .section-title {
  max-width: 600px;
}

/* ===============================
   DESKTOP GRID
================================ */
.services-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #667085;
}

/* ===============================
   MOBILE CAROUSEL
================================ */
@media (max-width: 768px) {

  .services-carousel {
    overflow: hidden;
    margin-top: 40px;
  }

  .services-track {
    display: flex;
    gap: 18px;
    will-change: transform;
  }

  .service-card {
    min-width: 260px;
    max-width: 260px;
    flex-shrink: 0;
  }

  .service-card img {
    height: 170px;
  }
}



/* =========================
   SERVICES – DESKTOP
========================= */

.service-content {
  padding: 80px 0;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

.service-card h3 {
  margin-top: 16px;
  font-size: 18px;
}

.service-card p {
  font-size: 15px;
  opacity: 0.7;
  margin-top: 6px;
}

/* =========================
   SERVICES – MOBILE
========================= */

@media (max-width: 768px) {

  .service-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .service-cards::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .service-card img {
    height: 180px;
  }
}


/* =========================
   SERVICES – BASE
========================= */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =========================
   SERVICES – MOBILE
========================= */
@media (max-width: 768px) {
  .service-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .service-cards::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

/* ===============================
   MOBILE MENU FIX (FINAL)
================================ */

/* Overlay (background dim only) */
#menuOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;

  z-index: 90; /* BELOW menu */
}

#menuOverlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Nav Panel */
#mainNav {
  position: fixed;
  top: 0;
  right: 0;

  width: 75%;
  max-width: 320px;
  height: 100vh;

  background: #0b1e2d;
  padding: 32px 24px;

  transform: translateX(100%);
  transition: transform 0.35s ease;

  z-index: 100; /* ABOVE overlay */
}

/* Open state */
#mainNav.active {
  transform: translateX(0);
}

/* Menu links clickable */
#mainNav a {
  position: relative;
  z-index: 101;
  display: block;
  padding: 12px 0;
  color: #fff;
  text-decoration: none;
}

/* Optional polish */
#mainNav {
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.4);
}



/* ===============================
   MOBILE MENU — FINAL FIX
================================ */

/* Overlay (dims background ONLY when active) */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Nav */
.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #071c2c;

  transform: translateX(100%);
  transition: transform 0.35s ease;

  z-index: 999;

  /* 🔥 THIS kills the ghost shadow */
  box-shadow: none;
}

/* When menu opens */
.main-nav.active {
  transform: translateX(0);
}

/* Nav links */
.main-nav a {
  display: block;
  padding: 16px 24px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* Lock body scroll when menu open */
body.menu-open {
  overflow: hidden;
}


/* =========================================
   🔥 ABSOLUTE FINAL MOBILE MENU FIX
   ========================================= */

/* Kill horizontal overflow globally */
html, body {
  overflow-x: hidden !important;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* MOBILE NAV — COMPLETELY REMOVED WHEN CLOSED */
.main-nav {
  position: fixed;
  top: 0;
  right: 0;

  width: 80%;
  max-width: 320px;
  height: 100vh;

  background: #071c2c;

  /* 🔥 THE REAL FIX */
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;

  transition: transform 0.35s ease, visibility 0s linear 0.35s;

  box-shadow: none !important;
  z-index: 999;
}

/* OPEN STATE */
.main-nav.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.35s ease;
}

/* Links */
.main-nav a {
  display: block;
  padding: 16px 24px;
  color: #fff;
  font-size: 16px;
}

/* Lock scroll */
body.menu-open {
  overflow: hidden;
}
/* =========================
   FIXED FLOATING HEADER
========================= */

.site-header {
  position: fixed;       /* 🔥 floating */
  top: 0;
  left: 0;
  width: 100%;

  background: var(--primary);
  z-index: 1200;

  /* subtle premium depth */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
/* Push page down for fixed header */
body {
  padding-top: 76px; /* header height */
}
@media (max-width: 768px) {
  body {
    padding-top: 76px;
  }
}
/* MOBILE SERVICES AUTO SCROLL BASE */
@media (max-width: 768px) {
  .service-cards {
    overflow: hidden;   /* JS controls movement */
    position: relative;
  }

  .service-cards-track {
    display: flex;
    gap: 16px;
    will-change: transform;
  }
}





/* ==================================================
   ISOLATED SERVICES LOOP (NO CONFLICT)
================================================== */

.svc-loop {
  background: linear-gradient(180deg, #071826 0%, #04121d 100%);
  padding: 90px 0;
  overflow: hidden;
}

.svc-eyebrow {
  display: block;
  color: #d6a84f;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.svc-title {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 50px;
}

/* Viewport */
.svc-viewport {
  width: 100%;
  overflow: hidden;
}

/* Track */
.svc-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

/* Card */
.svc-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  flex-shrink: 0;
  width: 300px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.svc-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.svc-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #0b1f2e;
}

.svc-card p {
  font-size: 14px;
  color: #667085;
  line-height: 1.5;
}

/* =======================
   DESKTOP (GRID)
======================= */
@media (min-width: 769px) {
  .svc-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    transform: none !important;
  }

  .svc-card {
    width: 100%;
  }

  .svc-viewport {
    overflow: visible;
  }
}

/* =======================
   MOBILE (CAROUSEL)
======================= */
@media (max-width: 768px) {
  .svc-card {
    width: 78vw;
    max-width: 320px;
  }
}





/* =====================================================
   SERVICE HERO — FINAL LAYOUT FIX
   (Logo LEFT • Content RIGHT • Pure White BG)
   ===================================================== */

/* 🔧 CHANGE HERO BACKGROUND COLOR HERE (future-proof)
   Example:
   background: #ffffff;   -> pure white (current)
   background: #f8fafc;   -> light grey
*/
.service-hero {
  background: #ffffff; /* 👈 CHANGE BG HERE LATER */
}

/* Swap columns: LOGO LEFT, TEXT RIGHT */
.service-hero-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

/* Move logo block to LEFT */
.service-hero-image {
  order: 1;
  justify-content: flex-start;
}

/* Move text block to RIGHT */
.service-hero-text {
  order: 2;
  text-align: left;
}

/* 🔥 LOGO SIZE BOOST (DESKTOP) */
.service-hero-image img {
  max-width: 520px;   /* increased from small size */
  width: 100%;
}

/* Buttons spacing polish */
.service-hero-text .hero-actions {
  margin-top: 28px;
}

/* =========================
   MOBILE ADJUSTMENTS
========================= */
@media (max-width: 768px) {

  .service-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-hero-image {
    order: 1;
    margin-bottom: 24px;
    justify-content: center;
  }

  .service-hero-text {
    order: 2;
    text-align: center;
  }

  /* 🔥 LOGO SIZE BOOST (MOBILE) */
  .service-hero-image img {
    max-width: 300px;
  }
}



/* =====================================================
   SERVICE HERO — MOBILE COMPACT & SCALE FIX
   ===================================================== */

/* ===== GLOBAL HERO SPACING CONTROL ===== */
/* 👉 CHANGE HERO TOP/BOTTOM SPACE HERE (future use) */
.service-hero {
  padding: 60px 0; /* desktop default */
}

/* =========================
   MOBILE OVERRIDES
========================= */
@media (max-width: 768px) {

  /* 🔥 REMOVE EMPTY SPACE */
  .service-hero {
    padding-top: 24px;   /* 👈 reduce top gap */
    padding-bottom: 40px; /* 👈 reduce bottom gap */
  }

  /* 🔥 LOGO SIZE CONTROL (MOBILE)
     👉 CHANGE THIS VALUE TO SCALE LOGO */
  .service-hero-image img {
    max-width: 220px; /* 👈 increase/decrease logo size here */
    margin: 0 auto 12px;
  }

  /* Reduce spacing under logo */
  .service-hero-image {
    margin-bottom: 12px;
  }

  /* Eyebrow tighter */
  .service-hero-text .section-eyebrow {
    margin-bottom: 10px;
  }

  /* 🔥 MAIN HEADING SIZE (MOBILE)
     👉 CHANGE THIS TO SCALE TITLE */
  .service-hero-text h1 {
    font-size: 34px; /* 👈 heading size control */
    line-height: 1.15;
    margin-bottom: 14px;
  }

  /* Paragraph tighter */
  .service-hero-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* Buttons tighter */
  .hero-actions {
    gap: 14px;
  }

  .hero-actions .btn {
    padding: 14px 26px;
    font-size: 15px;
  }
}


/* =========================
   SERVICE HERO LOGO
   ========================= */

.service-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* DESKTOP */
.service-hero-image img {
  width: 520px;       /* LOGO SIZE (DESKTOP) */
  max-width: 100%;
  height: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-hero-image img {
    width: 280px;     /* 🔥 LOGO SIZE (MOBILE) */
  }
}
@media (max-width: 768px) {
  .service-hero {
    padding-top: 40px;    /* reduce top gap */
    padding-bottom: 40px; /* reduce bottom gap */
  }

  .service-hero-inner {
    padding: 0 16px;      /* tighter sides */
  }
}



/* ===============================
   HERO MOBILE SPACING FIX
   =============================== */

@media (max-width: 768px) {

  /* Reduce overall hero padding */
  .service-hero {
    padding-top: 24px;     /* 🔽 was too big */
    padding-bottom: 24px;
  }

  /* Stack logo & text tighter */
  .service-hero-inner {
    gap: 12px;             /* 🔥 controls gap between logo & text */
    padding-top: 0;
  }

  /* Logo container spacing */
  .service-hero-image {
    margin-bottom: 6px;    /* 🔥 THIS fixes the big empty space */
  }

  /* Logo size (easy to tweak later) */
  .service-hero-image img {
    max-width: 280px;      /* 👉 CHANGE LOGO SIZE HERE */
    margin: 0 auto;
  }

  /* Reduce eyebrow spacing */
  .service-hero-text .section-eyebrow {
    margin-top: 6px;
    margin-bottom: 6px;
  }

  /* Reduce heading gap */
  .service-hero-text h1 {
    margin-top: 6px;
    margin-bottom: 10px;
  }

  /* Reduce paragraph gap */
  .service-hero-text p {
    margin-bottom: 14px;
  }
}




/* =====================================================
   SJS HEADER — CLEAN REBUILD (NO CONFLICTS)
===================================================== */

/* HEADER WRAPPER */
.sjh-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;

  background: #0e1e2b;
  z-index: 2000;

  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* INNER */
.sjh-container {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.sjh-logo {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* DESKTOP NAV */
.sjh-nav {
  display: flex;
  gap: 32px;
}

.sjh-nav a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.sjh-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #c9a24d;
  transition: width 0.3s ease;
}

.sjh-nav a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.sjh-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* BODY OFFSET FOR FIXED HEADER */
body {
  padding-top: 76px;
}

/* =========================
   MOBILE MODE
========================= */
@media (max-width: 768px) {

  .sjh-nav {
    display: none;
  }

  .sjh-toggle {
    display: block;
  }

  /* OVERLAY */
  .sjh-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1990;
  }

  .sjh-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* DRAWER */
  .sjh-drawer {
    position: fixed;
    top: 0;
    right: 0;

    width: 80%;
    max-width: 320px;
    height: 100vh;

    background: #071c2c;
    padding: 100px 24px;

    display: flex;
    flex-direction: column;
    gap: 24px;

    transform: translateX(100%);
    transition: transform 0.35s ease;

    z-index: 2001;
  }

  .sjh-drawer.active {
    transform: translateX(0);
  }

  .sjh-drawer a {
    color: #ffffff;
    font-size: 16px;
  }
}

/* ===============================
   CLEAN HEADER (NO CONFLICT)
================================ */

.hdr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  background: #0e1e2b;
  z-index: 5000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.hdr-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hdr-logo {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

/* ===== Desktop Nav ===== */
.hdr-nav {
  display: flex;
  gap: 32px;
}

.hdr-nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

/* ===== Mobile Toggle ===== */
.hdr-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 5100; /* ALWAYS ABOVE PANEL */
}

/* ===== Overlay ===== */
.hdr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 4800;
}

.hdr-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Mobile Menu ===== */
@media (max-width: 768px) {

  .hdr-toggle {
    display: block;
  }

  .hdr-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;

    background: #071c2c;
    padding: 100px 24px;

    display: flex;
    flex-direction: column;
    gap: 24px;

    transform: translateX(100%);
    transition: transform 0.35s ease;

    z-index: 5000;
  }

  .hdr-nav.active {
    transform: translateX(0);
  }

  .hdr-nav a {
    font-size: 16px;
  }
}

/* Push page below fixed header */
body {
  padding-top: 76px;
}
/* ===============================
   HEADER HOVER EFFECTS
================================ */

/* Desktop nav hover */
.hdr-nav a {
  position: relative;
  transition: color 0.25s ease;
}

/* Gold underline */
.hdr-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #c9a24d;
  transition: width 0.3s ease;
}

/* Hover state */
.hdr-nav a:hover {
  color: #c9a24d;
}

.hdr-nav a:hover::after {
  width: 100%;
}
/* Mobile nav item hover */
@media (max-width: 768px) {

  .hdr-nav a {
    position: relative;
    padding-left: 0;
    transition: color 0.25s ease, padding-left 0.25s ease;
  }

  .hdr-nav a::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #c9a24d;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .hdr-nav a:hover {
    color: #c9a24d;
    padding-left: 12px;
  }

  .hdr-nav a:hover::before {
    opacity: 1;
  }
}




/* ===============================
   PEST PAGE ONLY (ISOLATED)
================================ */

.pest-page section {
  padding: 100px 0;
}

/* HERO */
.pest-hero {
  background: #ffffff;
  color: #0f172a;
}

/* ===============================
   PEST SERVICE CARDS
================================ */

.pest-cards-wrapper {
  overflow: hidden;
  margin-top: 50px;
}

.pest-cards-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pest-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
  text-align: center;
}

.pest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.18);
}

.pest-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.pest-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.pest-card p {
  font-size: 14.5px;
  color: #64748b;
}

/* ===============================
   MOBILE SCROLL (AUTO + MANUAL)
================================ */

@media (max-width: 768px) {

  .pest-cards-track {
    display: flex;
    gap: 16px;
    width: max-content;
  }

  .pest-card {
    width: 78vw;
    max-width: 320px;
    flex-shrink: 0;
  }
}

/* ===============================
   FIX MOBILE ALIGNMENT ISSUES
================================ */

@media (max-width: 768px) {

  .pest-page .service-hero-inner {
    gap: 14px;
  }

  .pest-page h2 {
    font-size: 32px;
  }

  .pest-page .section-eyebrow {
    text-align: center;
  }
}



/* =====================================
   PEST CAROUSEL — ISOLATED (SAFE)
===================================== */

.pest-services {
  background: linear-gradient(180deg, #071826, #04121d);
  padding: 100px 0;
  overflow: hidden;
}

.pest-eyebrow {
  color: #d6a84f;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.pest-title {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 48px;
}

/* Wrapper */
.pest-carousel {
  width: 100%;
  overflow: hidden;
}

/* Track */
.pest-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

/* Card */
.pest-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  width: 300px;
  flex-shrink: 0;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}

.pest-card:hover {
  transform: translateY(-6px);
}

.pest-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.pest-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #0b1f2e;
}

.pest-card p {
  font-size: 14px;
  color: #667085;
  line-height: 1.5;
}

/* DESKTOP = GRID */
@media (min-width: 769px) {
  .pest-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    transform: none !important;
  }

  .pest-card {
    width: 100%;
  }

  .pest-carousel {
    overflow: visible;
  }
}

/* MOBILE ONLY */
@media (max-width: 768px) {
  .pest-card {
    width: 78vw;
    max-width: 320px;
  }
}




/* =====================================================
   CONTACT PAGE — ISOLATED STYLES
   Safe to paste at end of file
===================================================== */

.contact-page {
  background: #f8fafc;
}

/* =========================
   HERO
========================= */

.contact-hero {
  background: #ffffff; /* 🔧 Change hero bg here */
  padding: 90px 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 46px;
  margin: 14px 0 18px;
}

.contact-hero p {
  max-width: 640px;
  margin: 0 auto 30px;
  color: #475569;
}

.contact-hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* =========================
   INFO CARDS
========================= */

.contact-info {
  padding: 80px 0;
  background: #f1f5f9;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 15px;
  line-height: 1.6;
}

.contact-card a {
  color: var(--primary);
  font-weight: 600;
}

/* =========================
   FORM + MAP
========================= */

.contact-main {
  padding: 100px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

/* FORM */
.contact-form-box {
  background: #f8fafc;
  padding: 36px;
  border-radius: 22px;
}

.contact-form-box h2 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
  margin-bottom: 14px;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  margin-top: 10px;
}

/* MAP */
.contact-map-box {
  border-radius: 22px;
  overflow: hidden;
}

.contact-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .contact-hero {
    padding: 60px 0;
  }

  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-main {
    padding: 70px 0;
  }

  .contact-map-box iframe {
    min-height: 300px;
  }
}




/* =========================
   CONTACT PAGE – FINAL
========================= */

.contact-hero {
  padding: 100px 0;
  text-align: center;
}

.contact-cards {
  background: #f7f9fb;
  padding: 80px 0;
}

.contact-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: transform 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
}

.contact-form-section {
  padding: 100px 0;
}

.contact-form {
  background: #f8fafc;
  padding: 40px;
  border-radius: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-success {
  background: #e6f7ed;
  color: #065f46;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.form-error {
  background: #fde8e8;
  color: #7f1d1d;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.contact-map iframe {
  width: 100%;
  min-height: 420px;
  border-radius: 18px;/* ===============================
   CONTACT PAGE POLISH
   =============================== */

.contact-page section {
  padding: 80px 0;
}

/* HERO */
.contact-hero {
  background: #ffffff;
  text-align: center;
}

.contact-hero .btn-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* INFO CARDS */
.contact-info-cards {
  background: #f6f9fc;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-info-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* DARK FORM SECTION */
.contact-form-section {
  background: linear-gradient(180deg, #061a2a, #03101a);
  color: #fff;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* FORM */
.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  margin-bottom: 15px;
}

.contact-form-wrapper button {
  margin-top: 10px;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  border: none;
}

/* MOBILE FIX */
@media (max-width: 900px) {
  .contact-info-grid,
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-page section {
    padding: 60px 0;
  }
}
/* ===============================
   CONTACT PAGE STYLES
   =============================== */

.contact-page section {
  padding: 80px 0;
}

/* HERO */
.contact-hero {
  background: #ffffff;
  text-align: center;
}

.contact-hero h1 {
  margin: 15px 0;
}

.section-label {
  color: #caa24d;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}

/* BUTTON GROUP */
.btn-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* INFO CARDS */
.contact-info-cards {
  background: #f6f9fc;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.contact-info-card h3 {
  margin-bottom: 10px;
}

/* DARK FORM SECTION */
.contact-form-section {
  background: linear-gradient(180deg, #061a2a, #03101a);
  color: #ffffff;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* FORM */
.contact-form-box h2 {
  margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  margin-bottom: 15px;
}

.contact-form-box textarea {
  min-height: 120px;
}

.form-success {
  color: #4cff9f;
  margin-bottom: 15px;
}

.form-error {
  color: #ff6b6b;
  margin-bottom: 15px;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  border: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-info-grid,
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
  }

  .contact-page section {
    padding: 60px 0;
  }
}

  border: 0;
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 60px 0;
  }
}
/* ===============================
   CONTACT PAGE POLISH
   =============================== */

.contact-page section {
  padding: 80px 0;
}

/* HERO */
.contact-hero {
  background: #ffffff;
  text-align: center;
}

.contact-hero .btn-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* INFO CARDS */
.contact-info-cards {
  background: #f6f9fc;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-info-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* DARK FORM SECTION */
.contact-form-section {
  background: linear-gradient(180deg, #061a2a, #03101a);
  color: #fff;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* FORM */
.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  margin-bottom: 15px;
}

.contact-form-wrapper button {
  margin-top: 10px;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  border: none;
}

/* MOBILE FIX */
@media (max-width: 900px) {
  .contact-info-grid,
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-page section {
    padding: 60px 0;
  }
}
/* ===============================
   CONTACT PAGE STYLES
   =============================== */

.contact-page section {
  padding: 80px 0;
}

/* HERO */
.contact-hero {
  background: #ffffff;
  text-align: center;
}

.contact-hero h1 {
  margin: 15px 0;
}

.section-label {
  color: #caa24d;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}

/* BUTTON GROUP */
.btn-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* INFO CARDS */
.contact-info-cards {
  background: #f6f9fc;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.contact-info-card h3 {
  margin-bottom: 10px;
}

/* DARK FORM SECTION */
.contact-form-section {
  background: linear-gradient(180deg, #061a2a, #03101a);
  color: #ffffff;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* FORM */
.contact-form-box h2 {
  margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  margin-bottom: 15px;
}

.contact-form-box textarea {
  min-height: 120px;
}

.form-success {
  color: #4cff9f;
  margin-bottom: 15px;
}

.form-error {
  color: #ff6b6b;
  margin-bottom: 15px;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  border: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-info-grid,
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
  }

  .contact-page section {
    padding: 60px 0;
  }
}






/* CONTACT PAGE */
.contact-hero {
  padding: 120px 20px;
  text-align: center;
}

.contact-info-section {
  padding: 80px 20px;
}

.contact-form-section {
  padding: 100px 20px;
}

.dark-bg {
  background: radial-gradient(circle at top, #0e2436, #071521);
}

.light-bg {
  background: #f5f8fb;
}

.contact-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  color: #0b1e2d;
}

.contact-form-box h2 {
  color: #0b1e2d;
  margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d9e2ec;
}

.contact-form-box textarea {
  min-height: 120px;
}

.form-success {
  background: #e6fff1;
  color: #0f5132;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.form-error {
  background: #ffe6e6;
  color: #842029;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 18px;
  border: none;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}



.contact-us-section {
  background: radial-gradient(circle at top, #0b2239, #061523);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
}

.contact-form-card h2 {
  margin-bottom: 20px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
}

.contact-form-card button {
  background: #caa44d;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

.form-success {
  background: #e7f8ed;
  color: #0a7a3b;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.form-error {
  background: #fdeaea;
  color: #a40000;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 18px;
  border: none;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


/* CONTACT INFO CARDS */
.contact-info-cards {
  background: #f8fafc;
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.info-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.info-card h3 {
  margin-bottom: 10px;
  color: #0a2540;
}

.info-card a {
  color: #0a2540;
  font-weight: 600;
}

/* BUSINESS STRIP */
.contact-business-strip {
  background: linear-gradient(135deg, #071a2b, #0b2b45);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.contact-business-strip h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.business-points {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.business-points span {
  background: rgba(255,255,255,0.12);
  padding: 10px 18px;
  border-radius: 30px;
}

/* CTA STRIP */
.contact-cta {
  background: #0a2540;
  padding: 70px 0;
}

.cta-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-cta h2 {
  color: #fff;
}

.btn-call {
  background: #d4a847;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  margin-left: 15px;
}



/* =========================
   CONTACT US – HERO SECTION
========================= */

.contact-hero {
  background: linear-gradient(180deg, #071b2d 0%, #0c2a44 100%);
  padding: 110px 20px 120px;
  text-align: center;
  color: #ffffff;
}

.contact-hero .container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #f0c36a;
  margin-bottom: 12px;
}

.contact-hero h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.contact-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 20px 90px;
  }

  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-hero p {
    font-size: 16px;
  }
}







/* ===========================
   SERVICE DETAIL MODAL
=========================== */

.service-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.service-modal.active {
  display: block;
}

.service-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.service-modal-card {
  position: relative;
  background: #fff;
  max-width: 600px;
  width: 92%;
  margin: 60px auto;
  border-radius: 18px;
  padding: 22px;
  max-height: 85vh;
  overflow-y: auto;
  animation: modalUp 0.35s ease;
}

@keyframes modalUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.service-modal-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 18px;
}

.service-modal-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.modal-section h4 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 16px;
  color: #0c2a44;
}

.modal-section p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE FULLSCREEN */
@media (max-width: 768px) {
  .service-modal-card {
    margin: 0;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
}





/* === MODAL OVERLAY === */
.svc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

/* ACTIVE */
.svc-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* === MODAL BOX === */
.svc-modal {
  background: #ffffff;
  width: 90%;
  max-width: 920px;   /* WIDER POPUP */
  max-height: 85vh;   /* NOT FULL SCREEN */
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

/* IMAGE */
.svc-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.svc-modal-content {
  padding: 32px;
  overflow: visible; /* NO SCROLLBAR */
}

.svc-modal-content h2 {
  margin-bottom: 12px;
}

.svc-modal-content h4 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

/* ACTIONS */
.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* CLOSE BUTTON */
.svc-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* === BODY SCROLL LOCK === */
body.modal-open {
  overflow: hidden;
}

/* === MOBILE FIX === */
@media (max-width: 768px) {
  .svc-modal {
    grid-template-columns: 1fr;
    max-height: 80vh;
  }

  .svc-modal-image {
    height: 220px;
  }

  .svc-modal-content {
    padding: 24px;
  }
}



/* ===== MODAL OVERLAY ===== */
.svc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

/* ACTIVE */
.svc-modal-overlay.active {
  display: flex;
}

/* ===== MODAL BOX ===== */
.svc-modal {
  background: #fff;
  width: 100%;
  max-width: 920px;
  max-height: 85vh;
  border-radius: 18px;
  overflow: hidden; /* important */
  display: flex;
  flex-direction: row;
  position: relative;
}

/* IMAGE */
.svc-modal-image {
  width: 45%;
}

.svc-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT (THIS MUST SCROLL) */
.svc-modal-content {
  width: 55%;
  padding: 28px;
  overflow-y: auto;                 /* ✅ ALLOW SCROLL */
  -webkit-overflow-scrolling: touch;/* ✅ iOS smooth scroll */
}

/* CLOSE BUTTON */
.svc-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

/* ===== BODY LOCK ===== */
body.modal-open {
  overflow: hidden;
  height: 100vh;
}




/* ===== MODAL OVERLAY ===== */
.svc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

/* ACTIVE */
.svc-modal-overlay.active {
  display: flex;
}

/* ===== MODAL BOX ===== */
.svc-modal {
  background: #fff;
  width: 100%;
  max-width: 920px;
  max-height: 85vh;
  border-radius: 18px;
  overflow: hidden; /* important */
  display: flex;
  flex-direction: row;
  position: relative;
}

/* IMAGE */
.svc-modal-image {
  width: 45%;
}

.svc-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT (THIS MUST SCROLL) */
.svc-modal-content {
  width: 55%;
  padding: 28px;
  overflow-y: auto;                 /* ✅ ALLOW SCROLL */
  -webkit-overflow-scrolling: touch;/* ✅ iOS smooth scroll */
}

/* CLOSE BUTTON */
.svc-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

/* ===== BODY LOCK ===== */
body.modal-open {
  overflow: hidden;
  height: 100vh;
}




/* ===============================
   SERVICE MODAL – BASE (DESKTOP)
================================ */

.svc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.svc-modal-overlay.active {
  display: flex;
}

.svc-modal {
  background: #fff;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

/* Close button */
.svc-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

/* Image */
.svc-modal-image {
  width: 45%;
}

.svc-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.svc-modal-content {
  width: 55%;
  padding: 32px;
  overflow-y: auto;
}

.svc-modal-content h2 {
  margin-bottom: 12px;
}

.svc-modal-content h4 {
  margin-top: 18px;
  margin-bottom: 6px;
}

.modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

/* Lock background scroll */
body.modal-open {
  overflow: hidden;
}





/* ===============================
   SERVICE MODAL – MOBILE FIX
================================ */

@media (max-width: 768px) {

  .svc-modal {
    flex-direction: column;
    width: 92%;
    max-height: 85vh;
    border-radius: 20px;
  }

  .svc-modal-image {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
  }

  .svc-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .svc-modal-content {
    width: 100%;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions a {
    width: 100%;
    text-align: center;
  }

  .svc-modal-close {
    top: 10px;
    right: 12px;
  }
}










@media (max-width: 768px) {

  .modal-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* KEY */
    gap: 14px;
  }

  .modal-actions a {
    width: 100%;
    display: flex;
    justify-content: center; /* CENTER TEXT */
    align-items: center;
    text-align: center;
  }
  
  .modal-actions a {
  padding: 14px 0;
  font-size: 16px;
  border-radius: 999px;
}

/* 🔥 FORCE CENTER WHATSAPP BUTTON INSIDE MODAL ONLY */
.service-modal .btn-whatsapp,
.svc-modal .btn-whatsapp {
  margin-left: 0 !important;
}


.svc-modal .modal-actions a {
  width: 100%;
  justify-content: center;
}
}


@media (max-width: 768px) {
  .hero-actions {
    flex-direction: row;       /* force side-by-side */
    gap: 12px;
  }

  .hero-actions .btn {
    flex: 1;                   /* equal width */
    text-align: center;
    padding: 14px 12px;
    font-size: 15px;
    white-space: nowrap;       /* prevent text breaking */
  }
}


