/* ============================================
   PIERRE COMMERCIAL CLEANING - MAIN STYLESHEET
   Brand: Hunter Green #3B6E4A | Steel Blue #4A7FA5 | Gold #C9A84C
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green: #3B6E4A;
  --green-dark: #2C5438;
  --green-light: #EAF2EC;
  --blue: #4A7FA5;
  --blue-dark: #366285;
  --blue-light: #EAF2F8;
  --gold: #C9A84C;
  --gold-light: #F7EFD8;
  --white: #FFFFFF;
  --off-white: #F8F9F7;
  --gray-light: #F0F2F0;
  --gray: #8A9A8E;
  --gray-dark: #4A5550;
  --text: #1E2820;
  --text-light: #5A6B60;
  --shadow: 0 4px 24px rgba(59,110,74,0.10);
  --shadow-strong: 0 8px 40px rgba(59,110,74,0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-height: 72px;
}

*, *::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(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.25; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
p { font-size: 1rem; color: var(--text-light); }

.btn { display:inline-flex; align-items:center; gap:8px; padding:14px 32px; border-radius:50px; font-family:var(--font-body); font-size:0.95rem; font-weight:600; letter-spacing:0.02em; cursor:pointer; border:none; transition:all 0.25s ease; text-decoration:none; white-space:nowrap; }
.btn-green { background:var(--green); color:var(--white); box-shadow:0 4px 16px rgba(59,110,74,0.30); }
.btn-green:hover { background:var(--green-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(59,110,74,0.38); }
.btn-blue { background:var(--blue); color:var(--white); box-shadow:0 4px 16px rgba(74,127,165,0.30); }
.btn-blue:hover { background:var(--blue-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(74,127,165,0.38); }
.btn-outline { background:transparent; color:var(--green); border:2px solid var(--green); }
.btn-outline:hover { background:var(--green); color:var(--white); transform:translateY(-2px); }
.btn-gold { background:var(--gold); color:var(--white); box-shadow:0 4px 16px rgba(201,168,76,0.30); }
.btn-gold:hover { background:#b8943e; transform:translateY(-2px); }

nav { position:fixed; top:0; left:0; right:0; z-index:1000; height:var(--nav-height); background:rgba(255,255,255,0.97); backdrop-filter:blur(12px); border-bottom:1px solid rgba(59,110,74,0.10); display:flex; align-items:center; box-shadow:0 2px 20px rgba(0,0,0,0.06); }
.nav-inner { max-width:1200px; margin:0 auto; padding:0 24px; width:100%; display:flex; align-items:center; justify-content:space-between; }
.nav-logo { font-family:var(--font-display); font-size:1.25rem; font-weight:700; color:var(--green); line-height:1.2; }
.nav-logo span { color:var(--blue); }
.nav-logo small { display:block; font-family:var(--font-body); font-size:0.58rem; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); }
.nav-links { display:flex; align-items:center; gap:28px; }
.nav-links a { font-size:0.88rem; font-weight:500; color:var(--gray-dark); letter-spacing:0.02em; transition:color 0.2s; position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:2px; background:var(--green); transform:scaleX(0); transition:transform 0.2s; }
.nav-links a:hover { color:var(--green); }
.nav-links a:hover::after { transform:scaleX(1); }
.nav-cta { margin-left:8px; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; background:none; border:none; }
.hamburger span { width:24px; height:2px; background:var(--green); border-radius:2px; transition:all 0.3s; display:block; }

.hero { min-height:100vh; padding-top:var(--nav-height); display:flex; align-items:center; position:relative; overflow:hidden; background:linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--blue-dark) 100%); }
.hero-bg { position:absolute; inset:0; background-image:radial-gradient(circle at 20% 50%, rgba(201,168,76,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%), radial-gradient(circle at 60% 80%, rgba(74,127,165,0.20) 0%, transparent 40%); }
.hero-inner { max-width:1200px; margin:0 auto; padding:80px 24px; position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(201,168,76,0.20); border:1px solid rgba(201,168,76,0.40); color:var(--gold); padding:6px 16px; border-radius:50px; font-size:0.78rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; margin-bottom:20px; }
.hero h1 { color:var(--white); margin-bottom:20px; text-shadow:0 2px 20px rgba(0,0,0,0.20); }
.hero h1 em { font-style:normal; color:var(--gold); }
.hero-sub { color:rgba(255,255,255,0.82); font-size:1.1rem; margin-bottom:36px; line-height:1.8; }
.hero-cta-row { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.hero-phone { color:rgba(255,255,255,0.85); font-weight:600; font-size:0.95rem; display:flex; align-items:center; gap:8px; transition:color 0.2s; }
.hero-phone:hover { color:var(--gold); }
.hero-trust { display:flex; gap:24px; margin-top:40px; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:8px; color:rgba(255,255,255,0.75); font-size:0.85rem; font-weight:500; }
.trust-icon { width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,0.12); display:flex; align-items:center; justify-content:center; font-size:0.9rem; flex-shrink:0; }
.hero-card { background:rgba(255,255,255,0.10); backdrop-filter:blur(20px); border:1px solid rgba(255,255,255,0.18); border-radius:var(--radius-lg); padding:36px; }
.hero-card h3 { color:var(--white); font-size:1.1rem; margin-bottom:20px; font-family:var(--font-body); font-weight:600; }
.hero-card-list { display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.hero-card-item { display:flex; align-items:center; gap:12px; color:rgba(255,255,255,0.88); font-size:0.92rem; }
.hero-card-check { width:22px; height:22px; border-radius:50%; background:var(--gold); display:flex; align-items:center; justify-content:center; font-size:0.65rem; color:white; flex-shrink:0; }

.section { padding:90px 24px; }
.section-inner { max-width:1200px; margin:0 auto; }
.section-label { font-size:0.75rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; color:var(--green); margin-bottom:12px; }
.section-title { margin-bottom:16px; }
.section-sub { font-size:1.05rem; color:var(--text-light); max-width:560px; margin-bottom:48px; }
.section-header-center { text-align:center; }
.section-header-center .section-sub { margin-left:auto; margin-right:auto; }

.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.service-card { background:var(--white); border:1px solid rgba(59,110,74,0.10); border-radius:var(--radius-lg); padding:36px 28px; transition:all 0.3s ease; position:relative; overflow:hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--green),var(--blue)); transform:scaleX(0); transition:transform 0.3s; }
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-strong); border-color:rgba(59,110,74,0.20); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon { width:56px; height:56px; border-radius:var(--radius); background:var(--green-light); display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:20px; }
.service-card h3 { font-size:1.1rem; margin-bottom:10px; color:var(--text); }
.service-card p { font-size:0.92rem; line-height:1.7; margin-bottom:20px; }
.service-link { display:inline-flex; align-items:center; gap:6px; font-size:0.88rem; font-weight:600; color:var(--green); transition:gap 0.2s; }
.service-link:hover { gap:10px; }

.why-section { background:linear-gradient(135deg,var(--green-dark),var(--green)); color:var(--white); }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; margin-top:48px; }
.why-item { text-align:center; }
.why-icon { width:64px; height:64px; border-radius:50%; background:rgba(255,255,255,0.12); display:flex; align-items:center; justify-content:center; font-size:1.6rem; margin:0 auto 16px; }
.why-item h4 { color:var(--white); font-size:1rem; margin-bottom:8px; }
.why-item p { color:rgba(255,255,255,0.72); font-size:0.88rem; }

.reviews-section { background:var(--off-white); }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.review-card { background:var(--white); border-radius:var(--radius-lg); padding:32px; box-shadow:var(--shadow); }
.review-stars { color:var(--gold); font-size:1rem; margin-bottom:12px; letter-spacing:2px; }
.review-text { font-size:0.95rem; color:var(--text-light); line-height:1.75; margin-bottom:20px; font-style:italic; }
.review-author { display:flex; align-items:center; gap:12px; }
.review-avatar { width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg,var(--green),var(--blue)); display:flex; align-items:center; justify-content:center; color:var(--white); font-weight:700; font-size:0.9rem; flex-shrink:0; }
.review-name { font-weight:600; font-size:0.92rem; color:var(--text); }
.review-biz { font-size:0.8rem; color:var(--gray); }
.google-badge { display:inline-flex; align-items:center; gap:8px; background:var(--white); border:1px solid #E0E0E0; border-radius:50px; padding:10px 20px; margin-top:40px; font-size:0.88rem; font-weight:600; color:var(--gray-dark); cursor:pointer; transition:box-shadow 0.2s; }
.google-badge:hover { box-shadow:0 4px 16px rgba(0,0,0,0.10); }

.quote-section { background:var(--blue-light); padding:90px 24px; }
.quote-inner { max-width:760px; margin:0 auto; text-align:center; }
.quote-form { background:var(--white); border-radius:var(--radius-lg); padding:48px; margin-top:40px; box-shadow:var(--shadow-strong); text-align:left; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group.full { grid-column:1/-1; }
.form-group label { font-size:0.85rem; font-weight:600; color:var(--text); letter-spacing:0.02em; }
.form-group input,.form-group select,.form-group textarea { padding:13px 16px; border:1.5px solid #E0E6E2; border-radius:var(--radius); font-family:var(--font-body); font-size:0.95rem; color:var(--text); background:var(--off-white); transition:border-color 0.2s,box-shadow 0.2s; outline:none; width:100%; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--green); box-shadow:0 0 0 3px rgba(59,110,74,0.10); background:var(--white); }
.form-group textarea { resize:vertical; min-height:110px; }
.form-submit { margin-top:8px; width:100%; justify-content:center; }

footer { background:var(--text); color:rgba(255,255,255,0.85); padding:64px 24px 32px; }
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:48px; margin-bottom:48px; }
.footer-logo { font-family:var(--font-display); font-size:1.3rem; font-weight:700; color:var(--white); margin-bottom:12px; }
.footer-logo span { color:var(--gold); }
.footer-desc { font-size:0.88rem; color:rgba(255,255,255,0.60); line-height:1.8; margin-bottom:20px; }
.footer-contact-item { display:flex; align-items:flex-start; gap:10px; margin-bottom:10px; font-size:0.88rem; color:rgba(255,255,255,0.72); }
.footer-contact-item a { color:rgba(255,255,255,0.72); transition:color 0.2s; }
.footer-contact-item a:hover { color:var(--gold); }
.footer-col h4 { color:var(--white); font-size:0.88rem; font-weight:700; letter-spacing:0.10em; text-transform:uppercase; margin-bottom:20px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:0.88rem; color:rgba(255,255,255,0.60); transition:color 0.2s; }
.footer-links a:hover { color:var(--gold); }
.social-row { display:flex; gap:12px; margin-top:8px; }
.social-btn { width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; font-size:1rem; color:rgba(255,255,255,0.72); transition:all 0.2s; border:1px solid rgba(255,255,255,0.12); }
.social-btn:hover { background:var(--gold); color:var(--white); border-color:var(--gold); transform:translateY(-2px); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.10); padding-top:28px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:0.82rem; color:rgba(255,255,255,0.45); }

.page-hero { background:linear-gradient(135deg,var(--green-dark),var(--blue-dark)); padding:calc(var(--nav-height) + 60px) 24px 70px; text-align:center; }
.page-hero h1 { color:var(--white); margin-bottom:16px; }
.page-hero p { color:rgba(255,255,255,0.80); font-size:1.1rem; max-width:600px; margin:0 auto 32px; }

.service-content { padding:80px 24px; }
.service-content-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 380px; gap:60px; align-items:start; }
.service-body h2 { margin-bottom:16px; }
.service-body p { margin-bottom:20px; }
.service-body h3 { margin:32px 0 12px; font-size:1.2rem; }
.service-checklist { display:flex; flex-direction:column; gap:10px; margin-bottom:32px; }
.service-check-item { display:flex; align-items:center; gap:12px; font-size:0.95rem; color:var(--text-light); }
.check-dot { width:22px; height:22px; border-radius:50%; background:var(--green-light); border:2px solid var(--green); display:flex; align-items:center; justify-content:center; font-size:0.6rem; color:var(--green); flex-shrink:0; }
.service-sidebar { position:sticky; top:calc(var(--nav-height) + 24px); }
.sidebar-card { background:var(--white); border:1.5px solid rgba(59,110,74,0.15); border-radius:var(--radius-lg); padding:32px; box-shadow:var(--shadow); }
.sidebar-card h4 { font-size:1.05rem; margin-bottom:20px; color:var(--text); }
.sidebar-form .form-group { margin-bottom:14px; }
.sidebar-form .form-group input,.sidebar-form .form-group select,.sidebar-form .form-group textarea { padding:11px 14px; font-size:0.9rem; }
.sidebar-form textarea { min-height:80px; }

.about-hero { padding:calc(var(--nav-height) + 60px) 24px 70px; background:var(--off-white); }
.about-hero-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-hero-text h1 { margin-bottom:20px; }
.about-hero-text p { font-size:1.05rem; margin-bottom:16px; }
.about-card { background:linear-gradient(135deg,var(--green),var(--blue)); border-radius:var(--radius-lg); padding:40px; color:var(--white); }
.about-stat { margin-bottom:24px; }
.about-stat-num { font-family:var(--font-display); font-size:2.4rem; font-weight:700; color:var(--gold); }
.about-stat-label { font-size:0.9rem; color:rgba(255,255,255,0.80); }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.value-card { background:var(--off-white); border-radius:var(--radius-lg); padding:32px 24px; text-align:center; }
.value-icon { font-size:2rem; margin-bottom:16px; }
.value-card h4 { margin-bottom:8px; }
.value-card p { font-size:0.9rem; }

.contact-section { padding:80px 24px; }
.contact-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1.5fr; gap:60px; align-items:start; }
.contact-info-card { background:var(--green); border-radius:var(--radius-lg); padding:40px; color:var(--white); position:sticky; top:calc(var(--nav-height)+24px); }
.contact-info-card h3 { color:var(--white); margin-bottom:8px; }
.contact-info-card > p { color:rgba(255,255,255,0.75); margin-bottom:32px; }
.contact-detail { display:flex; align-items:flex-start; gap:14px; margin-bottom:20px; }
.contact-icon { width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.contact-detail-text strong { display:block; font-size:0.82rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); margin-bottom:2px; }
.contact-detail-text a { color:rgba(255,255,255,0.88); font-size:0.95rem; transition:color 0.2s; }
.contact-detail-text a:hover { color:var(--gold); }
.contact-hours { background:rgba(255,255,255,0.10); border-radius:var(--radius); padding:20px; margin-top:28px; }
.contact-hours h5 { font-size:0.82rem; font-weight:700; letter-spacing:0.10em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.hours-row { display:flex; justify-content:space-between; font-size:0.88rem; color:rgba(255,255,255,0.75); padding:4px 0; }

.thankyou-section { min-height:100vh; display:flex; align-items:center; justify-content:center; padding:24px; background:linear-gradient(135deg,var(--green-light),var(--blue-light)); }
.thankyou-card { background:var(--white); border-radius:var(--radius-lg); padding:64px 48px; text-align:center; max-width:560px; box-shadow:var(--shadow-strong); }
.thankyou-icon { width:80px; height:80px; border-radius:50%; background:var(--green-light); border:3px solid var(--green); display:flex; align-items:center; justify-content:center; font-size:2rem; margin:0 auto 28px; }
.thankyou-card h1 { font-size:2rem; margin-bottom:16px; color:var(--green); }
.thankyou-card p { margin-bottom:12px; }
.thankyou-card .btn { margin-top:24px; }

.areas-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:40px; }
.area-chip { background:var(--green-light); border:1.5px solid rgba(59,110,74,0.15); border-radius:50px; padding:12px 20px; text-align:center; font-size:0.88rem; font-weight:600; color:var(--green-dark); transition:all 0.2s; }
.area-chip:hover { background:var(--green); color:var(--white); border-color:var(--green); transform:translateY(-2px); }

.mobile-menu { display:none; position:fixed; top:var(--nav-height); left:0; right:0; background:var(--white); border-bottom:1px solid rgba(59,110,74,0.10); padding:20px 24px; flex-direction:column; gap:16px; z-index:999; box-shadow:0 8px 32px rgba(0,0,0,0.10); }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-size:1rem; font-weight:500; color:var(--gray-dark); padding:8px 0; border-bottom:1px solid var(--gray-light); }
.mobile-menu a:last-child { border-bottom:none; }

.tagline-strip { background:var(--gold); color:var(--white); text-align:center; padding:12px 24px; font-size:0.85rem; font-weight:600; letter-spacing:0.06em; }

@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.fade-up { animation:fadeUp 0.7s ease forwards; }
.fade-up-delay-1 { animation-delay:0.1s; opacity:0; }
.fade-up-delay-2 { animation-delay:0.2s; opacity:0; }
.fade-up-delay-3 { animation-delay:0.3s; opacity:0; }
.fade-up-delay-4 { animation-delay:0.4s; opacity:0; }

@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr;gap:40px}
  .hero-card{display:none}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .areas-grid{grid-template-columns:repeat(3,1fr)}
  .service-content-inner{grid-template-columns:1fr}
  .service-sidebar{position:static}
  .contact-inner{grid-template-columns:1fr}
  .contact-info-card{position:static}
  .about-hero-inner{grid-template-columns:1fr}
  .values-grid{grid-template-columns:repeat(2,1fr)}
  .services-full-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .nav-links{display:none}
  .nav-cta{display:none}
  .hamburger{display:flex}
  .services-grid{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr 1fr}
  .form-grid{grid-template-columns:1fr}
  .quote-form{padding:28px 20px}
  .footer-grid{grid-template-columns:1fr;gap:28px}
  .areas-grid{grid-template-columns:repeat(2,1fr)}
  .values-grid{grid-template-columns:1fr}
  .thankyou-card{padding:40px 24px}
  .hero-inner{padding:48px 0}
  .section{padding:60px 24px}
  .services-full-grid{grid-template-columns:1fr}
}

/* ---- STOCK PHOTO SERVICE CARDS ---- */
.service-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  margin: -28px -28px 20px -28px;
  width: calc(100% + 56px);
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

