  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --dark: #111318;
    --dark2: #1c1f26;
    --white: #ffffff;
    --blue: #0055FF;
    --blue-light: #3377FF;
    --blue-dim: rgba(0,85,255,0.12);
    --grey-bg: #F4F6FA;
    --text-muted: #8891a4;
    --text-body: #3d4455;
    --radius: 14px;
    --radius-sm: 8px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── HEADER ── */
  header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
  }

  .nav-links a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 7px;
    transition: color .2s, background .2s;
  }

  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

  .nav-logo {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
    line-height: 1.25;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .nav-logo span { color: var(--blue); }

  .btn-quote {
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    text-decoration: none;
    display: inline-block;
  }
.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 70px;
    width: auto;
}
  .btn-quote:hover { background: var(--blue-light); transform: translateY(-1px); }

  /* WordPress standard submenu dropdown */
  .nav-links > li {
    position: relative;
    list-style: none;
  }
  .nav-links .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    min-width: 200px;
    padding: 6px;
    z-index: 200;
    list-style: none;
    margin: 0;
  }
  .nav-links > li.menu-item-has-children:hover > .sub-menu,
  .nav-links > li.menu-item-has-children:focus-within > .sub-menu {
    display: block;
  }
  .nav-links .sub-menu li {
    list-style: none;
    margin: 0;
  }
  .nav-links .sub-menu a {
    display: block;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .nav-links .sub-menu a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.07);
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { width: 22px; height: 2px; background: white; border-radius: 2px; transition: .3s; }

  /* ── HERO ── */
  .hero {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 80px 24px 90px;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(0,85,255,0.10) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
  }

  .hero-overline {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
  }

  .hero h1 .blue { color: var(--blue); }

  .hero-sub {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.58);
    max-width: 460px;
    margin-bottom: 32px;
  }

  .btn-outline {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .2s, background .2s;
  }
  .btn-outline:hover { border-color: var(--blue); background: var(--blue-dim); }

  /* Lead Form */
  .lead-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px 32px;
    backdrop-filter: blur(12px);
  }

  .lead-form h3 {
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .form-group { margin-bottom: 14px; }

  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 14px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
appearance: none;
  }
  .form-group input::placeholder { color: rgba(255,255,255,0.3); }
  .form-group select option { background: var(--dark2); color: var(--white); }
  .form-group input:focus,
  .form-group select:focus { border-color: var(--blue); }

  .btn-submit {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
    letter-spacing: 0.02em;
    transition: background .2s, transform .15s;
    font-family: 'Poppins', sans-serif;
  }
  .btn-submit:hover { background: var(--blue-light); transform: translateY(-1px); }

  /* ── ABOUT ── */
  .about-section { background: var(--white); padding: 90px 24px 60px; }

  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
  }
    

  .cleaner-illustration {
    width: 100%;
    max-width: 380px;
  }

  .about-overline {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }

  .about-section h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 18px;
  }

  .about-section h2 .blue { color: var(--blue); }

  .about-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 28px;
  }

  .btn-blue {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .15s;
  }
  .btn-blue:hover { background: var(--blue-light); transform: translateY(-1px); }

  .features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 48px 0;
    border-top: 1px solid #e8ecf4;
  }

  .feature-card { text-align: center; padding: 16px; }

  .feature-icon {
    width: 64px;
    height: 64px;
    background: var(--blue-dim);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
  }

  .feature-icon svg { width: 30px; height: 30px; }

  .feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 10px;
  }

  .feature-card a {
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
  }

  /* ── SPOTLIGHT ── */
  .spotlight {
    background: var(--white);
    padding: 50px 24px 80px;
  }

  .spotlight-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .spotlight-img-wrap {
    position: relative;
  }

  .organic-shape {
    width: 100%;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--grey-bg);
  }

  .organic-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: 800;
    font-size: 11px;
    padding: 10px;
    line-height: 1.3;
    border: 4px solid white;
    box-shadow: 0 8px 24px rgba(0,85,255,0.35);
  }

  .badge .badge-num { font-size: 26px; font-weight: 900; line-height: 1; }

  .spotlight-text .overline {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }

  .spotlight-text h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
  }

  .spotlight-text h2 span { color: var(--blue); }

  .spotlight-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 28px;
  }

  /* ── SERVICES SECTION ── */
