/* ========== GLOBAL ========== */
:root{
  --brand-blue: #0471ff;
  --brand-light: #6cc9ff;
  --accent: #ffcc00;
  --body-bg: #f5f5f5;
  --text: #222;
}

*{box-sizing:border-box}
body {
  margin: 0;
  padding: 0;
  background-color: var(--body-bg);
  font-family: Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
}

/* images */
img{max-width:100%;height:auto;display:block;object-fit:cover}

/* container helper */
.container{width:95%;max-width:1100px;margin:0 auto;padding:24px 0}

/* ========== HERO ========== */
.hero-section{position:relative;width:100%;height:100vh;overflow:hidden}
.hero-img{width:100%;height:100%;object-fit:cover;object-position:center;display:block}
.hero-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  width:92%;
  color:#fff;
  z-index:10;
  padding:0 8px;
}
.hero-heading{
  font-size:57px;
  font-weight:700;
  color:var(--brand-light);
  margin:0 0 12px;
  text-shadow:0 3px 6px rgba(0,0,0,0.6);
  font-style:italic;
  line-height:1.02;
}
@media (max-width:900px){ .hero-heading{font-size:40px} }
@media (max-width:480px){ .hero-heading{font-size:28px} }

.hero-tagline{
  background:rgba(0,0,0,0.55);
  display:inline-block;
  padding:8px 14px;
  margin:6px 4px;
  border-radius:6px;
  font-size:16px;
  font-weight:700;
}
.hero-btn{display:inline-block;margin-top:18px}
.cta-btn{
  display:inline-block;padding:12px 18px;background:var(--accent);color:#000;font-weight:700;border-radius:6px;text-decoration:none;
}
.cta-btn:hover{background:#e6b800}

/* ========== MAIN HEADING / AREA TITLE ========== */
.areah1{
  font-size:45px;
  font-style:italic;
  color:var(--brand-blue);
  text-shadow:0 3px 6px #6cc9ff1f;
  font-weight:700;
  margin:16px 0;
  text-align:center;
}

/* ========== TRUST (cards) ========== */
.trust{padding:40px 20px;text-align:center}
.trust h2{font-size:1.8rem;margin-bottom:20px}
.trust-cards{display:flex;justify-content:center;gap:20px;flex-wrap:wrap}
.trust-card{width:280px;background:#fff;font-weight:700;border-radius:10px;padding:12px;box-shadow:0 2px 8px rgba(0,0,0,0.08);text-align:center}
.trust-card img{width:100%;height:180px;object-fit:cover;border-radius:6px;margin-bottom:10px}
.trustedi{background-color:var(--accent);padding:14px 22px;color:#000;font-size:1.05rem;font-weight:700;border-radius:6px}

/* ========== SERVICES ========== */
.services{padding:40px 20px;text-align:center;font-weight:700;font-style:italic}
.services h2{font-size:1.8rem}
.services ul{list-style:none;padding:0;font-size:1.1rem}
.services li{margin:8px 0}

/* ========== LOCAL SEO SECTION ========== */
.local-seo{padding:40px 20px;background:#fff;text-align:center;font-size:1rem;font-style:italic;font-weight:700}
.local-seo ul.areas{list-style:none;padding:0;font-size:1.05rem;margin-top:12px}
.local-seo ul.areas li{margin:5px 0}

/* ========== GALLERY ========== */
.gallery{padding:40px 20px;text-align:center;font-size:1.05rem}
.gallery-grid{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));margin-top:20px}
.gallery-grid img{width:100%;height:200px;object-fit:cover;border-radius:8px}

/* ========== FAQ ========== */
.faq{padding:40px 20px;background:#f0f0f0;font-size:1.05rem}
.faq h2{text-align:center;margin-bottom:20px}
.faq-item{max-width:700px;margin:0 auto 20px auto;background:#fff;padding:20px;border-radius:8px;box-shadow:0 0 6px rgba(0,0,0,0.08)}
.faq-item h3{margin-bottom:8px}

/* ========== SEO INTRO & INTERNAL LINKS ========== */
.seo-intro{padding:30px 20px;background:#fff;text-align:center;font-size:1.05rem;font-weight:700;font-style:italic;line-height:1.6;color:#333;max-width:900px;margin:0 auto}
.internal-links{padding:28px 0;text-align:center}
.internal-links ul{list-style:none;padding:0}
.internal-links li{margin:6px 0}

/* ========== FINAL CTA & FOOTER ========== */
.final-cta{text-align:center;padding:40px 20px;background:var(--accent)}
.final-cta h2{font-size:1.8rem}
.footer{text-align:center;padding:16px;background:#222;color:#fff;font-size:0.9rem}

/* small helpers */
.container-small{max-width:800px;margin:0 auto;padding:20px}

/* ============================
   SUBPAGE LAYOUT UPGRADE
   ============================ */

/* Give all sub-pages a clean card-style look */
.content, body > .container {
  background: #ffffff;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  margin-top: 20px;
  margin-bottom: 40px;
}

/* Headings more visual + on-brand */
h1, h2, h3 {
  color: var(--brand-blue);
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 38px;
  margin-bottom: 10px;
  text-align: center;
  border-bottom: 3px solid var(--brand-light);
  padding-bottom: 10px;
}

h2 {
  margin-top: 32px;
  margin-bottom: 14px;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}

/* Nicer paragraphs for readability + professionalism */
p {
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 14px 0;
}

/* Better bullet lists (SEO + UX win) */
ul {
  padding-left: 20px;
  margin: 10px 0 20px 0;
}

ul li {
  margin: 6px 0;
  padding-left: 4px;
}

/* Highlight sections such as “Overview” or cost breakdown */
section {
  margin-bottom: 34px;
  padding: 22px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

/* Internal links — cleaner & more branded */
.internal-links ul li a {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

.internal-links ul li a:hover {
  text-decoration: underline;
}

/* Make sub-page CTAs stand out (your yellow colour preserved) */
.cta-btn {
  font-size: 1.05rem;
  padding: 14px 20px;
  margin: 10px 6px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Add a subtle background band to CTA section for conversions */
.final-cta,
section:last-of-type {
  background: var(--brand-light);
  border-radius: 10px;
  padding: 36px 24px;
}

/* Improve footer spacing + style */
.footer {
  margin-top: 40px;
  border-top: 4px solid var(--brand-blue);
}


/* FIRST NEW CODE */

/* Closing Nav – Sleek Version */
.closing-nav {
    margin: 30px auto 10px;
    padding: 0;
    text-align: center;
}

.closing-boxes {
    display: flex;
    flex-direction: column;       /* stacked neatly */
    gap: 12px;
    align-items: center;
    width: 100%;
}

/* Sleek minimal clickable bars */
.closing-box {
    display: block;
    width: 90%;
    max-width: 420px;
    padding: 14px 18px;
    background: #ffffff;
    border: 2px solid var(--brand-blue);
    border-radius: 8px;
    text-decoration: none;
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.3px;
    transition: 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Hover effect – clean + premium */
.closing-box:hover {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
    transform: translateY(-3px);
}

/* Title inside each mini-box */
.closing-box h3 {
    margin: 0;
    padding: 0;
    color: inherit;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Savings H2 On Homepage */
.savings-small h2{
  font-size: 28px;
  font-style:italic;
  text-align:center;
  font-weight: 700;
text-shadow: 0 3px 6px #6cc9ff1f;
color:var(--brand-blue);
}

/* Savings Section on Homepage */
.savings-small{
text-align: center;
}

/* BLOG BETTER READABILITY 270mm */
.container h1, 
.container h2, 
.container h3 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.container p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.container ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
}
