*{box-sizing:border-box}

:root{
  --yellow:#f4b900;
  --yellow-dark:#d99d00;
  --navy:#07152e;
  --text:#171717;
  --muted:#667085;
  --border:#ececec;
  --green:#25D366;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.55;
}

a{
  color:inherit;
}

/* =========================
   HEADER
========================= */

.site-header{
  position:sticky;
  top:0;
  background:#fff;
  z-index:1000;
  box-shadow:0 2px 14px rgba(0,0,0,.08);
}

.header-inner{
  min-height:82px;
  max-width:1320px;
  margin:auto;
  padding:8px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}

.brand img{
  display:block;
  width:205px;
  max-width:205px;
  height:auto;
  object-fit:contain;
}

.desktop-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:27px;
  font-weight:700;
  white-space:nowrap;
}

.desktop-nav a,
.services-toggle{
  font-size:16px;
  text-decoration:none;
  color:#171717;
  transition:.2s;
}

.desktop-nav a:hover,
.desktop-nav a:focus,
.services-toggle:hover{
  color:var(--yellow-dark);
}

.services-menu{
  position:relative;
}

.services-toggle{
  border:0;
  background:none;
  padding:10px 0;
  cursor:pointer;
  font:inherit;
}

.services-toggle span{
  font-size:18px;
  margin-left:3px;
}

.services-dropdown{
  position:absolute;
  display:none;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  width:370px;
  max-height:460px;
  overflow:auto;
  background:#fff;
  border:1px solid #eee;
  border-radius:12px;
  padding:10px;
  box-shadow:0 16px 35px rgba(0,0,0,.15);
}

.services-menu:hover .services-dropdown,
.services-menu:focus-within .services-dropdown,
.services-menu.open .services-dropdown{
  display:flex;
  flex-direction:column;
}

.services-dropdown a,
.mobile-services a{
  padding:11px 13px;
  text-decoration:none;
  border-radius:8px;
  font-size:14px;
  line-height:1.3;
}

.services-dropdown a:hover,
.mobile-services a:hover{
  background:#fff7db;
  color:#b87c00;
}

/* MOBILE MENU BUTTON */

.hamburger{
  display:none;
  width:46px;
  height:46px;
  border:0;
  background:transparent;
  padding:7px;
  cursor:pointer;
}

.hamburger span{
  display:block;
  height:3px;
  width:29px;
  margin:6px auto;
  background:#171717;
  border-radius:3px;
  transition:.25s;
}

.hamburger.is-open span:nth-child(1){
  transform:translateY(9px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2){
  opacity:0;
}

.hamburger.is-open span:nth-child(3){
  transform:translateY(-9px) rotate(-45deg);
}

.mobile-nav{
  display:none;
  max-height:calc(100vh - 72px);
  overflow:auto;
  background:#fff;
  border-top:1px solid #eee;
  padding:8px 20px 18px;
  box-shadow:0 12px 25px rgba(0,0,0,.08);
}

.mobile-nav[hidden]{
  display:none;
}

.mobile-nav:not([hidden]){
  display:block;
}

.mobile-nav>a,
.mobile-nav summary{
  display:block;
  padding:14px 4px;
  text-decoration:none;
  font-weight:700;
  border-bottom:1px solid #f0f0f0;
  cursor:pointer;
}

.mobile-nav details summary{
  list-style:none;
}

.mobile-nav details summary::-webkit-details-marker{
  display:none;
}

.mobile-nav details summary:after{
  content:'⌄';
  float:right;
}

.mobile-services{
  display:flex;
  flex-direction:column;
  padding:4px 0 8px 10px;
  max-height:420px;
  overflow:auto;
}

/* =========================
   GENERAL
========================= */

main{
  min-height:200px;
}

.content-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:58px 28px;
}

.content-box{
  font-size:18px;
  line-height:1.8;
}

.eyebrow,
.cta-label{
  color:#d99d00;
  font-weight:800;
  letter-spacing:3px;
}

.primary-btn{
  display:inline-block;
  background:var(--yellow);
  color:#111;
  padding:14px 23px;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;
}

.primary-btn:hover{
  background:#e4a900;
}