.services-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.blue {
  color: var(--blue);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,85,255,0.15);
}

.card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
}

.card-body p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.read-more {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.center-btn {
  text-align: center;
}

.btn-blue {
  background: var(--blue);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-blue:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card-image {
    height: 200px;
  }
}

  /* ── PRICING ── */
  .pricing-section { background: var(--grey-bg); padding: 90px 24px; }

  .pricing-header {
    text-align: center;
    margin-bottom: 52px;
  }

  .pricing-header h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .pricing-header h2 .blue { color: var(--blue); }

  .pricing-header p {
    font-size: 15px;
    color: var(--text-muted);
  }

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

  .pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #e4e8f2;
    transition: border-color .2s, box-shadow .2s;
  }
  .pricing-card:hover { border-color: var(--blue); box-shadow: 0 6px 24px rgba(0,85,255,0.1); }

  .pricing-icon {
    width: 50px;
    height: 50px;
    background: var(--blue-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .pricing-icon svg { width: 24px; height: 24px; }

  .pricing-info h4 { font-size: 14.5px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
  .pricing-info .rate { font-size: 18px; font-weight: 800; color: var(--blue); }
  .pricing-info .rate-label { font-size: 12px; color: var(--text-muted); }

  .cta-banner {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--blue);
    border-radius: var(--radius);
    padding: 20px 32px;
    text-align: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    border: none;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.02em;
  }
  /* Mobile Optimization */
@media (max-width: 768px) {
  .btn-main {
    font-size: 1rem;           /* Smaller text on mobile */
    padding: 14px 24px;
    max-width: 320px;
    white-space: nowrap;       /* Prevent wrapping */
    overflow: hidden;
    text-overflow: ellipsis;   /* Show ... if still too long */
  }
}

@media (max-width: 480px) {
  .btn-main {
    font-size: 0.95rem;
    padding: 13px 20px;
  }
}
  .cta-banner:hover { background: var(--blue-light); }
  

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: var(--white); padding: 90px 24px 0; }

  .testimonials-inner { max-width: 1100px; margin: 0 auto; }

  .testi-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .testi-header .overline {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .testi-header h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--dark); }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 70px;
  }

  .testi-card {
    background: var(--grey-bg);
    border-radius: var(--radius);
    padding: 28px 24px;
  }

  .stars { color: #F5A623; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }

  .testi-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 20px;
  }

  .testi-author { display: flex; align-items: center; gap: 12px; }

  .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
  }

  .author-name { font-size: 14px; font-weight: 700; color: var(--dark); }
  .author-role { font-size: 12px; color: var(--text-muted); }

  /* Before/After */
  .before-after-section {
    background: var(--dark);
    padding: 80px 24px;
  }

  .before-after-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .ba-text .tag {
    display: inline-block;
    background: rgba(0,85,255,0.18);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 18px;
  }

  .ba-text h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .ba-text h2 .blue { color: var(--blue); }

  .ba-bullets {
    list-style: none;
    margin-bottom: 32px;
  }

  .ba-bullets li {
    font-size: 14.5px;
    color: rgba(255,255,255,0.65);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .ba-bullets li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
  }

  .ba-btns { display: flex; gap: 14px; }

  .btn-white {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .2s;
  }
  .btn-white:hover { border-color: white; }

  /* Before/After Slider */
  .ba-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    user-select: none;
    aspect-ratio: 4/3;
    background: #333;
    cursor: col-resize;
  }

  .ba-slider-before,
  .ba-slider-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ba-slider-after-wrap {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    transition: none;
  }

  .ba-slider-after {
    position: absolute;
    left: 0; top: 0;
    width: 200%;
  }

  .ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: white;
    transform: translateX(-50%);
    z-index: 3;
  }

  .ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--dark);
    z-index: 4;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    font-weight: 700;
  }

  .ba-label {
    position: absolute;
    top: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
  }

  .ba-label-after { left: 12px; background: var(--blue); color: white; }
  .ba-label-before { right: 12px; background: rgba(0,0,0,0.6); color: white; }

  /* Placeholder images for before/after */
  .ba-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
  }

  .ba-before-bg { background: linear-gradient(135deg, #3d3030 0%, #2a1f1f 100%); }
  .ba-after-bg { background: linear-gradient(135deg, #e8f4fd 0%, #c8e6f7 100%); }

  /* ── EMERGENCY BANNER ── */
  .emergency-banner {
    background: var(--dark2);
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .emergency-banner h3 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
  }

  .emergency-banner h3 .blue { color: var(--blue); }

  .emergency-banner p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 70px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100px;      /* Adjust to your preferred size */
    height: auto;
    display: block;
}

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
  }
  .footer-col ul li a:hover { color: var(--blue); }

  .footer-col p { font-size: 14px; line-height: 1.75; margin-bottom: 8px; }
  .footer-col .highlight { color: var(--blue); font-weight: 600; }
  .footer-col .company-num { font-size: 12.5px; color: rgba(255,255,255,0.4); margin-top: 6px; }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

  .social-links { display: flex; gap: 10px; }

  .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: background .2s, color .2s;
    font-size: 15px;
  }
  .social-link:hover { background: var(--blue); color: white; }

  /* WhatsApp Float */
  .wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: transform .2s;
    text-decoration: none;
  }
  .wa-float:hover { transform: scale(1.1); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner,
    .about-top,
    .spotlight-inner,
    .before-after-inner { grid-template-columns: 1fr; }

    .hero-inner { gap: 40px; }
    .about-top { gap: 36px; }
    .spotlight-inner { gap: 36px; }

    .cards-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    .features-row { grid-template-columns: 1fr; gap: 24px; }

    .badge { right: 20px; }
  }

  @media (max-width: 900px) {
    .primary-nav .nav-links { display: none; }
    .nav-actions .btn-quote { display: none; }
    button.hamburger, .hamburger { display: flex; }
    .nav-logo { font-size: 13px; }
  }

  @media (max-width: 640px) {
    .nav-logo { font-size: 13px; }

    .cards-grid, .pricing-grid, .testi-grid, .footer-inner { grid-template-columns: 1fr; }
    .ba-btns { flex-direction: column; }

    .hero-inner { padding: 0; }
    .hero { padding: 60px 20px 70px; }
  }

  /* Mobile nav — always hidden unless .open (desktop AND mobile) */
  header.site-header .mobile-nav,
  header .mobile-nav,
  .mobile-nav {
    display: none !important;
    flex-direction: column;
    background: var(--dark2);
    padding: 12px 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
    gap: 4px;
  }
  header.site-header .mobile-nav.open,
  header .mobile-nav.open,
  .mobile-nav.open {
    display: flex !important;
  }
  .mobile-nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .mobile-nav .btn-quote {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }
  /* Reset button styles for hamburger */
  button.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
