/* ================================================
   ProFix Home Services — Main Stylesheet
   Colour Scheme: Gold (#C8941C) | Green (#2A7A2A) | Silver/Grey
   Fonts: Oswald (headings) + Lato (body)
   Mobile-first responsive design
   ================================================ */

/* ------------------------------------------------
   CSS CUSTOM PROPERTIES
   ------------------------------------------------ */
:root {
  --gold:         #C8941C;
  --gold-light:   #E8B84B;
  --gold-dark:    #9A7015;
  --gold-bg:      #FDF5E4;
  --green:        #2A7A2A;
  --green-dark:   #1D5C1D;
  --green-light:  #3EA33E;
  --silver:       #B8B8B8;
  --silver-light: #E8E8E8;

  --dark:         #1A1A1A;
  --dark-2:       #222222;
  --dark-3:       #2C2C2C;
  --mid:          #555555;
  --light-bg:     #F8F7F4;
  --white:        #FFFFFF;
  --border:       #DEDEDE;

  --font-head:    'Oswald', sans-serif;
  --font-body:    'Lato', sans-serif;

  --radius:       8px;
  --shadow:       0 4px 20px rgba(0,0,0,0.10);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.15);
  --transition:   0.3s ease;

  --nav-height:   72px;
}

/* ------------------------------------------------
   RESET & BASE
   ------------------------------------------------ */
*, *::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(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* ------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
p  { font-size: 1rem; color: var(--mid); }

/* ------------------------------------------------
   LAYOUT UTILITIES
   ------------------------------------------------ */
.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.bg-light { background: var(--light-bg); }
.bg-dark  { background: var(--dark-2); }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-silver { color: var(--silver) !important; }

/* ------------------------------------------------
   SECTION HEADERS
   ------------------------------------------------ */
.sec-head {
  margin-bottom: 52px;
}

.sec-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  padding: 4px 14px;
  border: 1px solid var(--green);
  border-radius: 20px;
}

.gold-label {
  color: var(--gold);
  border-color: var(--gold);
}

.sec-head h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.sec-head.text-center h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

.sec-sub {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--mid);
}

/* ------------------------------------------------
   BUTTONS
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,148,28,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ------------------------------------------------
   SCROLL-REVEAL ANIMATIONS
   ------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------
   NAVBAR
   ------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.mobile-menu.open {
  max-height: 500px;
  padding: 8px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mm-link {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), background var(--transition);
}

.mm-link:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.mm-phone {
  color: var(--gold) !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  margin-top: 8px;
}

/* ------------------------------------------------
   HERO SECTION
   To change hero image: update background-image below
   ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* HERO BACKGROUND IMAGE — currently disabled, using gradient instead */
  /* To re-enable: uncomment the line below and remove the background line */
  /* background-image: url('../images/promotion.jpg'); */
  background: linear-gradient(135deg, #1a1a1a 0%, #1e2e1e 50%, #1a1a1a 100%);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  padding-top: var(--nav-height);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.82) 0%,
    rgba(20,30,20,0.70) 60%,
    rgba(10,10,10,0.60) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 780px;
}

.hero-logo-large {
  margin-bottom: 28px;
}

.hero-logo-large img {
  width: 280px;
  max-width: 80vw;
  height: auto;
  border-radius: 12px;
  /* Blends the grey background cleanly into the dark hero */
  mix-blend-mode: luminosity;
  opacity: 0.95;
  filter: drop-shadow(0 4px 24px rgba(200,148,28,0.35));
  transition: opacity 0.3s ease;
}

.hero-logo-large img:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .hero-logo-large img {
    width: 360px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(200,148,28,0.5);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.trust-pill i { color: var(--gold); }

/* Hero social buttons */
.hero-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-socials-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--white);
}

.hero-social-btn.fb {
  background: #1877F2;
  box-shadow: 0 4px 14px rgba(24,119,242,0.4);
}
.hero-social-btn.fb:hover {
  background: #0d5fc4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24,119,242,0.5);
  color: var(--white);
  text-decoration: none;
}

.hero-social-btn.ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 4px 14px rgba(253,29,29,0.3);
}
.hero-social-btn.ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253,29,29,0.45);
  color: var(--white);
  text-decoration: none;
}

/* Minimum charge banner */
.price-min-charge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, rgba(200,148,28,0.18), rgba(200,148,28,0.06));
  border: 1px solid rgba(200,148,28,0.35);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}
.price-min-charge i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.price-min-charge strong { color: var(--gold); font-size: 1.15rem; }

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 2;
  transition: color var(--transition);
}
.scroll-down:hover { color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ------------------------------------------------
   SERVICES
   ------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,148,28,0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.svc-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(200,148,28,0.3);
  transition: transform var(--transition);
}

