/* ================================================================
   TRUE NORTH DRAINS — Master Stylesheet
   Premium dark-themed plumbing company site
   ================================================================ */

/* --- Custom Properties --- */
:root {
  --navy: #0A1628;
  --navy-light: #0E1B30;
  --navy-lighter: #142038;
  --navy-surface: #1A2A44;
  --white: #FFFFFF;
  --white-95: rgba(255,255,255,0.95);
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-40: rgba(255,255,255,0.4);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --red: #C41E3A;
  --red-dark: #9E1830;
  --red-glow: rgba(196,30,58,0.25);
  --grey: #8B95A5;
  --grey-light: #B0B8C6;
  --ice: #4DA8DA;
  --ice-soft: rgba(77,168,218,0.12);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container: 1200px;
  --header-h: 76px;
  --radius: 6px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset --- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden}
body{font-family:var(--font-body);font-size:1rem;color:var(--white-80);background:var(--navy);line-height:1.65;overflow-x:hidden}
a{text-decoration:none;color:inherit;transition:color var(--transition)}
ul,ol{list-style:none}
img{max-width:100%;display:block}
button{cursor:pointer;border:none;background:none;font-family:inherit;color:inherit}
input,textarea,select{font-family:inherit;font-size:inherit}

/* --- Focus --- */
:focus-visible{outline:3px solid var(--ice);outline-offset:3px;border-radius:3px}

/* --- Skip Link --- */
.skip-link{position:absolute;top:-100%;left:1rem;background:var(--red);color:var(--white);padding:0.75rem 1.25rem;border-radius:var(--radius);font-family:var(--font-heading);font-weight:600;font-size:0.85rem;z-index:200;transition:top 0.2s}
.skip-link:focus{top:1rem}

/* --- Typography --- */
h1,h2,h3,h4,h5{font-family:var(--font-heading);color:var(--white);line-height:1.15;font-weight:700}
h1{font-size:clamp(2.25rem,5vw,3.75rem);font-weight:800;letter-spacing:-0.02em}
h2{font-size:clamp(1.75rem,3.5vw,2.75rem);letter-spacing:-0.015em}
h3{font-size:clamp(1.2rem,2vw,1.45rem);font-weight:600}
h4{font-size:1.1rem;font-weight:600}
p{color:var(--grey-light);max-width:62ch}
.label{display:inline-block;font-family:var(--font-heading);font-size:0.75rem;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;color:var(--ice);margin-bottom:0.75rem}
.label-red{color:var(--red)}

/* --- Layout --- */
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 2rem}
.section{padding:3.5rem 0}
.section-alt{background:var(--navy-light)}
.section-dark{background:var(--navy-lighter)}
.sh{margin-bottom:2.5rem}
.sh.center{text-align:center}
.sh.center p{margin-inline:auto}
.sh p{margin-top:1rem}
.grid{display:grid;gap:1.5rem}
.grid-2{grid-template-columns:1fr}
.grid-3{grid-template-columns:1fr}
.grid-4{grid-template-columns:1fr}

@media(min-width:480px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:768px){
  .section{padding:6rem 0}
  .sh{margin-bottom:3.5rem}
  .grid-2{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(3,1fr)}
  .grid-4{grid-template-columns:repeat(4,1fr)}
}
@media(min-width:1024px){
  .container{padding:0 2.5rem}
  .section{padding:7rem 0}
}