.services-hero {
    background: var(--dark);
    padding: 60px 24px 90px;
    text-align: center;
    color: white;
  }
  .services-hero h1 {
    font-size: clamp(32px, 6vw, 42px);
    font-weight: 700;
    margin-bottom: 18px;
  }
  .services-hero p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.9;
    color: white;
  }

  /* Main Content */
  .service-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
  }

  .service-detail img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 40px;
  }

  .service-detail h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .service-detail p {
    color: #000000;
    margin-bottom: 22px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 50px 0;
  }

  .feature-item {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  }

  .feature-item h4 {
    color: var(--blue);
    margin-bottom: 12px;
  }

  .price-box {
    background: var(--blue-dim);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    margin: 50px 0;
  }

  .price-box .price {
    font-size: 42px;
    font-weight: 700;
    color: var(--blue);
  }

  
.contact-hero {
    background: var(--dark);
    padding: 40px 14px 80px;
    text-align: center;
  }

  .contact-hero h1 {
    font-size: clamp(30px, 6vw, 33px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
  }

  .contact-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
  }

  /* Main Content */
  .contact-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .contact-form {
    background: var(--grey-bg);
    padding: 40px;
    border-radius: var(--radius);
  }

  .contact-form h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--dark);
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-muted);
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e4eb;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--blue);
    outline: none;
  }

  .form-group textarea { min-height: 140px; }

  .btn-submit {
    width: 100%;
    background: var(--blue);
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-submit:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
  }

  /* Contact Info + Map */
  .contact-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark);
  }

  .contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    background: var(--blue-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
  }

  .map-container {
    margin-top: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,85,255,0.15);
  }

  