/* ---- WHY SECTION PHOTO ICONS ---- */
.why-icon-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
}
.why-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- SERVICES PAGE PHOTO CARDS ---- */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-full-card {
  border-radius: var(--radius-lg, 18px);
  overflow: hidden;
  border: 1.5px solid var(--gray-200, #e8e8e8);
  transition: all 0.25s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.16);
  border-color: var(--green, #3B6E4A);
}
.sfc-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.sfc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.service-full-card:hover .sfc-img img {
  transform: scale(1.05);
}
.sfc-top {
  background: var(--green, #3B6E4A);
  padding: 16px 20px;
}
.sfc-top h3 {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  font-family: var(--font-body, sans-serif);
  font-weight: 600;
}
.sfc-body {
  padding: 20px;
  flex: 1;
}
.sfc-body p {
  color: var(--text-light, #5A6B60);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.sfc-link {
  color: var(--blue, #4A7FA5);
  font-weight: 600;
  font-size: 0.88rem;
}

/* ---- ABOUT PAGE VALUE CARD IMAGES ---- */
.value-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.value-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.value-card:hover .value-img img {
  transform: scale(1.05);
}

/* ---- NAV LOGO IMAGE ---- */
.nav-logo {
  display: flex !important;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green, #2E7D4F);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text small {
  font-size: 0.65rem;
  color: var(--gray-500, #777);
  font-style: italic;
  font-weight: 400;
}

/* On mobile make the image slightly smaller */
@media (max-width: 700px) {
  .nav-logo-img {
    width: 40px;
    height: 40px;
  }
}

/* ---- HERO WELCOME IMAGE ---- */
.hero-welcome-img {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 48px rgba(0,0,0,0.35);
}
.hero-welcome-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-welcome-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  padding: 20px 20px 14px;
}
.hero-welcome-overlay span {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .hero-welcome-img {
    height: 200px;
    max-width: 100%;
  }
}

/* ---- HERO BANNER IMAGE ---- */
.hero-banner {
  position: relative;
  min-height: 100vh;
  background: none !important;
}
.hero-banner-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 60, 35, 0.82) 0%,
    rgba(26, 52, 80, 0.75) 100%
  );
}
.hero-banner .hero-bg { display: none; }
.hero-banner .hero-inner { position: relative; z-index: 2; }

@media (max-width: 700px) {
  .hero-banner { min-height: 90vh; }
  .hero-banner-img img { object-position: 60% center; }
}

/* ---- SERVICES PAGE MOBILE OVERRIDE ---- */
@media (max-width: 768px) {
  .services-full-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .service-full-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 110px;
  }
  .sfc-img {
    width: 120px;
    min-width: 120px;
    height: auto;
    border-radius: 0;
    flex-shrink: 0;
  }
  .sfc-top {
    display: none;
  }
  .sfc-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .sfc-body::before {
    content: attr(data-title);
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--green, #3B6E4A);
    margin-bottom: 6px;
    font-family: var(--font-body, sans-serif);
  }
  .sfc-body p {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .sfc-link {
    font-size: 0.82rem;
  }
}

/* ============================================
   INSTANT QUOTE WIDGET
   ============================================ */
.iq-widget { width: 100%; }
.iq-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.iq-service-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); margin-bottom: 20px; }
.iq-section-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; color: #888; margin: 24px 0 12px; }
.iq-slider-block { margin-bottom: 20px; }
.iq-slider-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.iq-slider-label { font-weight: 600; font-size: 0.92rem; color: #333; }
.iq-slider-val { background: var(--green); color: #fff; font-size: 0.82rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; }
.iq-range { -webkit-appearance: none; width: 100%; height: 6px; border-radius: 3px; background: #e0e0e0; outline: none; cursor: pointer; }
.iq-range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--green); cursor: pointer; box-shadow: 0 2px 6px rgba(46,125,79,0.35); }
.iq-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--green); cursor: pointer; border: none; }
.iq-addons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.iq-addon { display: flex; align-items: flex-start; gap: 10px; border: 1.5px solid #e8e8e8; border-radius: 10px; padding: 12px; cursor: pointer; background: #fff; transition: all 0.2s; }
.iq-addon:hover { border-color: #C9A84C; background: #fdf8ee; }
.iq-addon.active { border-color: #C9A84C; background: #fdf8ee; }
.iq-addon-check { width: 20px; height: 20px; min-width: 20px; border: 2px solid #ddd; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; transition: all 0.2s; margin-top: 2px; }
.iq-addon-info { flex: 1; }
.iq-addon-name { font-size: 0.85rem; font-weight: 600; color: #222; }
.iq-addon-badge { font-size: 0.75rem; color: #C9A84C; font-weight: 700; }
.iq-addon-desc { font-size: 0.75rem; color: #888; margin-top: 2px; line-height: 1.4; }
.iq-freq-row { display: flex; gap: 8px; flex-wrap: wrap; }
.iq-freq { flex: 1; min-width: 80px; border: 2px solid #e0e0e0; border-radius: 10px; padding: 10px 8px; cursor: pointer; background: #fff; text-align: center; transition: all 0.2s; }
.iq-freq:hover { border-color: var(--blue); background: #eaf2f8; }
.iq-freq.active { border-color: var(--blue); background: #eaf2f8; }
.iq-freq-name { font-size: 0.82rem; font-weight: 700; color: #333; }
.iq-freq-note { font-size: 0.7rem; color: var(--green); font-weight: 600; margin-top: 2px; }
.iq-price-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 8px 40px rgba(0,0,0,0.10); border-top: 5px solid var(--green); position: sticky; top: 88px; }
.iq-price-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #888; margin-bottom: 8px; }
.iq-total { font-size: 3rem; font-weight: 800; color: var(--green); font-family: Georgia, serif; line-height: 1; margin-bottom: 4px; }
.iq-price-note { font-size: 0.75rem; color: #aaa; margin-bottom: 20px; }
.iq-breakdown { background: #f8f9f7; border-radius: 10px; padding: 14px; margin-bottom: 20px; }
.iq-br-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: #555; padding: 5px 0; border-bottom: 1px solid #eee; }
.iq-br-row:last-child { border-bottom: none; }
.iq-disc { color: var(--green) !important; font-weight: 600; }
.iq-total-row { font-weight: 700 !important; color: #1a1a1a !important; font-size: 0.95rem !important; padding-top: 8px !important; }
.iq-book-btn { display: block; background: var(--green); color: #fff; text-align: center; padding: 14px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; margin-bottom: 14px; }
.iq-book-btn:hover { background: var(--green-dark); transform: translateY(-2px); }
.iq-trust { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.iq-trust span { font-size: 0.72rem; color: #888; font-weight: 500; }

/* Quote section wrapper on pages */
.iq-section { padding: 72px 0; background: var(--off-white); }
.iq-section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

@media (max-width: 900px) {
  .iq-wrap { grid-template-columns: 1fr; }
  .iq-price-card { position: static; }
  .iq-total { font-size: 2.4rem; }
}
@media (max-width: 600px) {
  .iq-addons { grid-template-columns: 1fr; }
  .iq-freq-row { flex-wrap: nowrap; }
  .iq-freq { min-width: 0; padding: 8px 4px; }
  .iq-freq-name { font-size: 0.72rem; }
}