/* --- Buttons --- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;padding:0.85rem 1.85rem;font-family:var(--font-heading);font-weight:600;font-size:0.85rem;letter-spacing:0.08em;text-transform:uppercase;border-radius:var(--radius);transition:var(--transition);white-space:nowrap;border:2px solid transparent}
.btn svg{width:18px;height:18px;flex-shrink:0}
.btn-red{background:var(--red);color:var(--white);border-color:var(--red)}
.btn-red:hover{background:var(--red-dark);border-color:var(--red-dark);transform:translateY(-2px);box-shadow:0 6px 24px var(--red-glow)}
.btn-outline{border-color:var(--white-60);color:var(--white)}
.btn-outline:hover{border-color:var(--white);background:var(--white-10);transform:translateY(-2px)}
.btn-white{background:var(--white);color:var(--navy)}
.btn-white:hover{background:var(--grey-light);transform:translateY(-2px)}
.btn-sm{padding:0.65rem 1.25rem;font-size:0.8rem}
.btn-lg{padding:1rem 2.5rem;font-size:0.9rem}
.btn-group{display:flex;flex-wrap:wrap;gap:1rem}

/* --- Header --- */
.header{position:fixed;top:0;left:0;width:100%;z-index:100;transition:var(--transition);background:transparent}
.header.scrolled{background:rgba(10,22,40,0.97);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);box-shadow:0 1px 0 var(--white-05)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:var(--header-h)}
.logo{display:flex;align-items:center;gap:0.65rem;z-index:101}
.logo svg{width:32px;height:32px;flex-shrink:0}
.logo-text{font-family:var(--font-heading);font-size:1.05rem;font-weight:800;letter-spacing:0.1em;text-transform:uppercase;color:var(--white)}
.logo-text span{font-weight:400;color:var(--white-80)}
.nav{display:none;margin:0 2rem}
.nav-list{display:flex;align-items:center;gap:2rem}
.nav-list a{font-family:var(--font-heading);font-size:0.78rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--white-80);position:relative;padding:0.25rem 0}
.nav-list a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--red);transition:var(--transition)}
.nav-list a:hover,.nav-list a.active{color:var(--white)}
.nav-list a:hover::after,.nav-list a.active::after{width:100%}
.header-actions{display:none;align-items:center;gap:1.25rem}
.header-phone{display:flex;align-items:center;gap:0.4rem;font-family:var(--font-heading);font-size:0.85rem;font-weight:600;color:var(--white);letter-spacing:0.02em;white-space:nowrap}
.header-phone svg{width:16px;height:16px;color:var(--red)}
.header-phone:hover{color:var(--ice)}
.btn-emergency{padding:0.4rem 0.85rem;font-size:0.68rem;background:transparent;color:var(--red);border:1.5px solid var(--red);border-radius:100px;gap:0.3rem;letter-spacing:0.06em;animation:emergency-glow 2.5s ease-in-out infinite}
.btn-emergency svg{width:13px;height:13px}
.btn-emergency:hover{background:var(--red);color:var(--white);transform:translateY(-1px)}
@keyframes emergency-glow{0%,100%{box-shadow:0 0 0 0 var(--red-glow)}50%{box-shadow:0 0 8px 2px var(--red-glow)}}

@media(min-width:1100px){
  .nav{display:block}
  .nav-list{gap:1.25rem}
  .header-actions{display:flex}
  .hamburger{display:none!important}
}
@media(min-width:1280px){
  .nav-list{gap:2rem}
}

/* --- Hamburger --- */
.hamburger{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;width:44px;height:44px;z-index:101}
.hamburger span{display:block;width:22px;height:2px;background:var(--white);border-radius:2px;transition:var(--transition)}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* --- Mobile Menu --- */
.mobile-menu{position:fixed;top:0;left:0;right:0;bottom:0;background:var(--navy);z-index:99;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:calc(var(--header-h) + 1rem) 1.5rem 2rem;overflow-y:auto;opacity:0;pointer-events:none;transition:var(--transition-slow)}
.mobile-menu.open{opacity:1;pointer-events:all}
.mobile-menu .nav-list{flex-direction:column;gap:1.75rem;text-align:center}
.mobile-menu .nav-list a{font-size:1.1rem;color:var(--white-80)}
.mobile-menu .nav-list a:hover{color:var(--white)}
.mobile-menu-phone{margin-top:2.5rem;font-family:var(--font-heading);font-size:1.3rem;font-weight:700;color:var(--white)}
.mobile-menu-phone svg{display:inline;width:20px;height:20px;vertical-align:middle;margin-right:0.4rem;color:var(--red)}
.mobile-menu .btn{margin-top:1.5rem}