.blog-hero {
    background: var(--dark);
    padding: 40px 14px 80px;
    text-align: center;
    color: white;
  }
  .blog-hero h1 {
    font-size: clamp(30px, 6vw, 33px);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .blog-hero p {
    font-size: 17.5px;
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.9;
  }

  /* Blog Section */
  .blog-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
  }
  .blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    transition: all 0.3s;
  }
  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,85,255,0.15);
  }
  .blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }
  .blog-body {
    padding: 24px;
  }
  .blog-body .category {
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .blog-body h3 {
    font-size: 20px;
    line-height: 1.35;
    margin: 12px 0 14px;
  }
  .blog-body p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .read-more {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
  }

  
.about-hero {
    background: var(--dark);
    padding: 40px 14px 80px;
    text-align: center;
    color: white;
  }
  .about-hero h1 {
    font-size: clamp(30px, 6vw, 33px);
    font-weight: 600;
    margin-bottom: 7px;
  }

  /* Company Section */
  .company-section {
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .company-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
  }
  .company-text p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  /* Services Section */
  .services-section {
    background: var(--grey-bg);
    padding: 90px 24px;
  }
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
  }
  .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .service-card {
    background: white;
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  }
  .service-card h3 {
    color: var(--blue);
    margin: 16px 0 10px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 90px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
  .testi-card {
    background: var(--grey-bg);
    padding: 30px;
    border-radius: var(--radius);
  }

  
.services-hero {
    background: var(--dark);
    padding: 40px 14px 80px;
    text-align: center;
    color: white;
  }
  .services-hero h1 {
    font-size: clamp(30px, 6vw, 33px);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .services-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
  }

  /* Services Grid */
  .services-section {
    padding: 90px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
  }
  .service-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
  }
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,85,255,0.15);
  }
  .service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  .card-body {
    padding: 26px;
  }
  .card-body h3 {
    font-size: 22px;
    color: var(--blue);
    margin-bottom: 12px;
  }
  .card-body p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
  }

  

/* WordPress specific */
.wp-block-image img, .alignnone, .aligncenter, .alignleft, .alignright {
  max-width: 100%;
  height: auto;
}
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}

/* Ensure images responsive */
img { max-width: 100%; height: auto; }

/* Form success message */
.form-success {
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.form-error {
  background: #f8d7da;
  color: #721c24;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Single post content */
.single-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.single-content h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.single-meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 30px;
}
.single-content .featured-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 30px;
}
.single-content p {
  line-height: 1.8;
  margin-bottom: 18px;
  color: var(--text-body);
}

/* Active nav link */
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

/* Page hero common */
.page-hero {
  background: var(--dark);
  padding: 60px 24px 80px;
  text-align: center;
  color: white;
}
.page-hero h1 {
  font-size: clamp(30px, 6vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .contact-grid, .company-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Custom logo support */
.nav-logo a { display: flex; align-items: center; text-decoration: none; }
.nav-logo .custom-logo-link img,
.nav-logo img {
  height: 70px;
  width: auto;
  max-height: 70px;
}
.custom-logo-link { display: flex; align-items: center; }

/* Pagination */
.navigation.pagination {
  margin-top: 40px;
  text-align: center;
}
.navigation.pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 3px;
  border-radius: 6px;
  background: var(--grey-bg);
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
}
.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover {
  background: var(--blue);
  color: white;
}

/* ── NEWS ARTICLE ── */
.news-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  text-align: center;
  color: white;
}
.news-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,85,255,0.15) 0%, transparent 70%);
}
.news-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.news-category {
  display: inline-block;
  background: rgba(0,85,255,0.25);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.news-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.news-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.news-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.news-article {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-body);
}
.news-article h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin: 48px 0 20px;
}
.news-article h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 36px 0 16px;
}
.news-article p { margin-bottom: 24px; }
.news-article ul {
  margin: 28px 0;
  padding-left: 22px;
}
.news-article li {
  margin-bottom: 12px;
  line-height: 1.75;
}
.news-image {
  width: 100%;
  border-radius: var(--radius);
  margin: 40px 0;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.news-image-caption {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}
.cta-box {
  background: var(--grey-bg);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 60px 0;
  border: 1px solid #e4e8f2;
}
.cta-box h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--dark);
}