h2{
  line-height:1.2;
}

h3{
  line-height:1.3;
}

/* =========================
   HOME
========================= */

.hero{
  min-height:500px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.55),rgba(0,0,0,.18)),
    url('../services/geyser-repair.webp') center/cover;
  display:flex;
  align-items:center;
}

.hero-overlay{
  margin:40px 6%;
  max-width:720px;
  background:#fff;
  border-radius:24px;
  padding:38px;
  box-shadow:0 18px 50px rgba(0,0,0,.18);
}

.hero h2{
  font-size:46px;
  margin:14px 0 18px;
}

.services-section h2{
  font-size:34px;
}

/* =========================
   SERVICE CARDS
========================= */

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
}

.service-card{
  background:#fff;
  min-width:0;
}

.service-card-image{
  width:100%;
  aspect-ratio:1/1;
  border-radius:18px;
  overflow:hidden;
  background:#eef2f7;
  box-shadow:0 6px 22px rgba(0,0,0,.08);
}

.service-card-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.service-card>div:not(.service-card-image){
  padding:18px 4px 4px;
}

.service-card h3{
  margin:0 0 10px;
  font-size:21px;
}

.service-card a,
.blog-title{
  font-weight:800;
}

/* =========================
   BLOG
========================= */

.blog-layout{
  max-width:1220px;
  margin:0 auto;
  padding:55px 28px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:35px;
}

.latest-post{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
}

.latest-post img{
  width:100%;
  height:390px;
  object-fit:cover;
  display:block;
  background:#eef2f7;
}

.latest-post-body{
  padding:28px;
}

.latest-post-body h2{
  font-size:34px;
  margin:0 0 10px;
}

.recent-posts{
  border:1px solid var(--border);
  border-radius:18px;
  padding:24px;
  background:#fafafa;
  height:max-content;
  position:sticky;
  top:115px;
}

.recent-posts h2{
  margin:0 0 15px;
  font-size:24px;
}

.recent-posts a{
  display:block;
  padding:13px 0;
  border-bottom:1px solid #ddd;
  text-decoration:none;
  font-weight:700;
  line-height:1.35;
}

.recent-posts a:last-child{
  border-bottom:0;
}

.blog-article{
  max-width:850px;
  margin:0 auto;
  padding:55px 28px;
}

.blog-article h2{
  font-size:40px;
  margin:0 0 20px;
}

.blog-meta{
  color:#777;
  font-size:14px;
  margin-bottom:20px;
}

.blog-content{
  font-size:18px;
  line-height:1.8;
}

.blog-content h3{
  margin-top:32px;
}

/* =========================
   CTA
========================= */

.global-cta{
  position:relative;
  min-height:540px;
  width:100%;
  background-image:
    linear-gradient(90deg,rgba(0,0,0,.08),rgba(0,0,0,.18)),
    url('../cta-image.webp');
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:55px 5%;
}

.cta-inner{
  width:100%;
  max-width:1400px;
  margin:auto;
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.cta-card{
  width:min(560px,48%);
  background:rgba(255,255,255,.97);
  border:7px solid var(--yellow);
  border-radius:30px;
  padding:34px 38px;
  box-shadow:0 14px 40px rgba(0,0,0,.2);
}

.cta-card h1{
  font-size:48px;
  line-height:1.04;
  margin:18px 0 30px;
  letter-spacing:-1px;
}

.cta-label{
  font-size:18px;
}

.bulb-icon{
  font-size:24px;
  margin-right:8px;
  display:inline-block;
  line-height:1;
}

.book-row{
  display:flex;
  align-items:center;
  gap:20px;
}

.call-circle{
  width:92px;
  height:92px;
  flex:0 0 92px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--yellow);
  color:#fff;
  text-decoration:none;
}

.call-circle svg{
  width:48px;
  height:48px;
  fill:currentColor;
}

.book-label{
  color:#d99d00;
  font-size:21px;
  letter-spacing:3px;
  font-weight:900;
}

.phone{
  display:inline-block;
  font-size:30px;
  font-weight:900;
  text-decoration:none;
  margin-top:2px;
}

