:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #374151;
  --brand-dark: #101d70;
  --brand-accent: #fce22d;
  --radius: 14px;
  --shadow: 0 18px 38px rgba(16, 29, 112, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 0 0, #ffffff 0, #f4f6fb 45%, #edf1ff 100%);
  line-height: 1.55;
  font-size: 18px;
}
h1, h2, h3, h4 { color: #111827; font-family: "Gill Sans", "Trebuchet MS", sans-serif; letter-spacing: 0.2px; margin: 0 0 0.8rem; }
h1 { font-size: clamp(2.8rem, 5.5vw, 3.1rem); }
h2 { font-size: clamp(1.95rem, 4.2vw, 2.45rem); }
h3, h4 { font-size: clamp(1.3rem, 3vw, 1.55rem); }
p, li, td, th, summary { font-size: clamp(1rem, 2.3vw, 1.1rem); }
a { color: inherit; }

.container { width: min(1160px, 92%); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 29, 112, 0.94);
  backdrop-filter: blur(8px);
}
.topbar { min-height: 78px; display: flex; align-items: center; gap: 12px; }
.logo { display: inline-flex; align-items: center; text-decoration: none; gap: 10px; color: #fff; }
.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand-accent);
  color: #111;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
}
.logo-text { font-size: clamp(1.38rem, 2.3vw, 1.62rem); font-weight: 700; }

