/* A&A Plumbing - Brand: #0761b6 primary, #00007a secondary, #ffeb3b accent */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800&display=swap');

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

:root {
  --primary: #0761b6;
  --primary-dark: #054e91;
  --secondary: #00007a;
  --accent: #ffeb3b;
  --accent-dark: #f5d800;
  --text: #1a1a2e;
  --text-muted: #5a6475;
  --light: #f4f7fb;
  --white: #ffffff;
  --border: #d8e4f0;
  --shadow: 0 4px 24px rgba(7,97,182,.12);
  --shadow-lg: 0 12px 48px rgba(7,97,182,.2);
  --radius: 10px;
  --radius-lg: 18px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--accent); color: var(--text); padding: .5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 700; text-decoration: none; z-index: 999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* NAVIGATION */
header { position: sticky; top: 0; z-index: 100; background: var(--secondary); box-shadow: 0 2px 16px rgba(0,0,60,.3); }
nav { max-width: 1200px; margin: 0 auto; padding: .75rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.75rem; color: var(--white); letter-spacing: .05em; line-height: 1; }
.nav-logo-text span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-links a { display: block; padding: .5rem .85rem; color: rgba(255,255,255,.85); text-decoration: none; font-weight: 600; font-size: .95rem; border-radius: var(--radius); transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--accent); background: rgba(255,235,59,.08); }
.nav-cta { background: var(--accent) !important; color: var(--text) !important; font-weight: 800 !important; border-radius: var(--radius) !important; padding: .5rem 1.2rem !important; }
.nav-cta:hover { background: var(--accent-dark) !important; color: var(--text) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; border-radius: var(--radius); }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: .3s; border-radius: 2px; }
.hamburger:focus-visible { outline: 2px solid var(--accent); }
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: var(--secondary); flex-direction: column; align-items: flex-start; padding: 0 1.5rem; gap: .25rem; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
  .nav-links.open { max-height: 400px; padding: 1rem 1.5rem; }
  .nav-links a { width: 100%; }
}

/* HERO */
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; justify-content: center; background: var(--secondary); overflow: hidden; text-align: center; padding: 4rem 1.5rem; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1624101910729-b4f4371ff265?w=1200&h=600&fit=crop&auto=format'); background-size: cover; background-position: center; opacity: .2; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary)); }
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-badge { display: inline-block; background: var(--accent); color: var(--text); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1.25rem; }
.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.5rem, 10vw, 7rem); color: var(--white); line-height: .95; letter-spacing: .02em; margin-bottom: .5rem; }
.hero h1 em { color: var(--accent); font-style: normal; display: block; }
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,.82); max-width: 560px; margin: 1.25rem auto 2.25rem; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .875rem; justify-content: center; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .875rem 1.75rem; border-radius: var(--radius); font-weight: 800; font-family: 'Nunito', sans-serif; font-size: 1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: transform .2s, box-shadow .2s, background .2s, color .2s; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn-primary { background: var(--accent); color: var(--text); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-blue { background: var(--primary); color: var(--white); }
.btn-blue:hover { background: var(--primary-dark); }

/* SECTIONS */
.section { padding: 5rem 1.5rem; }
.section-light { background: var(--light); }
.section-dark { background: var(--secondary); color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label { display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--primary); background: rgba(7,97,182,.1); padding: .3rem .8rem; border-radius: 999px; margin-bottom: .75rem; }
.section-dark .section-label { color: var(--accent); background: rgba(255,235,59,.12); }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.05; color: var(--text); letter-spacing: .03em; }
.section-dark .section-title { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--text-muted); margin-top: .75rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.section-dark .section-desc { color: rgba(255,255,255,.7); }

/* STATS BAND */
.stats-band { background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%); padding: 3.5rem 1.5rem; }
.stats-grid { max-width: 900px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem 5rem; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; line-height: 1; color: var(--accent); display: block; }
.stat-label { display: block; font-size: .75rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: .25rem; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 54px; height: 54px; border-radius: 14px; background: rgba(7,97,182,.1); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: background .3s, color .3s; }
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .04em; color: var(--text); margin-bottom: .5rem; }
.service-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.65; }

/* WHY CHOOSE */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.25rem; }
.why-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 1.75rem; transition: background .2s, border-color .2s; }
.why-item:hover { background: rgba(255,255,255,.1); border-color: var(--accent); }
.why-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent); color: var(--text); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-icon svg { width: 24px; height: 24px; }
.why-item h3 { font-weight: 800; color: var(--white); font-size: 1.05rem; margin-bottom: .4rem; }
.why-item p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* TESTIMONIAL CAROUSEL */
.tc-wrapper { position: relative; max-width: 760px; margin: 0 auto; overflow: hidden; min-height: 200px; }
.tc-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tc-slide { min-width: 100%; padding: 2.5rem 2rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
.tc-quote { font-size: 1.12rem; line-height: 1.8; color: var(--text); font-style: italic; position: relative; }
.tc-quote::before { content: '\201C'; font-family: 'Bebas Neue', sans-serif; font-size: 6rem; color: var(--primary); opacity: .12; position: absolute; top: -2rem; left: 50%; transform: translateX(-50%); line-height: 1; }
.tc-author { margin-top: 1.25rem; font-weight: 800; color: var(--primary); font-size: .95rem; }
.tc-stars { color: var(--accent-dark); font-size: 1.1rem; margin-top: .25rem; letter-spacing: 2px; }
.tc-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.tc-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--border); cursor: pointer; transition: background .3s, transform .3s; }
.tc-dot.active { background: var(--primary); transform: scale(1.4); }