.phone:hover{
  color:#a97400;
}

/* =========================
   FOOTER
========================= */

.site-footer{
  background:var(--navy);
  color:#fff;
  padding:58px 28px 20px;
}

.footer-grid{
  max-width:1250px;
  margin:auto;
  display:grid;
  grid-template-columns:1.35fr .75fr 1.25fr;
  gap:55px;
}

.site-footer h2{
  font-size:19px;
  margin:0 0 18px;
  color:#fff;
  position:relative;
  padding-bottom:10px;
}

.site-footer h2:after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:42px;
  height:3px;
  border-radius:5px;
  background:var(--yellow);
}

.footer-about p{
  color:#d8deea;
  max-width:330px;
}

/* ONLY QUICK LINKS */
.footer-links{
  display:flex;
  flex-direction:column;
  gap:9px;
}

.footer-links a{
  color:#dfe5ef;
  text-decoration:none;
}

.footer-links a:hover{
  color:var(--yellow);
}

/* If old Our Services footer column still exists */
.footer-services{
  display:none !important;
}

/* SOCIAL ICONS */

.footer-social{
  display:flex;
  gap:10px;
  margin-top:22px;
  flex-wrap:wrap;
}

.footer-social a{
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.3);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:rgba(255,255,255,.06);
  transition:.2s;
  text-decoration:none;
}

.footer-social a:hover{
  background:var(--yellow);
  border-color:var(--yellow);
  color:#111;
}

.footer-social svg{
  display:block !important;
  width:23px !important;
  height:23px !important;
  max-width:23px !important;
  max-height:23px !important;
  min-width:23px !important;
  min-height:23px !important;
  fill:currentColor;
  stroke:currentColor;
  stroke-width:1.5;
}

.footer-social svg rect,
.footer-social svg circle{
  fill:none;
}

.footer-social svg .social-dot{
  fill:currentColor;
  stroke:none;
}

/* CONTACT */

.contact-line{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:0 0 13px;
  color:#dfe5ef;
  text-decoration:none;
}

.mini-icon{
  color:var(--yellow);
  width:22px;
  flex:0 0 22px;
  text-align:center;
  font-size:18px;
}

.mini-icon svg{
  width:19px;
  height:19px;
  display:block;
  fill:currentColor;
}

/* COPYRIGHT */

.copyright{
  max-width:1250px;
  margin:38px auto 0;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.15);
  text-align:center;
  color:#c9d0dc;
  font-size:14px;
}

.copyright strong{
  color:var(--yellow);
}

/* =========================
   FLOATING BUTTONS
========================= */

