/* ===== BELL BROTHERS ESTATE CARE — DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --forest: #5C6B50;
  --forest-light: #6B7B56;
  --sage: #8A9478;
  --sage-light: #A3AC94;
  --terracotta: #5C6B50;
  --terracotta-light: #6B7B56;
  --sandstone: #F0EDE8;
  --sandstone-light: #F7F5F2;
  --slate: #2D2B2B;
  --slate-light: #3D3B3B;
  --snow: #FAFAF8;
  --sky: #8A9478;
  --gold: #B8A06A;
  --gold-light: #CCBA85;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 30px rgba(92,107,80,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--slate);
  background: var(--snow);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', 'Georgia', serif; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); font-weight: 600; }
p { font-size: 1.05rem; color: #4a5568; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 6px; font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer;
  transition: var(--transition); position: relative; overflow: hidden;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-primary { background: linear-gradient(135deg, var(--forest), var(--forest-light)); color: var(--white); }
.btn-secondary { background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light)); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white); }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(30, 35, 40, 0.95); backdrop-filter: blur(20px);
  padding: 10px 0; box-shadow: var(--shadow-md);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 70px; width: auto; border-radius: 6px; background: white; padding: 5px 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); object-fit: contain; }
.navbar.scrolled .nav-logo img { height: 50px; padding: 4px 6px; }
.nav-logo-text { display: none; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; padding: 10px 22px !important; font-size: 0.8rem !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger span { width: 28px; height: 3px; background: var(--white); border-radius: 3px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,43,43,0.88) 0%, rgba(92,107,80,0.72) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 0 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,160,106,0.15); border: 1px solid rgba(184,160,106,0.3);
  padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
  color: var(--gold); font-weight: 500; font-size: 0.9rem;
}
.hero-watermark {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; overflow: hidden;
}
.hero-watermark img {
  width: 160vh; height: 107vh; max-width: none; object-fit: contain;
  opacity: 0.16; filter: brightness(0) invert(1);
}
.hero-logo-showcase {
  display: flex; justify-content: center; margin-bottom: 36px;
}
.hero-logo-img {
  height: 120px; width: auto; object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4)) drop-shadow(0 0 30px rgba(184,160,106,0.15));
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.2rem; margin-bottom: 36px; max-width: 650px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-btns .btn-outline { padding: 16px 40px; font-size: 1.05rem; border-width: 2px; }
.hero-stats {
  display: flex; gap: 48px; justify-content: center; margin-top: 60px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.hero-stat .number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.hero-stat .label { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 4px; }

/* ===== SECTION STYLES ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-label {
  display: inline-block; font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px;
  color: var(--forest); margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: #6b7280; }
.section-dark { background: var(--slate); }
.section-dark h2, .section-dark h3, .section-dark p, .section-dark .section-label { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-sand { background: var(--sandstone-light); }

/* ===== MOUNTAIN DIVIDER ===== */
.mountain-divider {
  width: 100%; height: 80px; position: relative; overflow: hidden; margin-top: -1px;
}
.mountain-divider svg { width: 100%; height: 100%; display: block; }

/* ===== TRUST BADGES ===== */
.trust-bar { background: var(--forest); padding: 24px 0; }
.trust-badges { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 12px; color: var(--white);
}
.trust-badge .badge-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem;
}
.trust-badge .badge-text { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.3px; }