.service-card:hover .svc-icon {
  transform: scale(1.08) rotate(-3deg);
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ------------------------------------------------
   PRICING
   ------------------------------------------------ */
.pricing-img-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-img {
  max-width: 700px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  border: 2px solid rgba(200,148,28,0.3);
  margin: 0 auto;
}

.pricing-table-wrap {
  background: var(--dark-3);
  border-radius: 12px;
  padding: 40px 28px;
  border: 1px solid rgba(200,148,28,0.15);
}

.pricing-table-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  margin-bottom: 8px;
  text-align: center;
}

.pricing-note {
  text-align: center;
  color: var(--silver);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.price-cat {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.price-cat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--gold-dark), rgba(200,148,28,0.7));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}

.price-row:last-child { border-bottom: none; }
.price-row:hover { background: rgba(255,255,255,0.04); }

.price-svc {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.price-amt {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 16px;
}

.pricing-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(200,148,28,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--silver);
}

.pricing-disclaimer i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ------------------------------------------------
   PORTFOLIO / BEFORE & AFTER
   ------------------------------------------------ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.portfolio-pair h3 {
  text-align: center;
  margin-top: 16px;
  font-size: 1.15rem;
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ba-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.ba-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.ba-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ba-img:hover img { transform: scale(1.04); }

.ba-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  color: var(--white);
}

.ba-label.before { background: rgba(80,80,80,0.9); }
.ba-label.after  { background: rgba(42,122,42,0.9); }

.ba-divider {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(200,148,28,0.4);
}

/* ------------------------------------------------
   FACEBOOK FOLLOW BANNER
   ------------------------------------------------ */
.fb-follow-banner {
  margin-top: 52px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #1877F2 0%, #0d5fc4 100%);
  box-shadow: 0 8px 32px rgba(24,119,242,0.3);
}

.fb-follow-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 36px 28px;
}

.fb-follow-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  flex-shrink: 0;
}

.fb-follow-text p {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 6px;
}

.fb-follow-text span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.btn-fb {
  background: var(--white);
  color: #1877F2;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-fb:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
  .fb-follow-inner {
    flex-direction: row;
    text-align: left;
    padding: 32px 40px;
    gap: 28px;
  }
  .fb-follow-text { flex: 1; }
}

/* ------------------------------------------------
   MEET JOHNNY INTRO PANEL
   ------------------------------------------------ */
.johnny-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  background: var(--dark-3);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(200,148,28,0.15);
  margin-bottom: 60px;
}

.johnny-photo {
  display: flex;
  justify-content: center;
}

.johnny-photo img {
  width: 240px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid rgba(200,148,28,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: block;
}

.johnny-photo-placeholder {
  width: 240px;
  height: 280px;
  border-radius: 12px;
  border: 2px dashed rgba(200,148,28,0.35);
  background: rgba(200,148,28,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(200,148,28,0.4);
}

.johnny-photo-placeholder i    { font-size: 3.5rem; }
.johnny-photo-placeholder span {
  font-size: 0.78rem;
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(200,148,28,0.4);
}

.johnny-bio .sec-label { margin-bottom: 10px; }

.johnny-bio h3 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.johnny-bio p {
  color: var(--silver);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.johnny-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.j-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(200,148,28,0.1);
  border: 1px solid rgba(200,148,28,0.25);
  padding: 7px 14px;
  border-radius: 20px;
}

.j-badge i { font-size: 0.75rem; }

@media (min-width: 768px) {
  .johnny-intro {
    grid-template-columns: auto 1fr;
    gap: 48px;
    padding: 48px 44px;
  }
  .johnny-photo { justify-content: flex-start; }
}

/* ------------------------------------------------
   CERTIFICATES / QUALIFICATIONS
   ------------------------------------------------ */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cert-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200,148,28,0.2);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.cert-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.cert-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.cert-placeholder-icon {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(200,148,28,0.4);
  background: rgba(200,148,28,0.06);
  border-bottom: 1px solid rgba(200,148,28,0.15);
  position: relative;
}

.cert-placeholder-icon::after {
  content: 'Click to view';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(200,148,28,0.5);
}

.cert-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  padding: 12px 14px 14px;
  line-height: 1.4;
}

/* View overlay on real cert images */
.cert-card:not(.cert-placeholder) {
  position: relative;
}

.cert-card:not(.cert-placeholder)::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 2rem;
  color: var(--white);
  background: rgba(200,148,28,0.85);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  line-height: 52px;
  text-align: center;
}

.cert-card:not(.cert-placeholder):hover::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.cert-pending {
  font-size: 0.75rem;
  color: var(--silver);
  padding: 0 16px 14px;
  font-style: italic;
}

.cert-detail {
  font-size: 0.78rem;
  color: var(--silver);
  padding: 2px 14px 14px;
  line-height: 1.4;
}

/* ------------------------------------------------
   TESTIMONIALS
   ------------------------------------------------ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.t-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 4px solid var(--green);
  position: relative;
  transition: all var(--transition);
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}

.t-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(200,148,28,0.12);
  font-family: Georgia, serif;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.t-text {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 24px;
  font-style: italic;
}

.t-reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.t-area {
  font-size: 0.82rem;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 5px;
}
.t-area i { font-size: 0.75rem; opacity: 0.7; }

/* ------------------------------------------------
   LEAVE A REVIEW FORM
   ------------------------------------------------ */