.main-nav { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.main-nav a { color: #fff; text-decoration: none; font-size: clamp(1rem, 2.4vw, 1.15rem); opacity: 0.95; }
.main-nav a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.phone-chip {
  margin-left: 10px;
  text-decoration: none;
  color: #111;
  background: var(--brand-accent);
  font-weight: 700;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 0.9rem;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
  border-radius: var(--radius);
  padding: 0.55rem 0.8rem;
  font-size: 1rem;
}

.hero { background: linear-gradient(120deg, #101d70 0, #1f3b8f 60%, #3253b0 100%); color: #fff; padding: 2.2rem 0 2.4rem; }
.hero h1 { color: #fff; }
.hero h1,
.section h2 {
  position: relative;
  padding-top: 18px;
}
.hero h1::before,
.section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-accent);
  box-shadow: 12px 0 0 var(--brand-accent), 24px 0 0 var(--brand-accent);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.hero-media, .hero-copy { min-height: 460px; border-radius: var(--radius); }
.hero-media { background: rgba(255, 255, 255, 0.07); display: grid; place-items: center; }
.hero-media img {
  width: 92%;
  max-width: 580px;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.hero-copy { padding: 2rem; background: rgba(0, 0, 0, 0.16); }
.stars { color: var(--brand-accent); font-size: 1.15rem; margin-bottom: 0.7rem; letter-spacing: 2px; }
.trust-row { display: flex; gap: 8px; margin: 0.2rem 0 0.9rem; flex-wrap: wrap; }
.trust-row img { width: 95px; height: auto; background: #fff; border-radius: 10px; padding: 6px; }
.lead { font-size: 1.08rem; }
.cta-pre { font-weight: 700; margin-top: 1rem; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 0.8rem; }

.btn {
  display: inline-block;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
  padding: 0.8rem 1rem;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-primary { background: var(--brand-accent); color: #111; }
.btn-secondary { background: #fff; color: #111; }
.call-now-sun {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius);
  overflow: visible;
}
.call-now-sun::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius) + 3px);
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    rgba(252, 226, 45, 0),
    rgba(252, 226, 45, 0.92),
    rgba(252, 226, 45, 0),
    rgba(252, 226, 45, 0.82),
    rgba(252, 226, 45, 0)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: blur(0.6px);
  z-index: -1;
  animation: sunRaysPulse 2.2s ease-in-out infinite;
}
.call-now-sun::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  border: 1px solid rgba(252, 226, 45, 0.7);
  z-index: -1;
  animation: sunGlowPulse 1.6s ease-in-out infinite;
}
@keyframes sunRaysPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes sunGlowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252, 226, 45, 0.55); }
  50% { box-shadow: 0 0 0 8px rgba(252, 226, 45, 0); }
}

.intro { padding: 1rem 0; background: #ffffff; border-bottom: 1px solid #e5e7eb; }
.section { padding: 2.4rem 0; }
.section-alt { background: #eef2ff; }
.section-cta { background: linear-gradient(160deg, #101d70 0, #1f3b8f 100%); color: #fff; }
#contact-us.section-cta {
  background-image: linear-gradient(rgba(13, 22, 63, 0.78), rgba(13, 22, 63, 0.78));
  background-size: cover;
  background-position: center;
}
#contact-us.section-cta.bg-ready {
  background-image:
    linear-gradient(rgba(13, 22, 63, 0.78), rgba(13, 22, 63, 0.78)),
    url("../images/services-appliance-photo.jpg");
  background-size: cover;
  background-position: center;
}
.section-cta h2 { color: #fff; }
.split { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; align-items: center; }
.cta-box { background: rgba(255, 255, 255, 0.14); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); }
.cta-box .btn { width: 100%; text-align: center; margin-top: 8px; }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
th, td { padding: 0.85rem; border-bottom: 1px solid #e5e7eb; text-align: left; vertical-align: top; }
th { background: #dfe8ff; }

.cards { display: grid; gap: 14px; }
.svc-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-head h3 {
  margin: 0;
}
.svc-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #fff4aa;
  border: 1px solid #f3d84e;
  flex: 0 0 34px;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1rem; }
.inline-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.inline-list li { background: #fff; border-radius: var(--radius); padding: 0.55rem 0.8rem; box-shadow: 0 6px 14px rgba(16, 29, 112, 0.08); }

.carousel { position: relative; min-height: 180px; }
.review { display: none; background: #fff; border-radius: var(--radius); padding: 1.1rem; box-shadow: var(--shadow); }
.review.active { display: block; animation: fade 0.5s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.faq details { background: #fff; border-radius: var(--radius); box-shadow: 0 6px 14px rgba(16, 29, 112, 0.07); margin-bottom: 8px; padding: 0.8rem 1rem; }
.faq summary { cursor: pointer; font-weight: 700; }

.site-footer { background: #0d163f; color: #fff; padding: 1.8rem 0 5.8rem; font-size: 13px; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; align-items: start; }
.legal { margin-top: 0.8rem; font-size: 13px; line-height: 1.45; }

.mobile-call {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  background: var(--brand-accent);
  color: #111;
  text-decoration: none;
  font-weight: 800;
  border-radius: var(--radius);
  white-space: nowrap;
  width: auto;
  max-width: calc(100vw - 16px);
  padding: 0.85rem 0.75rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1024px) {
  .hero-grid, .split, .three-up, .two-up, .footer-grid { grid-template-columns: 1fr; }
  .topbar {
    flex-wrap: wrap;
    row-gap: 10px;
    align-items: center;
    padding: 10px 0;
  }
  .logo { width: 100%; }
  .phone-chip {
    order: 2;
    margin-left: 0;
  }
  .menu-toggle {
    order: 3;
    margin-left: auto;
  }
  .main-nav {
    order: 4;
    width: 100%;
  }
  .hero {
    background-image:
      linear-gradient(rgba(16, 29, 112, 0.72), rgba(16, 29, 112, 0.72)),
      url("../images/hero-kitchen-photo.jpg");
    background-size: cover;
    background-position: center;
  }
  .hero-media { display: none; }
  .hero-copy {
    min-height: auto;
    background: transparent;
    padding: 1rem 0;
  }
  .btn,
  .phone-chip,
  .mobile-call,
  .menu-toggle {
    font-size: 16px !important;
    line-height: 1.25;
  }
  .btn,
  .phone-chip,
  .mobile-call {
    padding: 0.85rem 1.05rem;
  }
  .hero-actions {
    gap: 8px;
    margin-top: 0.7rem;
  }
  .cta-box .btn {
    margin-top: 10px;
  }
  .trust-row img { width: 64px; }
  .hero h1 { font-size: 35px; }
  .main-nav { display: none; width: 100%; order: 4; margin: 8px 0 0; padding-bottom: 8px; flex-direction: column; align-items: flex-start; }
  .main-nav.open { display: flex; }
  .menu-toggle { display: inline-block; }
  body { font-size: 70%; }
  .mobile-call { display: block; }
}

@media (max-width: 380px) {
  .mobile-call {
    font-size: 14px !important;
    padding: 0.78rem 0.62rem;
  }
}
