/*contact_style.css*/
:root{
  --accent:#00c3ff;
  --dark:#0f172a;
  --bg:#f6fbfa;
  --muted:#94a3b8;
  --max-width:1200px;
}

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

body{
  font-family:Inter,system-ui,sans-serif;
  background:var(--bg);
  color:var(--dark);
  line-height:1.6;
}

.container{
  max-width:var(--max-width);
  margin:auto;
  padding:0 20px;
}

section{
  padding:80px 0;
}

h1,h2,h3{
  line-height:1.15;
}

/* HERO */
.hero{
  padding:170px 0;
  color:#fff;
  background:
    linear-gradient(rgba(15,23,42,.78),rgba(15,23,42,.82)),
    url('/assets/images/solar-power-plant-01.webp') center/cover;
}

.hero h1{
  font-size:clamp(38px,6vw,68px);
  max-width:900px;
  margin-bottom:18px;
}

.hero p{
  max-width:760px;
  font-size:20px;
  color:#e2e8f0;
  margin-bottom:28px;
}

.btn{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  padding:16px 28px;
  border-radius:10px;
  font-weight:700;
  box-shadow:0 15px 35px rgba(0,195,255,.28);
}

/* GRID */
.grid4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}

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

/* CARDS */
.card{
  background:#fff;
  padding:34px;
  border-radius:22px;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
}

.card h3{
  margin-bottom:10px;
}

.icon{
  font-size:32px;
  margin-bottom:14px;
}

.small{
  color:#64748b;
  font-size:15px;
}

/* DARK */
.section-dark{
  background:linear-gradient(135deg,#0f172a,#111827);
  color:#fff;
}

.section-dark .card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  box-shadow:none;
}

.section-dark .small{
  color:#cbd5e1;
}

/* FORM */

form{
  display:grid;
  gap:16px;
}

input,
select,
textarea{
  width:100%;
  padding:15px 16px;
  border:none;
  border-radius:10px;
  font-size:16px;
  background:#f8fafc;
}

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

button{
  border:none;
  cursor:pointer;
}

.form-status{
  margin-top:15px;
  font-weight:600;
}

.form-status.success{
  color:#22c55e;
}

.form-status.error{
  color:#ef4444;
}

.form-status.loading{
  color:#00c3ff;
}

/* PROCESS */

.step{
  background:#fff;
  padding:28px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.step span{
  font-size:42px;
  font-weight:800;
  color:#cbd5e1;
  display:block;
  margin-bottom:10px;
}

/* MAP */

iframe{
  width:100%;
  height:420px;
  border:0;
  border-radius:22px;
}

/* CTA */

.cta{
  text-align:center;
}

.cta h2{
  font-size:42px;
  margin-bottom:14px;
}

.cta p{
  max-width:760px;
  margin:0 auto 24px;
  color:#cbd5e1;
}

@media(max-width:992px){

  .grid4,
  .grid3,
  .grid2{
    grid-template-columns:1fr;
  }

  .hero{
    padding:130px 0;
  }
}
