/* Delta Cleaners — style.css */
:root{
  --navy:#252C70;--navy-light:#2e3580;--white:#ffffff;--off-white:#f7f7f5;
  --gold:#c5a258;--gold-light:#d4b976;--text:#2c2c2c;--text-light:#5a5a5a;
  --max-w:1140px;--radius:6px;
  --font:system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font);color:var(--text);line-height:1.6;background:var(--white)}
img{max-width:100%;height:auto;display:block}
a{color:var(--gold);text-decoration:none;transition:color .2s}
a:hover{color:var(--gold-light)}

/* Skip nav */
.skip-nav{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;z-index:100}
.skip-nav:focus{position:fixed;top:0;left:0;width:auto;height:auto;padding:12px 24px;background:var(--gold);color:var(--navy);font-weight:700;z-index:9999}

/* Utility */
.container{width:90%;max-width:var(--max-w);margin:0 auto}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* ---- HEADER / NAV ---- */
.site-header{background:var(--navy);position:sticky;top:0;z-index:50;box-shadow:0 2px 8px rgba(0,0,0,.25)}
.site-header .container{display:flex;align-items:center;justify-content:space-between;padding:.75rem 5%}
.logo{color:var(--white);font-size:1.35rem;font-weight:700;letter-spacing:.02em;line-height:1.2;display:flex;align-items:center;gap:.5rem}
.logo-img{height:52px;width:auto}
.logo-text{display:none}
.logo span{color:var(--gold);display:block;font-size:.65em;font-weight:400;letter-spacing:.08em;text-transform:uppercase}

/* Desktop nav */
.main-nav{display:flex;gap:1.5rem;list-style:none;align-items:center}
.main-nav a{color:var(--white);font-size:.9rem;font-weight:500;padding:.35rem 0;border-bottom:2px solid transparent;transition:border-color .2s,color .2s;white-space:nowrap}
.main-nav a:hover,.main-nav a[aria-current="page"]{border-color:var(--gold);color:var(--gold)}

/* Hamburger */
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:6px}
.nav-toggle span{display:block;width:26px;height:3px;background:var(--white);margin:5px 0;border-radius:2px;transition:transform .3s,opacity .3s}

@media(max-width:860px){
  .nav-toggle{display:block}
  .main-nav{display:none;flex-direction:column;position:absolute;top:100%;left:0;right:0;background:var(--navy);padding:1rem 5%;gap:.5rem;box-shadow:0 4px 12px rgba(0,0,0,.3)}
  .main-nav.open{display:flex}
  .main-nav a{padding:1rem 0;font-size:1.8rem}
}

/* ---- HERO ---- */
.hero{background:var(--navy);color:var(--white);padding:4rem 0 3.5rem;text-align:center}
.hero h1{font-size:clamp(1.8rem,5vw,2.8rem);line-height:1.2;margin-bottom:.75rem}
.hero p{font-size:clamp(1rem,2.5vw,1.2rem);color:rgba(255,255,255,.8);max-width:640px;margin:0 auto 1.5rem}
.hero .btn{margin:.35rem}

/* ---- BUTTONS ---- */
.btn{display:inline-block;padding:.75rem 1.75rem;border-radius:var(--radius);font-weight:600;font-size:.95rem;transition:background .2s,transform .1s;cursor:pointer;border:none}
.btn:focus-visible{outline:3px solid var(--gold);outline-offset:3px}
.btn-gold{background:var(--gold);color:var(--navy)}
.btn-gold:hover{background:var(--gold-light);color:var(--navy);transform:translateY(-1px)}
.btn-outline{background:transparent;color:var(--white);border:2px solid var(--gold)}
.btn-outline:hover{background:var(--gold);color:var(--navy)}

/* ---- SPECIALS BANNER ---- */
.specials-banner{background:var(--gold);color:var(--navy);text-align:center;padding:1rem 5%;font-weight:600;font-size:.95rem}
.specials-banner a{color:var(--navy);text-decoration:underline;font-weight:700}

/* ---- SECTIONS ---- */
.section{padding:4rem 0}
.section--alt{background:var(--off-white)}
.section h2{font-size:clamp(1.4rem,3.5vw,2rem);color:var(--navy);margin-bottom:1rem}
.section h3{font-size:1.15rem;color:var(--navy);margin-bottom:.5rem}
.section p,.section li{color:var(--text-light);line-height:1.7}
.section ul{padding-left:1.25rem}
.section ul li{margin-bottom:.5rem}

/* Two-col layout */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:start}
@media(max-width:700px){.grid-2{grid-template-columns:1fr}}