.review-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.review-form-wrap form {
  background: var(--dark-3);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(200,148,28,0.15);
}

/* Star picker */
.review-stars-wrap {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.review-stars-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 18px;
}

/* Stars displayed in reverse order using flex row-reverse */
.star-picker {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}

.star-picker input[type="radio"] {
  display: none;
}

.star-picker label {
  font-size: 2.6rem;
  color: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
  line-height: 1;
}

/* Fill this star and all stars to the right (which are lower numbers due to row-reverse) */
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label {
  color: var(--gold);
  transform: scale(1.15);
}

.star-label-text {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold-light);
  min-height: 1.4em;
  transition: opacity 0.2s;
}

/* Review fields */
.review-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.review-submit {
  margin-bottom: 16px;
}

.review-consent {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  font-style: italic;
  margin: 0;
}

/* Success message */
.review-success {
  background: var(--dark-3);
  border-radius: 16px;
  padding: 60px 32px;
  border: 1px solid rgba(42,122,42,0.3);
  text-align: center;
}

.review-success-icon {
  font-size: 3.5rem;
  color: var(--green-light);
  margin-bottom: 20px;
}

.review-success h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.review-success p {
  color: var(--silver);
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ------------------------------------------------
   CONTACT
   ------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.contact-form {
  background: var(--dark-3);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 8px;
}

.req { color: var(--gold); }

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200,148,28,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.c-icon {
  width: 46px;
  height: 46px;
  background: rgba(200,148,28,0.15);
  border: 1px solid rgba(200,148,28,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.whatsapp-c { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.3); color: #25D366; }

.c-detail h4 {
  color: var(--silver-light);
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.c-detail a,
.c-detail p {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.6;
}

.c-detail a:hover { color: var(--gold); }

.c-hours {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(200,148,28,0.08);
  border: 1px solid rgba(200,148,28,0.2);
  border-radius: var(--radius);
}

.c-hours h4 { color: var(--gold-light); margin-bottom: 6px; }
.c-hours p  { color: var(--silver); font-size: 0.92rem; line-height: 1.7; }
.c-hours strong { color: var(--white); }

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 1px solid rgba(200,148,28,0.2);
}

.map-wrap iframe {
  display: block;
}

/* ------------------------------------------------
   FOOTER
   ------------------------------------------------ */
.footer {
  background: var(--dark);
  padding: 60px 0 0;
  border-top: 1px solid rgba(200,148,28,0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-brand p {
  color: var(--silver);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-nav h4,
.footer-contact-info h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,148,28,0.2);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul a {
  color: var(--silver);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer-nav ul a:hover { color: var(--gold); }

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--silver);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.footer-contact-info i { color: var(--gold); width: 16px; }

.footer-contact-info a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-privacy-link {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-privacy-link:hover {
  color: var(--gold);
}

/* ------------------------------------------------
   WHATSAPP FLOATING BUTTON
   ------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  color: var(--white);
}

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.6);
  animation: wa-pulse 2.2s ease-out infinite;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: wa-pulse 2.2s ease-out infinite 0.5s;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ------------------------------------------------
   LIGHTBOX
   ------------------------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}

.lightbox:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}

.lb-inner {
  max-width: 900px;
  width: 100%;
  text-align: center;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.lightbox:not([hidden]) .lb-inner {
  transform: scale(1);
}

.lb-inner img {
  max-height: 80vh;
  width: auto;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 16px 60px rgba(0,0,0,0.6);
  margin: 0 auto;
}

.lb-caption {
  color: var(--silver-light);
  font-size: 0.9rem;
  margin-top: 16px;
  font-style: italic;
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10000;
}

.lb-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* ------------------------------------------------
   TABLET: 600px+
   ------------------------------------------------ */
@media (min-width: 600px) {
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid    { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid       { grid-template-columns: 1fr; }
  .certs-grid           { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid         { grid-template-columns: repeat(2, 1fr); }
  .form-row             { grid-template-columns: 1fr 1fr; }
  .ba-img img           { height: 240px; }
}

/* ------------------------------------------------
   TABLET LARGE: 768px+
   ------------------------------------------------ */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta   { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom  { flex-direction: row; justify-content: space-between; }

  .hero-content { padding: 80px 0; }
}

/* ------------------------------------------------
   DESKTOP: 1024px+
   ------------------------------------------------ */
@media (min-width: 1024px) {
  .services-grid     { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .certs-grid        { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid      { grid-template-columns: repeat(2, 1fr); }
  .ba-img img        { height: 260px; }

  .section { padding: 100px 0; }
}

/* ------------------------------------------------
   REDUCED MOTION
   ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero   { background-attachment: scroll; }
  .scroll-down { animation: none; }
  .whatsapp-float::before,
  .whatsapp-float::after { animation: none; }
}
