/*
Theme Name: Nuts & Volts Adelaide Hills Landing Page
Theme URI: https://contact.nutsandvoltselectrical.com.au/adlhills
Author: Nuts & Volts Electrical
Description: Conversion-focused Adelaide Hills electrician landing page theme.
Version: 1.0.0
License: GPL v2 or later
Text Domain: nuts-volts-adelaide-hills
*/

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:#0f172a;
  color:#fff;
  line-height:1.6;
}

a{
  text-decoration:none;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.topbar{
  background:#2563eb;
  padding:12px;
  text-align:center;
  font-weight:700;
  font-size:14px;
}

.topbar a{
  color:#fff;
}

.site-header{
  padding:24px 0;
  position:sticky;
  top:0;
  background:rgba(15,23,42,0.95);
  backdrop-filter:blur(10px);
  z-index:999;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:28px;
  font-weight:800;
  color:#fff;
}

.logo span{
  color:#3b82f6;
}

.hero{
  padding:90px 0 70px;
  position:relative;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:50px;
  align-items:center;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(59,130,246,0.15);
  color:#93c5fd;
  padding:10px 18px;
  border-radius:999px;
  margin-bottom:25px;
  font-size:14px;
  border:1px solid rgba(59,130,246,0.3);
}

h1{
  font-size:62px;
  line-height:1.05;
  margin-bottom:24px;
  font-weight:800;
}

.hero p{
  font-size:20px;
  color:#cbd5e1;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  padding:18px 28px;
  border-radius:14px;
  font-weight:700;
  transition:0.3s;
  display:inline-block;
}

.btn-primary{
  background:#2563eb;
  color:#fff;
  box-shadow:0 10px 30px rgba(37,99,235,0.35);
}

.btn-primary:hover{
  transform:translateY(-2px);
  background:#1d4ed8;
  color:#fff;
}

.btn-secondary{
  border:1px solid rgba(255,255,255,0.15);
  color:#fff;
  background:rgba(255,255,255,0.04);
}

.btn-secondary:hover{
  background:rgba(255,255,255,0.08);
  color:#fff;
}

.trust-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  margin-top:40px;
}

.trust-box{
  background:#111c34;
  border:1px solid rgba(255,255,255,0.06);
  padding:18px;
  border-radius:16px;
  text-align:center;
}

.trust-box strong{
  display:block;
  font-size:22px;
  margin-bottom:5px;
}

.form-card{
  background:#111827;
  padding:35px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 20px 60px rgba(0,0,0,0.4);
}

.form-card h3{
  font-size:30px;
  margin-bottom:10px;
}

.form-card p{
  font-size:15px;
  color:#cbd5e1;
  margin-bottom:25px;
}

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

input,
textarea{
  width:100%;
  padding:16px;
  border-radius:12px;
  border:none;
  background:#1e293b;
  color:#fff;
  font-size:15px;
}

textarea{
  min-height:120px;
  resize:vertical;
}

.submit-btn{
  width:100%;
  border:none;
  cursor:pointer;
}

section{
  padding:90px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:46px;
  margin-bottom:16px;
}

.section-title p{
  color:#cbd5e1;
  max-width:750px;
  margin:auto;
}

.services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.service-card{
  background:#111827;
  padding:30px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.06);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-6px);
  border-color:#2563eb;
}

.service-card h3{
  margin-bottom:14px;
  font-size:24px;
}

.service-card p{
  color:#cbd5e1;
}

.reviews{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.review{
  background:#111827;
  padding:28px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.06);
}

.stars{
  color:#facc15;
  margin-bottom:14px;
  font-size:20px;
}

.review h4{
  margin-top:18px;
  color:#93c5fd;
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.step{
  background:#111827;
  padding:28px;
  border-radius:18px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.06);
}

.step-number{
  width:60px;
  height:60px;
  border-radius:50%;
  background:#2563eb;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto auto 18px;
  font-size:24px;
  font-weight:800;
}

.cta-section{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  border-radius:32px;
  padding:70px;
  text-align:center;
}

.cta-section h2{
  font-size:52px;
  margin-bottom:20px;
}

.cta-section p{
  font-size:20px;
  margin-bottom:35px;
  color:#dbeafe;
}

.site-footer{
  padding:40px 0;
  text-align:center;
  color:#94a3b8;
  border-top:1px solid rgba(255,255,255,0.06);
}

.floating-call{
  position:fixed;
  bottom:25px;
  right:25px;
  background:#2563eb;
  color:#fff;
  padding:18px 24px;
  border-radius:999px;
  font-weight:800;
  font-size:16px;
  box-shadow:0 12px 35px rgba(37,99,235,0.45);
  z-index:9999;
  display:flex;
  align-items:center;
  gap:10px;
  transition:0.3s ease;
  animation:pulse 2s infinite;
}

.floating-call:hover{
  transform:translateY(-3px) scale(1.03);
  background:#1d4ed8;
  color:#fff;
}

@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(37,99,235,0.7); }
  70%{ box-shadow:0 0 0 18px rgba(37,99,235,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,99,235,0); }
}

@media(max-width:992px){
  .hero-grid,
  .services,
  .reviews,
  .steps{
    grid-template-columns:1fr;
  }

  h1{
    font-size:44px;
  }

  .trust-row{
    grid-template-columns:1fr;
  }

  .cta-section{
    padding:40px 25px;
  }

  .cta-section h2{
    font-size:38px;
  }
}

@media(max-width:768px){
  .floating-call{
    left:15px;
    right:15px;
    bottom:15px;
    justify-content:center;
    font-size:18px;
    padding:18px;
  }

  .site-footer{
    padding-bottom:90px;
  }
}