/* ===== PROPERTIES WE SERVE ===== */
.properties-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.property-tile {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid rgba(0,0,0,0.06);
}
.property-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.property-tile-img { overflow: hidden; height: 220px; }
.property-tile-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.property-tile:hover .property-tile-img img { transform: scale(1.05); }
.property-tile-content { padding: 24px; }
.property-tile-content h3 { margin-bottom: 8px; }
.property-tile-content p { font-size: 0.9rem; color: #6b7280; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  transition: var(--transition); position: relative; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--sage)); opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--sandstone), var(--sandstone-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; margin-bottom: 16px; }
.service-card .service-link {
  color: var(--forest); font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .service-link:hover { gap: 10px; color: var(--terracotta); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrapper { position: relative; }
.about-image {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.experience-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
  color: var(--white); padding: 20px 28px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-lg);
}
.experience-badge .exp-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.experience-badge .exp-text { font-size: 0.85rem; font-weight: 600; margin-top: 4px; }
.about-content .section-label { text-align: left; }
.about-content h2 { margin-bottom: 20px; }
.about-content > p { margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-feature {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 0.95rem;
}
.about-feature .check {
  width: 24px; height: 24px; border-radius: 50%; background: var(--sandstone);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest); font-size: 0.8rem; flex-shrink: 0;
}

/* ===== BEFORE/AFTER GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 800px; margin: 0 auto; }
.ba-slider-container {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); cursor: ew-resize; aspect-ratio: 16/10;
}
.ba-slider-container img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
  user-select: none; -webkit-user-drag: none;
}
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-slider-line {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 4px;
  background: var(--white); z-index: 10; transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.ba-slider-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--white);
  box-shadow: var(--shadow-md); z-index: 11;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--forest);
}
.ba-label {
  position: absolute; top: 16px; padding: 6px 16px; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.85rem;
  color: var(--white); z-index: 5; pointer-events: none;
}
.ba-label-before { left: 16px; background: rgba(26,39,68,0.85); }
.ba-label-after { right: 16px; background: rgba(45,80,22,0.85); }

/* ===== ESTIMATE CALCULATOR ===== */
.estimate-section { background: linear-gradient(135deg, var(--slate) 0%, var(--slate-light) 100%); }
.estimate-wrapper { max-width: 900px; margin: 0 auto; }
.estimate-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl);
  padding: 48px; position: relative; overflow: hidden;
}
.estimate-card::before {
  content: ''; position: absolute; top: -50%; right: -50%;
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,80,22,0.15), transparent);
}
.estimate-steps { display: flex; gap: 8px; margin-bottom: 40px; justify-content: center; }
.estimate-step {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem;
  transition: var(--transition);
}
.estimate-step.active { background: var(--gold); color: var(--slate); }
.estimate-step.completed { background: var(--forest); color: var(--white); }
.step-connector { width: 40px; height: 2px; background: rgba(255,255,255,0.1); align-self: center; }
.step-connector.active { background: var(--gold); }

.estimate-form-step { display: none; animation: fadeUp 0.4s ease; }
.estimate-form-step.active { display: block; }

.estimate-form-step h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; text-align: center; }
.estimate-form-step > p { color: rgba(255,255,255,0.6); text-align: center; margin-bottom: 32px; }

.property-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.property-type-card {
  background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 32px; text-align: center;
  cursor: pointer; transition: var(--transition);
}
.property-type-card:hover { border-color: rgba(212,168,67,0.5); background: rgba(255,255,255,0.1); }
.property-type-card.selected { border-color: var(--gold); background: rgba(212,168,67,0.1); }
.property-type-card .type-icon { font-size: 2.5rem; margin-bottom: 12px; }
.property-type-card .type-name { color: var(--white); font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.1rem; }

.size-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.size-option {
  background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03); border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 20px; text-align: center;
  cursor: pointer; transition: var(--transition);
}
.size-option:hover { border-color: var(--olive); }
.size-option.selected { border-color: var(--olive); background: rgba(144,163,122,0.1); }
.size-option .size-label { color: var(--white); font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem; }
.size-option .size-range { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 4px; }

.service-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-checkbox {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 16px 20px; cursor: pointer;
  transition: var(--transition);
}
.service-checkbox:hover { border-color: rgba(212,168,67,0.5); }
.service-checkbox.selected { border-color: var(--gold); background: rgba(212,168,67,0.1); }
.service-checkbox .checkbox-mark {
  width: 24px; height: 24px; border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.3); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--transition);
}
.service-checkbox.selected .checkbox-mark { background: var(--gold); border-color: var(--gold); color: var(--slate); }
.service-checkbox .checkbox-label { color: var(--white); font-weight: 500; font-size: 0.95rem; }

.frequency-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.freq-option {
  background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 20px; text-align: center;
  cursor: pointer; transition: var(--transition);
}
.freq-option:hover { border-color: rgba(212,168,67,0.5); }
.freq-option.selected { border-color: var(--gold); background: rgba(212,168,67,0.1); }
.freq-option .freq-name { color: var(--white); font-family: 'Playfair Display', serif; font-weight: 600; }
.freq-option .freq-discount { color: var(--gold); font-size: 0.8rem; font-weight: 600; margin-top: 4px; }

.estimate-nav { display: flex; justify-content: space-between; margin-top: 36px; }
.estimate-nav .btn { min-width: 140px; justify-content: center; }