/* PAGE HERO BANNER */
.page-hero { background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%); padding: 4rem 1.5rem 3.5rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); color: var(--white); letter-spacing: .04em; margin-bottom: .5rem; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: .4rem; font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.breadcrumb a { color: var(--accent); text-decoration: none; font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: .4; }

/* ABOUT */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.about-img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--accent); color: var(--text); font-weight: 800; padding: .6rem 1.2rem; border-radius: var(--radius); font-size: .9rem; line-height: 1.3; }
.about-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--text); letter-spacing: .04em; margin-bottom: 1.25rem; }
.about-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; font-size: 1.02rem; }
.founder-info { display: flex; align-items: center; gap: 1rem; background: var(--light); border-radius: var(--radius); padding: 1rem 1.25rem; margin-top: 1.5rem; border-left: 4px solid var(--primary); }
.founder-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; flex-shrink: 0; }
.founder-name { font-weight: 800; color: var(--text); font-size: 1rem; }
.founder-title { font-size: .85rem; color: var(--text-muted); }
@media (max-width: 768px) { .about-split { grid-template-columns: 1fr; gap: 2rem; } }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: flex-start; }
.contact-info-card { background: linear-gradient(135deg, var(--secondary), var(--primary)); border-radius: var(--radius-lg); padding: 2.5rem; color: var(--white); }
.contact-info-card h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: .04em; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,235,59,.15); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: .2rem; font-weight: 700; }
.contact-item-value { font-weight: 700; color: var(--white); font-size: 1rem; line-height: 1.4; }
.contact-item-value a { color: var(--accent); text-decoration: none; }
.contact-item-value a:hover { text-decoration: underline; }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form-card h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: .04em; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: .4rem; }
input, select, textarea { width: 100%; padding: .75rem 1rem; border: 2px solid var(--border); border-radius: var(--radius); font-family: 'Nunito', sans-serif; font-size: 1rem; color: var(--text); background: var(--white); transition: border-color .2s, box-shadow .2s; appearance: none; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(7,97,182,.12); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1.05rem; }
.form-success { display: none; text-align: center; padding: 2rem; background: rgba(7,97,182,.07); border-radius: var(--radius); border: 1px solid rgba(7,97,182,.2); color: var(--primary); font-weight: 700; }
.form-success svg { width: 40px; height: 40px; margin: 0 auto .75rem; display: block; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { cursor: pointer; font-weight: 700; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; color: var(--text); transition: color .2s; }
.faq-item summary:hover, .faq-item[open] summary { color: var(--primary); }
.faq-chevron { transition: transform .3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-body { padding: .25rem 0 1rem; color: var(--text-muted); line-height: 1.75; font-size: .97rem; }

/* BEFORE/AFTER */
.ba-slider { position: relative; overflow: hidden; max-width: 700px; margin: 0 auto; border-radius: var(--radius-lg); aspect-ratio: 16/10; user-select: none; box-shadow: var(--shadow-lg); }
.ba-before { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; }
.ba-handle { position: absolute; top: 0; left: 50%; width: 4px; height: 100%; background: var(--white); cursor: ew-resize; transform: translateX(-50%); z-index: 2; box-shadow: 0 0 8px rgba(0,0,0,.3); }
.ba-handle-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(0,0,0,.25); font-size: 18px; color: var(--primary); }
.ba-label { position: absolute; bottom: 1rem; padding: .3rem .8rem; background: rgba(0,0,0,.55); color: var(--white); font-size: .78rem; font-weight: 700; letter-spacing: .08em; border-radius: 999px; text-transform: uppercase; pointer-events: none; }
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

/* FLOATING CTA */
.floating-cta { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; background: var(--primary); color: var(--white); width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(7,97,182,.45); transition: transform .2s, box-shadow .2s, background .2s; text-decoration: none; }
.floating-cta:hover { transform: scale(1.12); box-shadow: 0 6px 30px rgba(7,97,182,.55); background: var(--primary-dark); }
.floating-cta:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
@media (min-width: 768px) { .floating-cta { bottom: 2rem; right: 2rem; width: 66px; height: 66px; } }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); padding: 4.5rem 1.5rem; text-align: center; }
.cta-band h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--white); letter-spacing: .04em; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .875rem; justify-content: center; }

/* FOOTER */
footer { background: #040420; color: rgba(255,255,255,.65); padding: 3rem 1.5rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: .75rem; max-width: 320px; }
.footer-col h4 { font-weight: 800; color: var(--white); font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { justify-content: center; text-align: center; } }

/* MAP */
#service-area-map { height: 380px; border-radius: var(--radius-lg); z-index: 1; box-shadow: var(--shadow); }
.area-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; justify-content: center; }
.area-tag { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: .35rem .9rem; font-size: .85rem; font-weight: 600; color: var(--primary); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: .75rem; }
.gallery-img { width: 100%; height: 230px; object-fit: cover; border-radius: var(--radius); cursor: pointer; transition: transform .3s, box-shadow .3s; display: block; }
.gallery-img:hover { transform: scale(1.03); box-shadow: var(--shadow); }
#lightbox { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.9); align-items: center; justify-content: center; cursor: zoom-out; }
#lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
#lightbox-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: white; font-size: 2.5rem; cursor: pointer; line-height: 1; }