.floating-actions{
  position:fixed;
  left:22px;
  bottom:22px;
  z-index:1200;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.float-call,
.float-wa,
.float-top{
  width:60px;
  height:60px;
  border:0;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.float-call{
  background:var(--yellow);
  color:#fff;
}

.float-wa{
  background:#25D366 !important;
  color:#fff !important;
}

.float-top{
  position:fixed;
  right:22px;
  left:auto;
  bottom:22px;
  background:var(--yellow);
  color:#fff;
}

/* ICON FIX */

.float-call svg,
.float-wa svg,
.float-top svg{
  display:block !important;
  width:30px !important;
  height:30px !important;
  max-width:30px !important;
  max-height:30px !important;
  fill:#fff !important;
  color:#fff !important;
  stroke:#fff !important;
  stroke-width:0 !important;
}

/* WhatsApp specifically */
.float-wa svg{
  width:32px !important;
  height:32px !important;
  fill:#fff !important;
  stroke:none !important;
}

/* Remove unwanted SVG backgrounds/outlines */
.float-wa svg rect,
.float-wa svg circle{
  fill:none !important;
  stroke:none !important;
}

/* HOVER */

.float-call:hover{
  transform:translateY(-2px);
  background:#e4a900;
}

.float-wa:hover{
  transform:translateY(-2px);
  background:#20bd5b !important;
}

.float-top:hover{
  transform:translateY(-2px);
  background:#e4a900;
}

/* =========================
   SERVICE PAGE
========================= */

.service-hero-image{
  display:block;
  width:100%;
  max-width:700px;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:18px;
  margin:25px 0;
}

.service-content h2{
  font-size:36px;
}

/* =========================
   TABLET
========================= */

@media(max-width:1050px){

  .desktop-nav{
    gap:17px;
  }

  .desktop-nav a,
  .services-toggle{
    font-size:14px;
  }

  .header-inner{
    padding-left:18px;
    padding-right:18px;
  }

  .brand img{
    width:195px;
    max-width:195px;
  }
}

/* =========================
   TABLET SERVICE GRID
========================= */

@media(max-width:900px){

  .service-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:800px){

  .site-header{
    position:sticky;
    top:0;
  }

  .header-inner{
    min-height:72px;
    padding:6px 16px;
  }

  .brand img{
    width:165px;
    max-width:165px;
  }

  .desktop-nav{
    display:none;
  }

  .hamburger{
    display:block;
    flex:0 0 46px;
  }

  .mobile-nav{
    max-height:calc(100vh - 72px);
  }

  .global-cta{
    min-height:610px;
    padding:35px 18px;
    background-position:center;
  }

  .cta-inner{
    justify-content:center;
  }

  .cta-card{
    width:100%;
    max-width:620px;
    padding:28px 24px;
    border-width:6px;
    border-radius:25px;
  }

  .cta-card h1{
    font-size:40px;
  }

  .blog-layout{
    grid-template-columns:1fr;
    padding:35px 18px;
  }

  .recent-posts{
    position:static;
  }

  .latest-post img{
    height:300px;
  }

  .service-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .hero-overlay{
    margin:24px 18px;
    padding:28px;
  }

  .hero h2{
    font-size:38px;
  }

  .content-wrap{
    padding:42px 18px;
  }

  .site-footer{
    padding-top:42px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:520px){

  .header-inner{
    min-height:68px;
    padding:5px 14px;
  }

  .brand img{
    width:155px;
    max-width:155px;
  }

  .hamburger{
    width:44px;
    height:44px;
    padding:6px;
  }

  .hamburger span{
    width:28px;
  }

  .mobile-nav{
    padding-left:18px;
    padding-right:18px;
  }

  .global-cta{
    min-height:650px;
    padding:30px 15px;
    background-position:center;
  }

  .cta-card{
    padding:25px 19px;
  }

  .cta-label{
    font-size:15px;
    letter-spacing:2px;
  }

  .cta-card h1{
    font-size:35px;
    line-height:1.06;
  }

  .book-row{
    gap:14px;
  }

  .call-circle{
    width:78px;
    height:78px;
    flex-basis:78px;
  }

  .call-circle svg{
    width:40px;
    height:40px;
  }

  .book-label{
    font-size:18px;
    letter-spacing:2px;
  }

  .phone{
    font-size:24px;
  }

  .site-footer{
    padding-left:20px;
    padding-right:20px;
  }

  .footer-social{
    gap:9px;
  }

  .footer-social a{
    width:48px;
    height:48px;
    border-radius:10px;
  }

  .latest-post img{
    height:230px;
  }

  .latest-post-body h2{
    font-size:27px;
  }

  .blog-article h2{
    font-size:31px;
  }

  .float-call,
  .float-wa,
  .float-top{
    width:56px;
    height:56px;
  }

  .float-call svg,
  .float-wa svg,
  .float-top svg{
    width:29px !important;
    height:29px !important;
  }

  .floating-actions{
    left:16px;
    bottom:16px;
  }

  .float-top{
    right:16px;
    bottom:16px;
  }

  .hero{
    min-height:460px;
  }

  .hero h2{
    font-size:33px;
  }
}
/* FLOATING BUTTONS - MOBILE ONLY */
.float-call,
.float-wa,
.float-top{
  display:none !important;
}

@media (max-width:800px){
  .float-call,
  .float-wa,
  .float-top{
    display:flex !important;
  }

  .floating-actions{
    display:flex;
    position:fixed;
    left:16px;
    bottom:16px;
    flex-direction:column;
    gap:12px;
    z-index:1200;
  }

  .float-top{
    position:fixed;
    right:16px;
    left:auto;
    bottom:16px;
  }
}