/* Service cards */
.service-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem;margin-top:1.5rem}
.service-card{background:var(--white);border:1px solid #e5e5e5;border-radius:var(--radius);padding:1.75rem;transition:box-shadow .2s}
.service-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.08)}
.service-card h3{margin-bottom:.5rem}
.service-card a{font-weight:600;display:inline-block;margin-top:.75rem}

/* Process steps */
.steps{counter-reset:step;list-style:none;padding:0;margin-top:1.5rem}
.steps li{counter-increment:step;padding-left:2.75rem;position:relative;margin-bottom:1.25rem}
.steps li::before{content:counter(step);position:absolute;left:0;top:0;width:2rem;height:2rem;background:var(--gold);color:var(--navy);border-radius:50%;font-weight:700;font-size:.85rem;display:flex;align-items:center;justify-content:center}

/* Coupon box */
.coupon{background:var(--gold);color:var(--navy);border-radius:var(--radius);padding:2.5rem;text-align:center;max-width:480px;margin:2rem auto;border:3px dashed var(--navy)}
.coupon .discount{font-size:2.5rem;font-weight:800;color:var(--navy);margin-bottom:.25rem}
.coupon .details{font-size:1.1rem;margin-bottom:1rem}
.coupon .fine-print{font-size:.75rem;color:rgba(37,44,112,.6);margin-top:1rem}

/* Trust / stats */
.stats{display:flex;gap:2rem;justify-content:center;flex-wrap:wrap;margin-top:1.5rem}
.stat{text-align:center}
.stat strong{display:block;font-size:2rem;color:var(--gold)}

/* ---- CONTACT FORM ---- */
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-weight:600;margin-bottom:.35rem;color:var(--navy)}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:.7rem .9rem;border:1px solid #ccc;border-radius:var(--radius);font-size:1rem;font-family:inherit;transition:border-color .2s}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(197,162,88,.25)}
.form-group textarea{resize:vertical;min-height:120px}
.form-status{padding:1rem;border-radius:var(--radius);margin-top:1rem;display:none}
.form-status.success{display:block;background:#e8f5e9;color:#2e7d32}
.form-status.error{display:block;background:#fce4ec;color:#c62828}

/* Map */
.map-wrap{margin-top:1.5rem;border-radius:var(--radius);overflow:hidden;position:relative;padding-bottom:56.25%;height:0}
.map-wrap iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}

/* ---- FOOTER ---- */
.site-footer{background:var(--navy);color:rgba(255,255,255,.7);padding:3rem 0 1.5rem}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem;margin-bottom:2rem}
.site-footer h4{color:var(--white);margin-bottom:.75rem;font-size:1rem}
.site-footer a{color:rgba(255,255,255,.7)}
.site-footer a:hover{color:var(--gold)}
.site-footer ul{list-style:none}
.site-footer li{margin-bottom:.4rem}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:1.25rem;text-align:center;font-size:.85rem}

/* Focus visible */
:focus-visible{outline:3px solid var(--gold);outline-offset:2px}

/* Page hero with background image */
.page-hero-img{background-size:cover;background-position:center;position:relative}
.page-hero-img::before{content:'';position:absolute;inset:0;background:rgba(37,44,112,0.88)}
.page-hero-img .container{position:relative;z-index:1}

/* Content images */
.content-img{width:100%;max-width:600px;border-radius:var(--radius);margin:1.5rem auto;display:block}

/* Text with side image */
.text-with-image{display:flex;gap:2rem;align-items:center}
.text-with-image img{flex:0 0 35%;max-width:35%;border-radius:var(--radius)}
@media(max-width:768px){.text-with-image{flex-direction:column}.text-with-image img{max-width:100%}}

/* Header brand */
.header-brand{display:flex;flex-direction:column;gap:2px;align-items:center}
.header-contact{display:flex;gap:1.2rem;font-size:1.2rem;color:#c5a258;letter-spacing:.02em;font-weight:600;white-space:nowrap}
.header-contact span{color:#c5a258}
.header-contact a{color:#c5a258}
@media(max-width:1024px){.main-nav{gap:.8rem}.header-contact{font-size:1rem}.logo-img{height:46px}}
@media(max-width:860px){.main-nav a{font-size:1.3rem !important;padding:.85rem 0}}
@media(max-width:768px){.logo-img{height:44px}.header-contact{font-size:.95rem;gap:.5rem}}

/* Print */
@media print{.site-header,.site-footer,.specials-banner,.nav-toggle{display:none}}
.reveal.will-animate{opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease}.reveal.visible{opacity:1;transform:translateY(0)}
