:root{
  --bg:#e3e6e6;
  --ink:#0b1220;
  --muted:#334155;
  --panel:#0b0f14;
  --accent:#173a2f;
  --accent-2:#1f6f59;
  --footer:#1b1f22;
  --pink:#ff4d7d;
  --radius:999px;
  --max:1200px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--ink);background:var(--bg);}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}

/* Header */
.header{
  position:sticky; top:0; z-index:20;
  background:rgba(227,230,230,.96);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid rgba(15,23,42,.18);
}
.header-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:14px 0;
  gap:12px;
}
.brand{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  line-height:1.05;
  text-align:center;
}
.brand .top{font-weight:900;letter-spacing:.5px;font-size:56px}
.brand .mid{font-weight:900;letter-spacing:2px;font-size:20px;margin-top:2px}
.brand .tag{font-style:italic;font-weight:800;font-size:28px;opacity:.92;margin-top:4px;text-shadow:0 4px 10px rgba(0,0,0,.18)}

.nav{
  display:flex;gap:26px;align-items:center;
  font-size:16px;
  justify-content:flex-start;
}
.nav a{padding:8px 2px;color:#111827}
.nav a:hover{text-decoration:underline}
.nav a.active{text-decoration:underline;text-underline-offset:6px;font-weight:600}

/* Mobile menu */
.menu-btn{
  display:none;
  border:1px solid rgba(15,23,42,.22);
  background:rgba(255,255,255,.55);
  border-radius:12px;
  padding:8px 10px;
  font-weight:700;
}
.mobile-drawer{
  display:none;
  padding:10px 0 14px;
  border-top:1px solid rgba(15,23,42,.14);
}
.mobile-drawer a{display:block;padding:10px 12px;border-radius:12px;color:#111827}
.mobile-drawer a:hover{background:rgba(15,23,42,.06)}
.mobile-drawer a.active{background:rgba(15,23,42,.08);font-weight:700}

@media (max-width: 980px){
  .brand .top{font-size:44px}
  .brand .mid{font-size:16px}
  .brand .tag{font-size:22px}
  .nav{gap:18px;font-size:15px}
}

@media (max-width: 820px){
  .header-inner{display:flex;align-items:center;justify-content:space-between;}
  .nav{display:none}
  .menu-btn{display:inline-flex;gap:8px;align-items:center}
}


/* Hero (Home) */
.hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  overflow:hidden;
  border-bottom:1px solid rgba(15,23,42,.14);
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.50), rgba(0,0,0,.20) 42%, rgba(0,0,0,.55)),
    url("assets/img/Main%20Page%20Image.webp") center/cover no-repeat;
  transform:scale(1.02);
}
.hero-inner{position:relative;width:100%;padding:54px 0 46px;text-align:center;}

.hero-logo{
  display:inline-block;
  line-height:1.02;
  text-align:center;
  text-shadow:0 2px 0 rgba(0,0,0,.8);
}
.hero-logo .top{font-weight:900;letter-spacing:.5px;font-size:64px}
.hero-logo .mid{font-weight:900;letter-spacing:2px;font-size:18px;margin-top:2px}
.hero-logo .tag{font-style:italic;font-weight:800;font-size:18px;opacity:.95;margin-top:4px}