/* --- Hero --- */
.hero{position:relative;min-height:100vh;min-height:100svh;display:flex;align-items:center;padding-top:var(--header-h);background:var(--navy);overflow:hidden}
.hero::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(ellipse at 70% 40%,var(--navy-lighter) 0%,var(--navy) 70%);z-index:0}
.hero-compass{position:absolute;right:-5%;top:10%;width:55vw;max-width:600px;opacity:0.03;z-index:0;pointer-events:none}
.hero-content{position:relative;z-index:1;padding-block:2.5rem 2rem}
.hero-headline{margin-bottom:1.25rem;max-width:700px}
.hero-headline .accent{color:var(--red)}
.hero-sub{font-size:1rem;color:var(--grey-light);max-width:540px;margin-bottom:2rem;line-height:1.7}
.hero .btn-group{margin-bottom:2rem}
.hero-phone{display:flex;align-items:center;gap:0.5rem;font-family:var(--font-heading);font-size:1.15rem;font-weight:700;color:var(--white);margin-bottom:1.75rem}
.hero-phone svg{width:22px;height:22px;color:var(--red)}
.hero-phone:hover{color:var(--ice)}

/* Trust Badges */
.trust-badges{display:grid;grid-template-columns:repeat(2,1fr);gap:0.75rem;padding-top:0}
.trust-badge{display:flex;align-items:center;gap:0.75rem;padding:0.75rem;background:var(--white-05);border:1px solid var(--white-10);border-radius:var(--radius)}
.trust-badge svg{width:24px;height:24px;flex-shrink:0;color:var(--ice)}
.trust-badge-text{font-family:var(--font-heading);font-size:0.75rem;font-weight:600;letter-spacing:0.04em;color:var(--white-80)}

@media(min-width:768px){
  .trust-badges{grid-template-columns:repeat(4,1fr);gap:1rem}
  .trust-badge{padding:1rem}
  .trust-badge svg{width:28px;height:28px}
  .trust-badge-text{font-size:0.8rem}
  .hero-content{padding-block:5rem 4rem}
  .hero-sub{font-size:1.15rem}
  .hero-phone{font-size:1.4rem;margin-bottom:3rem}
}

@media(max-width:767px){
  .btn-group{flex-direction:column}
  .btn-group .btn{width:100%;max-width:20rem}
}

/* --- Service Cards (Homepage) --- */
.service-card{position:relative;background:var(--navy-lighter);border:1px solid var(--white-10);border-radius:var(--radius);padding:2.5rem 2rem;transition:var(--transition);overflow:hidden}
.service-card::before{content:'';position:absolute;top:0;left:0;width:100%;height:3px;background:var(--red);transform:scaleX(0);transform-origin:left;transition:var(--transition)}
.service-card:hover{transform:translateY(-4px);border-color:var(--white-20);box-shadow:0 12px 40px rgba(0,0,0,0.3)}
.service-card:hover::before{transform:scaleX(1)}
.service-card-icon{width:52px;height:52px;display:flex;align-items:center;justify-content:center;background:var(--red-glow);border-radius:var(--radius);margin-bottom:1.5rem}
.service-card-icon svg{width:26px;height:26px;color:var(--red)}
.service-card h3{margin-bottom:0.75rem}
.service-card p{font-size:0.95rem;margin-bottom:1.5rem}
.service-card-link{font-family:var(--font-heading);font-size:0.8rem;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:var(--ice);display:inline-flex;align-items:center;gap:0.4rem}
.service-card-link svg{width:16px;height:16px;transition:transform var(--transition)}
.service-card:hover .service-card-link svg{transform:translateX(4px)}

/* --- Why Choose Us --- */
.reason{text-align:center;padding:1.5rem}
.reason-icon{width:60px;height:60px;display:flex;align-items:center;justify-content:center;margin:0 auto 1.25rem;border:2px solid var(--white-10);border-radius:50%;transition:var(--transition)}
.reason-icon svg{width:26px;height:26px;color:var(--ice)}
.reason:hover .reason-icon{border-color:var(--ice);background:var(--ice-soft)}
.reason h3{margin-bottom:0.5rem;font-size:1.1rem}
.reason p{font-size:0.9rem;margin-inline:auto}

/* --- Service Areas (Homepage) --- */
.areas-grid{display:flex;flex-wrap:wrap;gap:0.5rem;justify-content:center}
.area-tag{display:inline-block;padding:0.5rem 1rem;background:var(--white-05);border:1px solid var(--white-10);border-radius:var(--radius);font-family:var(--font-heading);font-size:0.82rem;font-weight:500;color:var(--white-60);transition:var(--transition)}
.area-tag:hover{border-color:var(--ice);color:var(--ice);background:var(--ice-soft)}

