/* =====================================================
   Plumbing Connection — Brand Stylesheet
   Primary: #CC3366 | Secondary: #333233 | Text: #1F2124
   Fonts: Manrope (headings) + Figtree (body)
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800;900&family=Figtree:wght@300;400;500;600&display=swap');

:root {
  --primary: #CC3366;
  --primary-dark: #a8274e;
  --primary-light: #f5e0e8;
  --secondary: #333233;
  --dark: #1F2124;
  --text: #2d2d2d;
  --text-muted: #5a5a5a;
  --bg: #ffffff;
  --bg-soft: #fdf5f8;
  --bg-dark: #1A1B1E;
  --border: #e8e0e3;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(204,51,102,0.12);
  --shadow-dark: 0 8px 32px rgba(0,0,0,0.18);
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--primary); color: #fff; padding: .5rem 1.2rem;
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 700;
  text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
strong { font-weight: 700; }

/* ---- UTILITY ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.section-label {
  font-family: var(--font-head);
  font-size: .75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--primary);
  display: block; margin-bottom: .6rem;
}
.divider {
  width: 48px; height: 4px;
  background: var(--primary);
  border-radius: 2px; margin: 1rem 0 1.8rem;
}
.divider-center { margin: 1rem auto 1.8rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.9rem;
  border-radius: 50px; font-family: var(--font-head);
  font-weight: 700; font-size: .95rem;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .25s ease;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 14px rgba(204,51,102,0.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--primary-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,51,102,0.45);
}
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--primary); color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff; color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn-white:hover, .btn-white:focus-visible {
  background: var(--primary-light); color: var(--primary);
  transform: translateY(-2px);
}
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

/* ---- EMERGENCY BANNER ---- */
.emergency-banner {
  background: var(--dark);
  color: #fff; text-align: center;
  padding: .55rem 1rem; font-size: .85rem;
  font-family: var(--font-head); font-weight: 600;
}
.emergency-banner a { color: var(--primary); font-weight: 700; }
.emergency-banner a:hover { color: #fff; }

/* ---- HEADER / NAV ---- */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 1.5rem; max-width: var(--max-w); margin: 0 auto; gap: 1rem;
}
.logo img { height: 52px; width: auto; display: block; }
nav ul { display: flex; list-style: none; gap: 2rem; }
nav a {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  color: var(--dark); padding: .3rem 0;
  border-bottom: 2px solid transparent; transition: all .2s;
}
nav a:hover, nav a.active {
  color: var(--primary); border-bottom-color: var(--primary);
}
.header-cta { display: flex; align-items: center; gap: .8rem; }
.header-phone {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.05rem; color: var(--dark);
  display: flex; align-items: center; gap: .4rem;
}
.header-phone svg { color: var(--primary); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: all .3s;
  display: block;
}
.mobile-nav {
  display: none; background: #fff;
  border-top: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
}
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.mobile-nav a {
  font-family: var(--font-head); font-weight: 600;
  color: var(--dark); font-size: 1rem;
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav.open { display: block; }

/* ---- HERO ---- */
.hero {
  position: relative; overflow: hidden;
  min-height: 86vh; display: flex; align-items: center;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://plumbing-connection.com/wp-content/uploads/2025/07/excavation.jpg');
  background-size: cover; background-position: center;
  opacity: .32; transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(26,27,30,0.92) 40%, rgba(204,51,102,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 5rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-left {}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(204,51,102,.18); border: 1px solid rgba(204,51,102,.4);
  color: #f5b8cb; border-radius: 50px; padding: .35rem 1rem;
  font-size: .8rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1.4rem;
}
.hero h1 {
  color: #fff; font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1; margin-bottom: 1.2rem;
}
.hero h1 span { color: var(--primary); }
.hero-sub {
  color: rgba(255,255,255,.82); font-size: 1.05rem;
  margin-bottom: 2rem; line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 1.2rem;
  margin-top: 2.4rem; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 600;
  font-family: var(--font-head);
}
.hero-trust-item svg { color: var(--primary); flex-shrink: 0; }
.hero-right {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.hero-card {
  background: rgba(255,255,255,.06); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 1.4rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.hero-card-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-text h3 { color: #fff; font-size: 1rem; margin-bottom: .2rem; }
.hero-card-text p { color: rgba(255,255,255,.7); font-size: .85rem; margin: 0; }

/* ---- STATS BAND ---- */
.stats-band {
  background: var(--primary);
  padding: 3rem 1.5rem;
}
.stats-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem;
}
.stat-item { text-align: center; color: #fff; }
.stat-number {
  font-family: var(--font-head); font-size: 3.2rem; font-weight: 900;
  display: block; line-height: 1;
}
.stat-label {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; opacity: .85; margin-top: .4rem; display: block;
}

/* ---- SECTIONS ---- */
section { padding: 5rem 1.5rem; }

/* ---- WHY CHOOSE ---- */
.why-section { background: var(--bg-soft); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; margin-top: 2.5rem;
}
.why-card {
  background: #fff; border-radius: 14px; padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(204,51,102,0.06);
  transition: all .3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(204,51,102,0.14);
  border-color: var(--primary);
}
.why-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.why-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.why-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ---- SERVICES PREVIEW ---- */
.services-preview-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.service-tag {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .8rem 1.2rem;
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-head); font-weight: 600; font-size: .88rem;
  color: var(--dark); transition: all .25s;
}
.service-tag:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.service-tag svg { color: var(--primary); flex-shrink: 0; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--dark); }
.testimonials-section h2, .testimonials-section .section-label { color: #fff; }
.testimonials-section .section-label { color: var(--primary); }
.tc-wrap {
  max-width: 800px; margin: 2.5rem auto 0;
}
.tc-track-outer { overflow: hidden; border-radius: 16px; }
.tc-track { display: flex; transition: transform .5s ease; }
.tc-slide {
  min-width: 100%; padding: 2.5rem;
  background: rgba(255,255,255,.06);
  border-radius: 16px; text-align: center;
}
.tc-stars { color: #fbbf24; font-size: 1.3rem; margin-bottom: 1rem; }
.tc-quote {
  font-size: 1.05rem; line-height: 1.75; font-style: italic;
  color: rgba(255,255,255,.9); margin-bottom: 1.4rem;
}
.tc-author { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: .9rem; }
.tc-source { color: rgba(255,255,255,.4); font-size: .8rem; margin-top: .2rem; }
.tc-dots {
  display: flex; justify-content: center; gap: .5rem; margin-top: 1.4rem;
}
.tc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none; cursor: pointer;
  transition: all .3s; padding: 0;
}
.tc-dot.active { background: var(--primary); transform: scale(1.2); }

/* ---- CONNECTION CLUB ---- */
.club-section {
  background: linear-gradient(135deg, var(--primary) 0%, #9e1e44 100%);
  color: #fff; position: relative; overflow: hidden;
}
.club-section::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.06); border-radius: 50%;
}
.club-section::after {
  content: ''; position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,.04); border-radius: 50%;
}
.club-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  max-width: var(--max-w); margin: 0 auto;
}
.club-section h2 { color: #fff; }
.club-section .section-label { color: rgba(255,255,255,.7); }
.club-tagline { font-size: 1.1rem; opacity: .9; margin-bottom: 2rem; }
.club-benefits { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.club-benefits li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .95rem; opacity: .92;
}
.club-benefits li svg { color: #fff; flex-shrink: 0; margin-top: 2px; }
.club-assessment {
  background: rgba(255,255,255,.1);
  border-radius: 14px; padding: 2rem;
  backdrop-filter: blur(8px);
}
.club-assessment h3 { color: #fff; margin-bottom: 1.2rem; font-size: 1.1rem; }
.assessment-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.assessment-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .88rem; opacity: .88;
}
.assessment-list li::before {
  content: '✓'; color: #fff; font-weight: 700; flex-shrink: 0;
}
.club-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.btn-club { background: #fff; color: var(--primary); }
.btn-club:hover { background: var(--primary-light); color: var(--primary-dark); transform: translateY(-2px); }

/* ---- AWARDS ---- */
.awards-section { background: var(--bg-soft); }
.awards-grid {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 3rem; margin-top: 2rem;
}
.award-item { text-align: center; }
.award-item img { height: 90px; width: auto; object-fit: contain; }

/* ---- ABOUT PREVIEW ---- */
.about-preview { background: #fff; }
.about-preview-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  max-width: var(--max-w); margin: 0 auto;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: 16px;
  box-shadow: var(--shadow-dark);
  aspect-ratio: 4/3; object-fit: cover;
}
.about-badge-overlay {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--primary); color: #fff;
  border-radius: 14px; padding: 1.2rem 1.5rem; text-align: center;
  box-shadow: 0 8px 24px rgba(204,51,102,0.4);
}
.about-badge-overlay .big-num {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 900; line-height: 1;
}
.about-badge-overlay .label { font-size: .75rem; font-weight: 600; opacity: .9; text-transform: uppercase; letter-spacing: 1px; }
.about-text { }
.about-text p { color: var(--text-muted); font-size: .97rem; }
.credentials-row {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem;
}
.cred-chip {
  background: var(--primary-light); color: var(--primary);
  border-radius: 50px; padding: .35rem .9rem;
  font-size: .8rem; font-weight: 700; font-family: var(--font-head);
}

/* ---- SERVICE AREA MAP ---- */
.map-section { background: var(--bg-soft); }
.map-section h2 { margin-bottom: .5rem; }
#service-area-map { height: 380px; border-radius: 14px; margin-top: 2rem; box-shadow: var(--shadow); }

/* ---- BEFORE/AFTER SLIDER ---- */
.ba-section { background: var(--dark); }
.ba-section h2 { color: #fff; }
.ba-section .section-label { color: var(--primary); }
.ba-section .divider { background: var(--primary); }

/* ---- SERVICES PAGE ---- */
.services-hero-section {
  background: var(--dark); color: #fff; text-align: center; padding: 5rem 1.5rem;
  background-image: linear-gradient(135deg, #1A1B1E 60%, #2a1520 100%);
}
.services-hero-section h1 { color: #fff; margin-bottom: 1rem; }
.services-hero-section p { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 2rem; font-size: 1.05rem; }
.services-category { margin-bottom: 4rem; }
.services-category h2 { margin-bottom: 1.5rem; font-size: 1.5rem; }
.services-category-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: all .3s;
}
.service-card:hover {
  transform: translateY(-3px); border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(204,51,102,.12);
}
.service-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-card h3 { font-size: .95rem; margin-bottom: .3rem; }
.service-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ---- ABOUT PAGE ---- */
.about-hero-section {
  background: var(--dark); padding: 5rem 1.5rem;
  background-image: linear-gradient(115deg, #1A1B1E 55%, #2a1520 100%);
}
.about-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-hero-text h1 { color: #fff; margin-bottom: 1rem; }
.about-hero-text .lead { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.about-hero-img img {
  width: 100%; border-radius: 16px; object-fit: cover;
  box-shadow: var(--shadow-dark);
}
.about-story-section { background: #fff; }
.about-story-inner { max-width: 780px; margin: 0 auto; }
.about-story-inner p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; }
.owner-bio-section { background: var(--bg-soft); }
.owner-bio-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start;
}
.owner-photo img {
  width: 100%; border-radius: 16px; object-fit: cover;
  box-shadow: var(--shadow-dark);
}
.owner-info h2 { margin-bottom: .5rem; }
.owner-info .owner-title { color: var(--primary); font-weight: 700; margin-bottom: 1.4rem; display: block; }
.owner-info p { color: var(--text-muted); font-size: .97rem; }
.gallery-section { background: var(--bg-dark); }
.gallery-section h2 { color: #fff; }
.gallery-section .section-label { color: var(--primary); }
.gallery-section .divider { background: var(--primary); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .75rem; margin-top: 2rem;
}
.gallery-img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: 10px; cursor: pointer;
  transition: transform .3s, opacity .3s;
  display: block;
}
.gallery-img:hover { transform: scale(1.03); opacity: .9; }

/* ---- CONTACT PAGE ---- */
.contact-hero-section {
  background: var(--dark); text-align: center; padding: 5rem 1.5rem;
}
.contact-hero-section h1 { color: #fff; margin-bottom: .8rem; }
.contact-hero-section p { color: rgba(255,255,255,.75); font-size: 1.05rem; }
.contact-main { background: #fff; }
.contact-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
}
.contact-info h2 { margin-bottom: 2rem; }
.contact-block { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.contact-block-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-block h3 { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; }
.contact-block p, .contact-block a { font-size: .95rem; color: var(--text-muted); }
.contact-block a:hover { color: var(--primary); }
.contact-form-wrap { background: var(--bg-soft); border-radius: 18px; padding: 2.5rem; }
.contact-form-wrap h2 { margin-bottom .5rem; }
.form-note { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: .85rem; margin-bottom: .4rem; color: var(--dark);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem; color: var(--dark);
  background: #fff; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(204,51,102,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none; background: #d4edda; border: 1px solid #c3e6cb;
  color: #155724; border-radius: var(--radius); padding: 1rem 1.2rem;
  margin-top: 1rem; font-weight: 600;
}
.discount-banner {
  background: var(--primary-light); border: 1px solid rgba(204,51,102,.25);
  border-radius: var(--radius); padding: .8rem 1.2rem;
  font-size: .88rem; color: var(--primary); font-weight: 600;
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: .5rem;
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark); color: rgba(255,255,255,.8);
}
.footer-top {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem;
  padding: 4rem 1.5rem 3rem;
}
.footer-brand .logo img { height: 44px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; margin-top: 1rem; opacity: .7; line-height: 1.7; }
.footer-col h4 {
  color: #fff; font-family: var(--font-head); font-size: .85rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .88rem; opacity: .7; color: rgba(255,255,255,.8); transition: opacity .2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--primary); }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: all .2s;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.4rem 1.5rem; text-align: center;
  font-size: .82rem; opacity: .5;
  max-width: var(--max-w); margin: 0 auto;
}

/* ---- FLOATING CTA ---- */
.floating-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  background: var(--primary); color: white;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(204,51,102,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(204,51,102,.6); color: #fff; }

/* ---- LIGHTBOX ---- */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox-img {
  max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 6px;
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; border: none; color: #fff;
  font-size: 2.5rem; cursor: pointer; line-height: 1;
}

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s 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; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-preview-inner { grid-template-columns: 1fr; }
  .about-badge-overlay { position: relative; bottom: auto; right: auto; display: inline-block; margin-top: 1rem; }
  .club-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .owner-bio-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .hero { min-height: 75vh; }
  .hero-content { padding: 3.5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { gap: 2rem; }
  .stat-number { font-size: 2.4rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-bg { transform: none !important; }
}