/* Result */
.estimate-result { text-align: center; }
.result-price-wrap {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-xl);
  padding: 40px; margin: 24px 0 32px;
}
.result-label { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 8px; }
.result-price {
  font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.result-per { color: rgba(255,255,255,0.5); font-size: 1rem; margin-top: 8px; }
.result-disclaimer {
  color: rgba(255,255,255,0.4); font-size: 0.85rem; font-style: italic;
  max-width: 500px; margin: 0 auto 24px;
}
.result-breakdown { text-align: left; margin: 24px 0; }
.result-breakdown h4 { color: var(--white); margin-bottom: 12px; font-size: 1rem; }
.breakdown-item {
  display: flex; justify-content: space-between; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
}
.breakdown-item span:last-child { color: var(--gold); font-weight: 600; }
.result-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== SCHEDULE ===== */
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.schedule-info h3 { font-size: 1.8rem; margin-bottom: 16px; }
.schedule-info p { margin-bottom: 24px; }
.schedule-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.schedule-perk { display: flex; align-items: center; gap: 12px; }
.schedule-perk .perk-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--sandstone);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.schedule-perk .perk-text { font-weight: 500; }

.schedule-form {
  background: var(--white); border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-lg);
}
.schedule-form h3 { font-size: 1.3rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px;
  color: var(--slate);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 2px solid #e5e7eb; font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: var(--transition); background: var(--snow);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--forest); margin-bottom: 8px; }

/* ===== TESTIMONIALS ===== */
.testimonials-carousel { max-width: 800px; margin: 0 auto; position: relative; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 48px;
  text-align: center; box-shadow: var(--shadow-md); display: none;
}
.testimonial-card.active { display: block; animation: fadeUp 0.5s ease; }
.testimonial-stars { color: var(--gold); font-size: 1.3rem; margin-bottom: 20px; letter-spacing: 4px; }
.testimonial-text { font-size: 1.15rem; line-height: 1.8; color: #4a5568; margin-bottom: 24px; font-style: italic; }
.testimonial-author { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; }
.testimonial-location { color: var(--sage); font-size: 0.9rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testimonial-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #d1d5db;
  cursor: pointer; transition: var(--transition); border: none;
}
.testimonial-dot.active { background: var(--forest); width: 28px; border-radius: 5px; }

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md); margin-bottom: 12px;
  overflow: hidden; border: 1px solid rgba(0,0,0,0.06);
}
.faq-question {
  width: 100%; padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; border: none; background: none;
  font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.05rem;
  color: var(--slate); text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--forest); }
.faq-icon { font-size: 1.2rem; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 24px 20px; color: #6b7280; }

/* ===== FOOTER ===== */
.footer { background: var(--slate); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 16px; font-size: 0.95rem; }
.footer-logo-img { height: 90px !important; width: auto !important; border-radius: 6px; background: white; padding: 6px 10px !important; box-shadow: 0 2px 8px rgba(0,0,0,0.1); object-fit: contain; }
.footer-col h4 {
  color: var(--white); font-family: 'Playfair Display', serif; font-size: 1rem;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.footer-col a { display: block; color: rgba(255,255,255,0.6); padding: 6px 0; font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.6); padding: 6px 0; }
.footer-contact-item .fc-icon { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; color: rgba(255,255,255,0.4); font-size: 0.85rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--slate); }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.floating-phone {
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  color: var(--white); padding: 14px 24px; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-weight: 700;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  transition: var(--transition); font-size: 1rem;
}
.floating-phone:hover { transform: scale(1.05); box-shadow: var(--shadow-glow); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--slate); color: var(--white); border: none;
  cursor: pointer; font-size: 1.2rem; display: flex;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--forest); transform: translateY(-3px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links { 
    position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
    background: var(--slate); flex-direction: column; justify-content: center;
    padding: 40px; gap: 24px; transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-watermark img { width: 150vmax; height: 100vmax; }
  .hero-logo-img { height: 90px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .experience-badge { bottom: -15px; right: 15px; }
  .about-features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .property-type-grid { grid-template-columns: 1fr; }
  .service-checkboxes { grid-template-columns: 1fr; }
  .size-options { grid-template-columns: 1fr 1fr; }
  .frequency-options { grid-template-columns: 1fr 1fr; }
  .estimate-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-badges { gap: 24px; }
  .floating-phone span.phone-text { display: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .size-options { grid-template-columns: 1fr; }
  .frequency-options { grid-template-columns: 1fr 1fr; }
}


/* ===== HERO: CLEAN MINIMAL (watermark + hero logo removed) ===== */
.hero-watermark, .hero-logo, .hero-logo-img { display: none !important; }