/* --- Testimonials --- */
.testimonial-card{background:var(--navy-lighter);border:1px solid var(--white-10);border-radius:var(--radius);padding:2rem;transition:var(--transition)}
.testimonial-card:hover{border-color:var(--white-20)}
.testimonial-stars{display:flex;gap:2px;margin-bottom:1rem}
.testimonial-stars svg{width:16px;height:16px;color:#F5A623;fill:#F5A623}
.testimonial-text{font-size:0.95rem;font-style:italic;color:var(--white-80);margin-bottom:1.25rem;line-height:1.7}
.testimonial-author{display:flex;align-items:center;gap:0.75rem}
.testimonial-avatar{width:40px;height:40px;border-radius:50%;background:var(--navy-surface);display:flex;align-items:center;justify-content:center;font-family:var(--font-heading);font-weight:700;font-size:0.9rem;color:var(--ice)}
.testimonial-name{font-family:var(--font-heading);font-weight:600;font-size:0.9rem;color:var(--white)}
.testimonial-location{font-size:0.8rem;color:var(--grey-light)}

/* --- Emergency CTA Banner --- */
.cta-banner{background:linear-gradient(135deg,var(--red-dark) 0%,var(--red) 100%);padding:4rem 0;text-align:center;position:relative;overflow:hidden}
.cta-banner::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.cta-banner h2{color:var(--white);margin-bottom:0.5rem}
.cta-banner p{color:rgba(255,255,255,0.85);font-size:1.05rem;margin:0 auto 1.5rem}
.cta-banner .cta-phone{display:block;font-family:var(--font-heading);font-size:clamp(1.5rem,4vw,2.5rem);font-weight:800;color:var(--white);margin-bottom:1.5rem;letter-spacing:0.02em}
.cta-banner .cta-phone:hover{opacity:0.9}
.cta-banner .btn{background:var(--white);color:var(--red);border-color:var(--white)}
.cta-banner .btn:hover{background:rgba(255,255,255,0.9);transform:translateY(-2px)}

/* --- Footer --- */
.footer{background:var(--navy);border-top:1px solid var(--white-10);padding:4rem 0 2rem}
.footer-grid{display:grid;grid-template-columns:1fr;gap:2.5rem;margin-bottom:3rem}
.footer-brand p{margin-top:1rem;font-size:0.9rem;max-width:300px}
.footer-heading{font-family:var(--font-heading);font-size:0.75rem;font-weight:700;letter-spacing:0.15em;text-transform:uppercase;color:var(--white);margin-bottom:1rem}
.footer-links a{display:block;padding:0.5rem 0;font-size:0.9rem;color:var(--grey-light)}
.footer-links a:hover{color:var(--ice)}
.footer-areas{display:flex;flex-wrap:wrap;gap:0.25rem 1rem}
.footer-areas a{font-size:0.85rem;color:var(--grey-light)}
.footer-areas a:hover{color:var(--ice)}
.footer-contact-item{display:flex;align-items:center;gap:0.5rem;margin-bottom:0.75rem;font-size:0.9rem;color:var(--grey-light)}
.footer-contact-item svg{width:16px;height:16px;color:var(--red);flex-shrink:0}
.footer-contact-item a:hover{color:var(--ice)}
.footer-contact-item a,.footer-contact-item span{overflow-wrap:break-word;word-break:break-all}
.footer-bottom{display:flex;flex-direction:column;gap:1rem;align-items:center;padding-top:2rem;border-top:1px solid var(--white-05);font-size:0.82rem;color:var(--grey-light)}
.footer-social{display:flex;gap:1rem}
.footer-social a{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:1px solid var(--white-10);border-radius:50%;color:var(--grey-light);transition:var(--transition)}
.footer-social a:hover{border-color:var(--ice);color:var(--ice);background:var(--ice-soft)}
.footer-social a svg{width:16px;height:16px}

@media(min-width:768px){
  .footer-grid{grid-template-columns:1.5fr 1fr 1fr 1fr}
  .footer-bottom{flex-direction:row;justify-content:space-between}
}

/* --- Inner Page Hero --- */
.page-hero{padding:calc(var(--header-h) + 3rem) 0 3rem;background:var(--navy-light);position:relative}
.page-hero::after{content:'';position:absolute;bottom:0;left:0;width:100%;height:1px;background:linear-gradient(90deg,transparent,var(--white-10),transparent)}
.breadcrumb{display:flex;align-items:center;gap:0.5rem;font-size:0.82rem;color:var(--grey);margin-bottom:1.25rem}
.breadcrumb a:hover{color:var(--ice)}
.breadcrumb svg{width:14px;height:14px}
.page-hero h1{margin-bottom:0.75rem}
.page-hero p{font-size:1.05rem}

@media(min-width:768px){
  .page-hero{padding:calc(var(--header-h) + 4.5rem) 0 4rem}
}

/* --- Service Detail Sections --- */
.service-detail{padding:2.5rem 0;border-bottom:1px solid var(--white-05)}
.service-detail:last-of-type{border-bottom:none}
.service-detail-inner{display:grid;grid-template-columns:1fr;gap:2rem;align-items:start}
.service-detail-icon{width:64px;height:64px;display:flex;align-items:center;justify-content:center;background:var(--red-glow);border-radius:var(--radius);flex-shrink:0}
.service-detail-icon svg{width:30px;height:30px;color:var(--red)}
.service-detail-content h3{font-size:1.35rem;margin-bottom:0.75rem}
.service-detail-content p{margin-bottom:1.5rem;line-height:1.75}
.service-detail-content ul{margin-bottom:1.5rem}
.service-detail-content li{position:relative;padding-left:1.25rem;margin-bottom:0.5rem;font-size:0.95rem;color:var(--grey-light)}
.service-detail-content li::before{content:'';position:absolute;left:0;top:0.6em;width:6px;height:6px;border-radius:50%;background:var(--red)}

@media(min-width:768px){
  .service-detail-inner{grid-template-columns:auto 1fr;gap:2.5rem}
  .service-detail{padding:5rem 0}
}

/* --- FAQ Accordion --- */
.faq-section{padding:3.5rem 0}
.faq-item{border-bottom:1px solid var(--white-10)}
.faq-question{width:100%;display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;padding:1.25rem 0;text-align:left;font-family:var(--font-heading);font-size:1rem;font-weight:600;color:var(--white);cursor:pointer;transition:color var(--transition)}
.faq-question:hover{color:var(--ice)}
.faq-question svg{width:20px;height:20px;flex-shrink:0;transition:transform var(--transition);color:var(--grey);margin-top:0.15rem}
.faq-item.open .faq-question svg{transform:rotate(45deg);color:var(--ice)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.4s ease,padding 0.4s ease}
.faq-answer-inner{padding-bottom:1.25rem;font-size:0.95rem;color:var(--grey-light);line-height:1.75}

/* --- Emergency Page --- */
.emergency-hero{padding:calc(var(--header-h) + 3rem) 0 3rem;background:linear-gradient(135deg,#1a0a0e 0%,var(--navy) 60%);text-align:center;position:relative;overflow:hidden}
.emergency-hero::before{content:'';position:absolute;top:50%;left:50%;width:600px;height:600px;transform:translate(-50%,-50%);background:radial-gradient(circle,var(--red-glow) 0%,transparent 70%);pointer-events:none}
.emergency-hero .label{color:var(--red)}
.emergency-hero h1{max-width:700px;margin-inline:auto;margin-bottom:1rem}
.emergency-phone{display:block;font-family:var(--font-heading);font-size:clamp(1.9rem,6vw,4rem);font-weight:800;color:var(--white);margin:1.5rem 0;letter-spacing:0.02em;position:relative;z-index:1}
.emergency-phone:hover{color:var(--red)}
.pulse-dot{display:inline-block;width:12px;height:12px;background:var(--red);border-radius:50%;margin-right:0.5rem;animation:pulse 2s ease infinite;vertical-align:middle}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 var(--red-glow)}50%{box-shadow:0 0 0 12px transparent}}
.steps{display:grid;grid-template-columns:1fr;gap:2rem;margin-top:3rem;text-align:center}
.step{position:relative}
.step-num{width:48px;height:48px;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;border:2px solid var(--red);border-radius:50%;font-family:var(--font-heading);font-weight:800;font-size:1.1rem;color:var(--red)}
.step h3{margin-bottom:0.5rem}
.step p{font-size:0.9rem;margin-inline:auto}

@media(min-width:768px){
  .steps{grid-template-columns:repeat(3,1fr)}
  .emergency-hero{padding:calc(var(--header-h) + 5rem) 0 4rem}
}

/* Emergency Types */
.emergency-type{background:var(--navy-lighter);border:1px solid var(--white-10);border-left:3px solid var(--red);border-radius:var(--radius);padding:1.5rem}
.emergency-type h4{margin-bottom:0.4rem}
.emergency-type p{font-size:0.9rem}

/* --- About Page --- */
.about-content{display:grid;grid-template-columns:1fr;gap:3rem}
.about-text p{margin-bottom:1rem}
.about-image-placeholder{background:var(--navy-lighter);border:1px solid var(--white-10);border-radius:var(--radius);min-height:300px;display:flex;align-items:center;justify-content:center;color:var(--grey)}
.about-image{border-radius:var(--radius);width:100%;height:auto;object-fit:cover}
.value-card{background:var(--navy-lighter);border:1px solid var(--white-10);border-radius:var(--radius);padding:2rem;text-align:center;transition:var(--transition)}
.value-card:hover{border-color:var(--white-20);transform:translateY(-2px)}
.value-card svg{width:36px;height:36px;color:var(--ice);margin:0 auto 1rem}
.value-card h3{margin-bottom:0.5rem;font-size:1.05rem}
.value-card p{font-size:0.9rem;margin-inline:auto}

@media(min-width:768px){
  .about-content{grid-template-columns:1fr 1fr;align-items:center}
}

/* --- Contact Page --- */
.contact-grid{display:grid;grid-template-columns:1fr;gap:3rem}
.form-group{margin-bottom:1.25rem}
.form-label{display:block;font-family:var(--font-heading);font-size:0.82rem;font-weight:600;letter-spacing:0.05em;text-transform:uppercase;color:var(--white-80);margin-bottom:0.5rem}
.form-input,.form-textarea,.form-select{width:100%;padding:0.85rem 1rem;background:var(--navy-lighter);border:1px solid var(--white-10);border-radius:var(--radius);color:var(--white);font-size:1rem;transition:var(--transition);outline:none}
.form-input:focus-visible,.form-textarea:focus-visible,.form-select:focus-visible{border-color:var(--ice);box-shadow:0 0 0 3px var(--ice-soft);outline:none}
.form-input::placeholder,.form-textarea::placeholder{color:var(--grey)}
.form-textarea{min-height:140px;resize:vertical}
.form-select{cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238B95A5' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center}
.form-select option{background:var(--navy);color:var(--white)}
.form-error{font-size:0.8rem;color:var(--red);margin-top:0.35rem;display:none}
.form-group.error .form-input,.form-group.error .form-textarea,.form-group.error .form-select{border-color:var(--red)}
.form-group.error .form-error{display:block}
.form-success{display:none;align-items:center;gap:0.75rem;padding:1.5rem;background:rgba(46,204,113,0.12);border:1px solid #2ecc71;border-radius:var(--radius);color:#2ecc71;font-family:var(--font-heading);font-weight:600;font-size:1.1rem;margin-top:0}
.contact-info{display:flex;flex-direction:column;gap:2rem}
.contact-info-item{display:flex;gap:1rem}
.contact-info-icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;background:var(--red-glow);border-radius:var(--radius);flex-shrink:0}
.contact-info-icon svg{width:20px;height:20px;color:var(--red)}
.contact-info-item h4{margin-bottom:0.25rem;font-size:0.95rem}
.contact-info-item p{font-size:0.9rem}
.contact-info-item a:hover{color:var(--ice)}
.map-placeholder{background:var(--navy-lighter);border:1px solid var(--white-10);border-radius:var(--radius);min-height:250px;display:flex;align-items:center;justify-content:center;color:var(--grey);margin-top:2rem;overflow:hidden}
.map-placeholder iframe{width:100%;height:100%;min-height:250px;border:0;display:block}

@media(min-width:768px){
  .contact-grid{grid-template-columns:1.2fr 0.8fr}
}

/* --- Service Areas Page --- */
.area-card{background:var(--navy-lighter);border:1px solid var(--white-10);border-radius:var(--radius);padding:1.5rem;transition:var(--transition)}
.area-card:hover{border-color:var(--ice);transform:translateY(-2px)}
.area-card h3{font-size:1rem;margin-bottom:0.35rem}
.area-card p{font-size:0.85rem}

/* --- Scroll Animations --- */
.reveal{opacity:0;transform:translateY(30px);transition:opacity 0.7s ease,transform 0.7s ease;will-change:opacity,transform}
.reveal.revealed{opacity:1;transform:translateY(0);will-change:auto}
.reveal-delay-1{transition-delay:0.1s}
.reveal-delay-2{transition-delay:0.2s}
.reveal-delay-3{transition-delay:0.3s}
.reveal-delay-4{transition-delay:0.4s}

/* --- Utility --- */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
.text-center{text-align:center}
.mt-1{margin-top:0.5rem}
.mt-2{margin-top:1rem}
.mt-3{margin-top:1.5rem}
.mt-4{margin-top:2rem}
.mb-2{margin-bottom:1rem}
.mb-3{margin-bottom:1.5rem}

/* --- Back to Top --- */
.back-to-top{position:fixed;bottom:2rem;right:2rem;width:44px;height:44px;display:flex;align-items:center;justify-content:center;background:var(--red);border-radius:50%;color:var(--white);z-index:50;opacity:0;pointer-events:none;transition:var(--transition);box-shadow:0 4px 16px var(--red-glow)}
.back-to-top.visible{opacity:1;pointer-events:all}
.back-to-top:hover{transform:translateY(-2px);background:var(--red-dark)}
.back-to-top svg{width:20px;height:20px}

/* --- Emergency Sticky Bar (mobile only) --- */
.emergency-bar{display:none;position:fixed;bottom:0;left:0;right:0;z-index:90;background:var(--red);padding:0.6rem 1.25rem;align-items:center;justify-content:space-between;gap:0.75rem;box-shadow:0 -4px 20px rgba(0,0,0,0.4)}
.emergency-bar-pulse{width:8px;height:8px;border-radius:50%;background:var(--white);flex-shrink:0;animation:bar-pulse 2s ease infinite}
@keyframes bar-pulse{0%,100%{box-shadow:0 0 0 0 rgba(255,255,255,0.5)}50%{box-shadow:0 0 0 6px transparent}}
.emergency-bar-text{font-family:var(--font-heading);font-size:0.85rem;font-weight:700;color:var(--white);letter-spacing:0.03em;white-space:nowrap}
.emergency-bar-btn{display:inline-flex;align-items:center;gap:0.4rem;padding:0.5rem 1.1rem;background:var(--white);color:var(--red);font-family:var(--font-heading);font-size:0.78rem;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;border-radius:var(--radius);white-space:nowrap;transition:var(--transition)}
.emergency-bar-btn svg{width:15px;height:15px}
.emergency-bar-btn:hover{background:rgba(255,255,255,0.9)}

/* --- Emergency Floating Button (mobile only) --- */
.emergency-fab{position:fixed;bottom:2rem;left:1.25rem;width:52px;height:52px;display:none;align-items:center;justify-content:center;background:var(--red);border-radius:50%;color:var(--white);z-index:89;opacity:0;pointer-events:none;transition:var(--transition);box-shadow:0 4px 20px var(--red-glow)}
.emergency-fab svg{width:22px;height:22px}
.emergency-fab.visible{opacity:1;pointer-events:all}
.emergency-fab:hover{transform:translateY(-2px);background:var(--red-dark);box-shadow:0 6px 28px var(--red-glow)}

@media(max-width:1099px){
  .emergency-bar{display:flex}
  .emergency-fab{display:flex}
  /* offset back-to-top so it doesn't overlap the bar */
  .back-to-top{bottom:5rem}
}

/* when fab is visible, hide the bar to avoid clutter */
.emergency-bar.hidden{transform:translateY(100%);pointer-events:none;transition:transform 0.3s ease}

/* --- Reduced Motion --- */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:0.01ms!important;animation-iteration-count:1!important;transition-duration:0.01ms!important}
  .reveal{opacity:1;transform:none}
}