.hero-lines{
  margin:18px auto 14px;
  max-width:920px;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(0,0,0,.38);
  box-shadow:0 10px 30px rgba(0,0,0,.28);
}
.hero-lines .line{font-weight:800;font-size:22px;text-shadow:0 2px 0 rgba(0,0,0,.65);}
.hero-lines .highlight{display:inline-block;padding:0;border-radius:12px;background:none;}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:16px 26px;border-radius:var(--radius);
  font-weight:800;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(23,58,47,.92);
  color:white;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
  font-size:20px;
  min-width:280px;
}
.btn:hover{background:rgba(31,111,89,.96)}
.btn.btn-dark{
  background:#000;
  border-color:rgba(255,255,255,.08);
}
.btn.btn-dark:hover{background:#111}

@media (max-width: 620px){
  .hero{min-height:76vh}
  .hero-logo .top{font-size:50px}
  .hero-lines .line{font-size:18px}
  .btn{font-size:18px;min-width:240px}
}

/* Sections */
.section{padding:56px 0;}
.section.dark{background:#000;color:white;}
.center{text-align:center}

.h1{font-size:clamp(34px,7vw,74px);margin:0 0 14px;line-height:1.05;font-weight:300;letter-spacing:.2px;overflow-wrap:anywhere;word-break:normal;}

.p{max-width:900px;margin:0 auto 22px;font-size:16px;line-height:1.55;}
.p.dark{color:rgba(255,255,255,.82)}
.p.light{color:#111827;opacity:.95}

.kicker{font-size:16px;font-weight:700;text-align:center;margin:0;padding:8px 0;background:rgba(255,255,255,.9);border-top:1px solid rgba(15,23,42,.14);border-bottom:1px solid rgba(15,23,42,.14)}

/* Service / About layouts */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:start;}
@media (max-width: 980px){.two-col{grid-template-columns:1fr;gap:22px;}}

.service-block{max-width:520px;margin:0 auto 0;}
.service-block img{border-radius:0;width:100%;height:260px;object-fit:cover;display:block;}
.service-block h3{margin:10px 0 10px;font-size:20px;text-decoration:underline;text-underline-offset:4px;}
.service-block p{margin:0 0 14px;color:#111827;font-size:16px;line-height:1.45;}

/* Contact form */
.form-wrap{display:grid;grid-template-columns:1fr 1.1fr;gap:44px;align-items:start;}
@media (max-width: 980px){.form-wrap{grid-template-columns:1fr;}}

label{display:block;font-size:14px;font-weight:700;margin:0 0 6px;color:#111827}
label .req{font-weight:500;color:#111827;opacity:.65;margin-left:6px;font-size:13px}
input,textarea{
  width:100%;
  padding:14px 14px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.30);
  background:rgba(227,230,230,.35);
  font:inherit;
}
textarea{border-radius:18px;min-height:150px;resize:vertical}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
@media (max-width: 680px){.form-row{grid-template-columns:1fr;}}

/* Footer */
.footer{
  background:linear-gradient(to bottom, #1f2427, #14181a);
  color:rgba(255,255,255,.9);
  border-top:1px solid rgba(255,255,255,.14);
}
.footer-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:18px;
  align-items:center;
  padding:20px 0;
  font-size:15px;
}
@media (max-width: 980px){
  .footer-inner{grid-template-columns:1fr;justify-items:center;text-align:center;}
}

.footer-left .dot{color:var(--pink);margin-right:8px}
.footer-left{justify-self:start}
.footer-right{justify-self:end;text-align:right}
@media (max-width: 980px){
  .footer-left,.footer-right{justify-self:center;text-align:center}
}

.social{display:flex;gap:14px;align-items:center;justify-content:center}
.social a{
  width:52px;height:52px;border-radius:10px;
  background:rgba(255,255,255,.92);
  display:inline-flex;align-items:center;justify-content:center;
  box-shadow:0 10px 22px rgba(0,0,0,.22);
}
.social img{width:22px;height:22px}

.phone-ico{color:var(--pink);margin-right:10px}



/* Pay Bill */
.pay-layout{display:grid;grid-template-columns:1.5fr .8fr;gap:44px;align-items:start;}
@media (max-width: 980px){.pay-layout{grid-template-columns:1fr;gap:22px;}}
.pay-form{background:#fff;border:1px solid rgba(15,23,42,.18);padding:22px;border-radius:10px;}
.card-box{margin-top:14px;padding:14px;border:1px solid rgba(15,23,42,.12);border-radius:10px;background:#f8fafc;}
.card-box-title{font-weight:700;margin-bottom:6px;}
.form-row{margin-bottom:14px;}
.form-row label{display:block;font-weight:600;margin-bottom:6px;}
.form-row input, .form-row select, .form-row textarea{width:100%;padding:12px 12px;border:1px solid rgba(15,23,42,.22);border-radius:8px;font-size:16px;}
.form-row.two{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.form-row.three{display:grid;grid-template-columns:1fr 0.6fr 0.6fr;gap:14px;}
@media (max-width: 640px){.form-row.two,.form-row.three{grid-template-columns:1fr;}}
.pay-aside.card{padding:18px;border-radius:10px;border:1px solid rgba(15,23,42,.18);background:#fff;}
.contact-lines a{color:#111827;text-decoration:none;}
.contact-lines a:hover{text-decoration:underline;}


/* Mobile headline tweak: prevent long words from clipping on small screens */
@media (max-width: 430px){
  .h1{font-size:clamp(26px,6.2vw,44px);line-height:1.12;}
}


/* Legal pages */
.legal-links{margin-top:10px;font-size:14px;display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.legal-links span{opacity:.5}
.footer .legal-links a{color:#fff;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.3)}
.footer .legal-links a:hover{border-bottom-color:#fff}
.legal-shell{max-width:900px;margin:0 auto;background:#fff;border:1px solid rgba(15,23,42,.12);border-radius:16px;padding:28px;box-shadow:0 16px 40px rgba(15,23,42,.06)}
.legal-shell h1{margin-top:0;color:#111827}
.legal-shell h2{margin:26px 0 10px;color:#111827;font-size:22px}
.legal-shell p,.legal-shell li{color:#334155;font-size:16px;line-height:1.65}
.legal-shell ul{padding-left:22px;margin:10px 0}
.legal-note{font-size:14px;color:#475569}
@media (max-width: 680px){.legal-shell{padding:20px}}
