/* ================================================================
   Palillastäd – Complete Stylesheet (Clean Build)
   Scandinavian-warm design, family business tone
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --mint: #E8F5EC; --deep-green: #1B4332; --accent-green: #2D6A4F;
  --soft-green: #95D5B2; --warm-cream: #FEFAF3; --gold: #D4A843;
  --text-dark: #1A1A2E; --text-light: #6B7280; --text-muted: #9CA3AF;
  --white: #FFFFFF; --border: rgba(27,67,50,0.08);
  --shadow: 0 4px 30px rgba(27,67,50,0.08);
  --shadow-lg: 0 20px 60px rgba(27,67,50,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark); background: var(--warm-cream); overflow-x: hidden;
}

/* ===== DARK MODE ===== */
body.dark-mode {
  --warm-cream: #0E0E11; --white: #17171C; --mint: #1a2e23;
  --deep-green: #95D5B2; --accent-green: #95D5B2;
  --text-dark: #F5F0EB; --text-light: #9A9AA8; --text-muted: #5E5E6E;
  --shadow: 0 4px 30px rgba(0,0,0,0.2); --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
  --border: rgba(255,255,255,0.06);
}
body.dark-mode nav { background: rgba(14,14,17,0.9); }
body.dark-mode .dropdown-menu { background: #1E1E25; }
body.dark-mode .dropdown-menu a { color: #F5F0EB !important; }
body.dark-mode .dropdown-menu a:hover { background: #25252E; }
body.dark-mode footer { background: #0a0a0d; }
body.dark-mode .checklist-box, body.dark-mode .faq-item,
body.dark-mode .review-card, body.dark-mode .form-card,
body.dark-mode .calculator, body.dark-mode .calendar-card { background: #1E1E25; }
body.dark-mode .pricing-table thead { background: #1a2e23; }
body.dark-mode .pricing-table tbody tr { background: #17171C; }
body.dark-mode .pricing-table tbody tr:hover { background: #1a2e23; }
body.dark-mode .page-hero { background: linear-gradient(135deg, #0E0E11, #1a2e23); }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100; padding: 1rem 4%;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(254,250,243,0.88); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--deep-green); text-decoration: none; }
.logo span { color: var(--gold); }
.dark-toggle {
  background: none; border: 2px solid var(--border); border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; transition: all 0.3s; color: var(--text-dark);
}
.dark-toggle:hover { border-color: var(--gold); background: var(--mint); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--deep-green); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-size: 0.85rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent-green); }
.nav-phone { color: var(--deep-green) !important; font-weight: 600; }
.btn-nav {
  background: var(--deep-green); color: var(--white) !important; padding: 0.6rem 1.4rem;
  border-radius: 50px; font-weight: 700; font-size: 0.82rem; transition: all 0.3s;
}
.btn-nav:hover { background: var(--accent-green); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(27,67,50,0.25); }
.btn-job {
  color: var(--accent-green) !important; border: 2px solid var(--accent-green);
  padding: 0.5rem 1.2rem; border-radius: 50px; font-weight: 700; font-size: 0.82rem; transition: all 0.3s;
}
.btn-job:hover { background: var(--accent-green); color: var(--white) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 5px); left: -1rem;
  background: var(--white); border-radius: 12px; padding: 0.6rem 0;
  min-width: 230px; box-shadow: var(--shadow-lg); z-index: 200;
}
.nav-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 12px; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 0.6rem 1.4rem; font-size: 0.84rem; color: var(--text-dark) !important; transition: all 0.2s; }
.dropdown-menu a:hover { background: var(--mint); color: var(--accent-green) !important; padding-left: 1.7rem; }

/* ===== PAGE HERO ===== */
.page-hero { padding: 9rem 5% 5rem; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--warm-cream), var(--mint)); }
.page-hero-bg { position: absolute; top: -30%; right: -15%; width: 50%; height: 160%; background: linear-gradient(135deg, var(--mint), var(--soft-green)); border-radius: 0 0 0 40%; opacity: 0.4; z-index: 0; }
.page-hero-content { position: relative; z-index: 1; max-width: 650px; }
.page-hero .breadcrumb { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1.5rem; }
.page-hero .breadcrumb a { color: var(--accent-green); text-decoration: none; }
.page-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.1; color: var(--deep-green); margin-bottom: 1.2rem; }
.page-hero h1 em { font-style: normal; position: relative; }
.page-hero h1 em::after { content: ''; position: absolute; bottom: 4px; left: 0; width: 100%; height: 10px; background: var(--gold); opacity: 0.3; z-index: -1; border-radius: 2px; }
.page-hero p { font-size: 1.05rem; color: var(--text-light); line-height: 1.7; max-width: 520px; }
.hero-buttons { display: flex; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn-primary { background: var(--deep-green); color: var(--white); padding: 0.9rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--accent-green); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(27,67,50,0.3); }
.btn-secondary { color: var(--text-dark); text-decoration: none; font-weight: 600; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.3s; }
.btn-secondary:hover { color: var(--accent-green); }
.btn-outline { border: 2px solid var(--deep-green); color: var(--deep-green); padding: 0.8rem 1.8rem; border-radius: 50px; text-decoration: none; font-weight: 600; background: transparent; transition: all 0.3s; display: inline-flex; align-items: center; }
.btn-outline:hover { background: var(--deep-green); color: var(--white); }

/* ===== SECTIONS ===== */
.section { padding: 6rem 5%; }
.section--white { background: var(--white); }
.section--cream { background: var(--warm-cream); }
.section--green { background: var(--deep-green); color: var(--white); }
.section--mint { background: var(--mint); }
.container { max-width: 1100px; margin: 0 auto; }
.text-center { text-align: center; }
.section-label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-green); margin-bottom: 0.8rem; }
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.section--green .section-label { color: var(--soft-green); }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--deep-green); margin-bottom: 0.8rem; }
.section--green .section-title { color: var(--white); }
.section-subtitle { font-size: 1rem; color: var(--text-light); max-width: 520px; line-height: 1.7; margin-bottom: 2.5rem; }
.section--green .section-subtitle { color: rgba(255,255,255,0.7); }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-center .section-label { justify-content: center; }

/* ===== CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.card { background: var(--warm-cream); border-radius: 20px; padding: 2.2rem 1.8rem; transition: all 0.4s; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
a.card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
a.card .card-link { margin-top: auto; padding-top: 1rem; font-weight: 700; color: var(--accent-green); font-size: 0.88rem; }
.card--white { background: var(--white); }
.card--dark { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.card--dark:hover { background: rgba(255,255,255,0.1); }
.card-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--mint); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; }
.card h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--deep-green); margin-bottom: 0.6rem; }
.card--dark h3 { color: var(--white); }
.card p { color: var(--text-light); line-height: 1.7; font-size: 0.92rem; }
.card--dark p { color: rgba(255,255,255,0.65); }
.card .num { font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--gold); opacity: 0.4; margin-bottom: 0.8rem; }

/* ===== TWO COLUMN ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.content-block h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 2.5vw, 2.1rem); color: var(--deep-green); margin-bottom: 1.2rem; }
.content-block h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--deep-green); margin: 1.8rem 0 0.6rem; }
.content-block p { color: var(--text-light); line-height: 1.8; font-size: 0.95rem; margin-bottom: 1rem; }

/* ===== CHECKLIST ===== */
.checklist-box { background: var(--white); border-radius: 20px; padding: 2.2rem; box-shadow: var(--shadow); }
.checklist-box h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--deep-green); margin-bottom: 1.2rem; }
.checklist-group { margin-bottom: 1.2rem; }
.checklist-group h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-green); margin-bottom: 0.6rem; }
.checklist-group li { list-style: none; font-size: 0.88rem; color: var(--text-light); padding: 0.25rem 0 0.25rem 1.4rem; position: relative; }
.checklist-group li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===== PRICING TABLE ===== */
.pricing-table { width: 100%; max-width: 780px; margin: 0 auto; border-collapse: collapse; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.pricing-table thead { background: var(--deep-green); }
.pricing-table th { padding: 1rem 1.3rem; text-align: left; color: var(--white); font-size: 0.85rem; font-weight: 600; }
.pricing-table td { padding: 0.9rem 1.3rem; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.pricing-table tbody tr { background: var(--white); transition: background 0.2s; }
.pricing-table tbody tr:hover { background: var(--mint); }
.price-col { font-weight: 700; color: var(--accent-green); }
.rut-col { color: var(--gold); font-weight: 600; }
.pricing-note { text-align: center; margin-top: 1.2rem; font-size: 0.82rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-item { background: var(--white); border-radius: 14px; padding: 1.5rem 1.8rem; margin-bottom: 0.8rem; box-shadow: var(--shadow); cursor: pointer; transition: all 0.3s; }
.faq-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.faq-item h3 { font-size: 1rem; font-weight: 600; color: var(--deep-green); display: flex; justify-content: space-between; align-items: center; }
.faq-item h3::after { content: '+'; font-size: 1.3rem; color: var(--gold); transition: transform 0.3s; }
.faq-item.open h3::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-light); line-height: 1.7; font-size: 0.92rem; max-height: 0; overflow: hidden; transition: all 0.4s; margin-top: 0; }
.faq-item.open p { max-height: 300px; margin-top: 0.8rem; }

/* ===== REVIEWS ===== */
.review-card { background: var(--warm-cream); border-radius: 18px; padding: 2rem; box-shadow: var(--shadow); transition: all 0.3s; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.review-text { color: var(--text-light); line-height: 1.7; font-size: 0.92rem; font-style: italic; margin-bottom: 1.2rem; }
.reviewer { display: flex; align-items: center; gap: 0.7rem; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--mint); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--deep-green); font-size: 0.8rem; }
.reviewer-name { font-weight: 600; font-size: 0.85rem; }
.reviewer-loc { font-size: 0.78rem; color: var(--text-light); }

/* ===== AREA TAGS ===== */
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.area-tag { background: var(--white); padding: 0.45rem 1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 500; color: var(--text-dark); text-decoration: none; transition: all 0.3s; }
.area-tag:hover { background: var(--deep-green); color: var(--white); }

/* ===== CTA BOX ===== */
.cta-box { background: linear-gradient(135deg, var(--deep-green), var(--accent-green)); border-radius: 28px; padding: 4.5rem 2.5rem; max-width: 780px; margin: 0 auto; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -40%; right: -15%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.cta-box h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--white); margin-bottom: 0.8rem; }
.cta-box p { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 420px; margin: 0 auto 2rem; line-height: 1.7; }
.btn-cta { background: var(--white); color: var(--deep-green); padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }

/* ===== CONTACT FORM + CALENDAR ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.form-card { background: var(--white); border-radius: 22px; padding: 2.2rem; box-shadow: var(--shadow); }
.form-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--deep-green); margin-bottom: 0.3rem; }
.form-card .sub { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-group { margin-bottom: 0.6rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 0.92rem; transition: border-color 0.3s; background: var(--warm-cream); color: var(--text-dark);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-green); box-shadow: 0 0 0 3px rgba(45,106,79,0.1); }
.form-group textarea { min-height: 90px; resize: vertical; }
.btn-submit { width: 100%; padding: 0.9rem; margin-top: 0.5rem; background: var(--deep-green); color: var(--white); border: none; border-radius: 12px; font-family: inherit; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.3s; }
.btn-submit:hover { background: var(--accent-green); transform: translateY(-2px); }

/* Calendar Card */
.calendar-card { background: var(--white); border-radius: 22px; padding: 2rem; box-shadow: var(--shadow); border: 2px solid var(--mint); margin-bottom: 1.5rem; }
.calendar-card-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--border); }
.calendar-card-header svg { flex-shrink: 0; }
.calendar-card-header h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--deep-green); margin: 0; }
.calendar-card-header p { font-size: 0.8rem; color: var(--text-light); margin: 0.15rem 0 0; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cal-header h4 { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--deep-green); margin: 0; }
.cal-nav { background: var(--warm-cream); border: 1px solid var(--border); border-radius: 8px; width: 34px; height: 34px; cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: var(--text-dark); }
.cal-nav:hover { background: var(--mint); border-color: var(--accent-green); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; text-align: center; }
.cal-day-label { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; padding: 0.3rem 0; }
.cal-day { padding: 0.55rem 0.2rem; border-radius: 8px; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; border: none; background: none; color: var(--text-dark); font-family: inherit; font-weight: 500; }
.cal-day:hover:not(.disabled):not(.empty) { background: var(--mint); }
.cal-day.today { font-weight: 800; color: var(--accent-green); background: rgba(45,106,79,0.08); }
.cal-day.selected { background: var(--deep-green); color: var(--white); font-weight: 700; box-shadow: 0 3px 10px rgba(27,67,50,0.2); }
.cal-day.disabled { color: var(--text-muted); opacity: 0.25; cursor: default; }
.cal-day.disabled:hover, .cal-day.empty:hover { background: none; }
.cal-day.empty { cursor: default; }
.cal-selected-date { margin-top: 0.8rem; padding: 0.8rem; background: var(--mint); border-radius: 10px; text-align: center; font-weight: 600; font-size: 0.88rem; color: var(--deep-green); }

/* Contact info cards */
.contact-info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.contact-info-card { background: var(--white); border-radius: 14px; padding: 1.3rem; text-align: center; box-shadow: var(--shadow); transition: all 0.3s; }
.contact-info-card:hover { transform: translateY(-3px); }
.contact-info-card svg { width: 26px; height: 26px; stroke: var(--accent-green); fill: none; stroke-width: 2; margin-bottom: 0.6rem; }
.contact-info-card h4 { font-size: 0.82rem; font-weight: 700; margin-bottom: 0.2rem; }
.contact-info-card p { font-size: 0.85rem; color: var(--text-light); }
.contact-info-card a { color: var(--accent-green); text-decoration: none; font-weight: 600; }

/* Map */
.map-container { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); min-height: 250px; }
.map-container iframe { width: 100%; height: 100%; min-height: 250px; border: 0; }

/* ===== CALCULATOR ===== */
.calculator { background: var(--white); border-radius: 22px; padding: 2.2rem; box-shadow: var(--shadow); max-width: 560px; margin: 0 auto; }
.calculator h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--deep-green); margin-bottom: 1.2rem; text-align: center; }
.calc-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; gap: 1rem; }
.calc-label { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); min-width: 80px; }
.calc-slider { flex: 1; -webkit-appearance: none; height: 8px; border-radius: 4px; background: var(--mint); outline: none; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--deep-green); cursor: pointer; box-shadow: 0 2px 8px rgba(27,67,50,0.3); }
.calc-value { min-width: 55px; text-align: right; font-weight: 700; color: var(--deep-green); }
.calc-select { flex: 1; padding: 0.65rem 0.8rem; border: 2px solid var(--border); border-radius: 10px; font-family: inherit; font-size: 0.9rem; background: var(--warm-cream); color: var(--text-dark); }
.calc-result { text-align: center; padding: 1.3rem; margin-top: 0.8rem; background: linear-gradient(135deg, var(--deep-green), var(--accent-green)); border-radius: 14px; color: var(--white); }
.calc-result .price-big { font-family: 'DM Serif Display', serif; font-size: 2.2rem; }
.calc-result .price-rut { font-size: 1rem; opacity: 0.85; }
.calc-result .price-note { font-size: 0.78rem; opacity: 0.6; margin-top: 0.3rem; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card { background: var(--white); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.4s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 180px; background: linear-gradient(135deg, var(--mint), var(--soft-green)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-card-body { padding: 1.8rem; }
.blog-card-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-green); margin-bottom: 0.6rem; display: inline-block; }
.blog-card-body h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--deep-green); margin-bottom: 0.6rem; }
.blog-card-body p { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.8rem; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-muted); }

/* ===== WIZARD OVERLAY ===== */
.wizard-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.65); z-index: 10001; display: none; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.wizard-overlay.show { display: flex; }
.wizard { background: var(--white); border-radius: 24px; width: 94%; max-width: 560px; max-height: 92vh; overflow-y: auto; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.35); animation: wizardIn 0.35s ease; }
@keyframes wizardIn { from { opacity: 0; transform: scale(0.93) translateY(25px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.wizard-close { position: absolute; top: 0.8rem; right: 0.8rem; z-index: 10; background: var(--warm-cream); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: all 0.3s; }
.wizard-close:hover { background: var(--mint); color: var(--deep-green); }
.wizard-header { padding: 2.2rem 2.2rem 0; text-align: center; }
.wizard-header h2 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--deep-green); margin-bottom: 0.3rem; }
.wizard-header p { color: var(--text-light); font-size: 0.88rem; }
.wizard-progress { display: flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 1.2rem 2rem 0; }
.wizard-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mint); transition: all 0.3s; }
.wizard-dot.active { background: var(--deep-green); transform: scale(1.3); }
.wizard-dot.done { background: var(--gold); }
.wizard-line { width: 25px; height: 2px; background: var(--mint); }
.wizard-line.done { background: var(--gold); }
.wizard-body { padding: 1.5rem 2.2rem 2.2rem; }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: stepFade 0.3s ease; }
@keyframes stepFade { from { opacity: 0; transform: translateX(15px); } to { opacity: 1; transform: translateX(0); } }
.wizard-step h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--deep-green); margin-bottom: 0.4rem; text-align: center; }
.wizard-step .step-desc { text-align: center; color: var(--text-light); font-size: 0.85rem; margin-bottom: 1.3rem; }
.wizard-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.wizard-options--full { grid-template-columns: 1fr; }
.wizard-options--three { grid-template-columns: 1fr 1fr 1fr; }
.wizard-option { background: var(--warm-cream); border: 2px solid transparent; border-radius: 12px; padding: 1rem; text-align: center; cursor: pointer; transition: all 0.25s; position: relative; }
.wizard-option:hover { border-color: var(--accent-green); background: var(--mint); }
.wizard-option.selected { border-color: var(--deep-green); background: var(--mint); }
.wizard-option.selected::after { content: '✓'; position: absolute; top: 0.5rem; right: 0.5rem; background: var(--deep-green); color: var(--white); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 800; }
.opt-icon { font-size: 1.6rem; margin-bottom: 0.4rem; display: block; }
.opt-label { font-weight: 700; font-size: 0.88rem; color: var(--deep-green); }
.opt-sub { font-size: 0.75rem; color: var(--text-light); margin-top: 0.15rem; }
.wizard-slider-wrap { text-align: center; padding: 0.8rem 0; }
.wizard-slider-val { font-family: 'DM Serif Display', serif; font-size: 2.8rem; color: var(--deep-green); }
.wizard-slider-val span { font-size: 1.1rem; color: var(--text-light); }
.wizard-slider { width: 100%; -webkit-appearance: none; height: 10px; border-radius: 5px; background: var(--mint); outline: none; margin: 0.8rem 0; }
.wizard-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--deep-green); cursor: pointer; }
.wizard-input { width: 100%; padding: 0.85rem 1rem; border: 2px solid var(--border); border-radius: 12px; font-family: inherit; font-size: 0.95rem; background: var(--warm-cream); color: var(--text-dark); transition: border-color 0.3s; margin-bottom: 0.6rem; }
.wizard-input:focus { outline: none; border-color: var(--accent-green); }
.wizard-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.wizard-input-group { margin-bottom: 0.6rem; }
.wizard-input-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.2rem; }
.wizard-btns { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.wizard-btn { flex: 1; padding: 0.9rem; border-radius: 12px; font-family: inherit; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.3s; border: none; }
.wizard-btn--next { background: var(--deep-green); color: var(--white); }
.wizard-btn--next:hover { background: var(--accent-green); transform: translateY(-2px); }
.wizard-btn--back { background: var(--warm-cream); color: var(--text-dark); flex: 0.4; }
.wizard-btn--submit { background: var(--gold); color: var(--deep-green); }
.wizard-btn--submit:hover { background: #e6a33d; }
.wizard-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.wizard-success { text-align: center; padding: 1.5rem 0; }
.wizard-success .success-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--mint); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin: 0 auto 1.2rem; }
.wizard-success h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--deep-green); margin-bottom: 0.4rem; }
.wizard-success p { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; }
.wizard-upload { border: 2px dashed var(--border); border-radius: 12px; padding: 1.5rem; text-align: center; cursor: pointer; transition: all 0.3s; position: relative; }
.wizard-upload:hover { border-color: var(--accent-green); background: var(--mint); }
.wizard-upload input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.wizard-upload.has-file { border-color: var(--gold); background: rgba(212,168,67,0.08); }

/* ===== STICKY CTA ===== */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: var(--deep-green); padding: 0.7rem 2rem; display: none; align-items: center; justify-content: center; gap: 1.2rem; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); }
.sticky-cta.visible { display: flex; }
.sticky-cta p { color: var(--white); font-size: 0.85rem; font-weight: 600; margin: 0; }
.sticky-cta .btn-sticky { background: var(--gold); color: var(--deep-green); padding: 0.5rem 1.4rem; border-radius: 50px; text-decoration: none; font-weight: 800; font-size: 0.82rem; transition: all 0.3s; white-space: nowrap; }
.sticky-cta .btn-sticky:hover { background: #e6a33d; }
.sticky-cta .btn-sticky--phone { background: transparent; border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); }
.sticky-cta .close-sticky { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.1rem; cursor: pointer; padding: 0.2rem; }

/* ===== POPUP ===== */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 10000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.popup-overlay.show { display: flex; }
.popup-card { background: var(--white); border-radius: 22px; padding: 2.5rem; max-width: 460px; width: 90%; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.3); animation: wizardIn 0.4s ease; }
.popup-close { position: absolute; top: 0.8rem; right: 0.8rem; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text-light); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.popup-close:hover { background: var(--mint); color: var(--text-dark); }
.popup-card h2 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--deep-green); margin-bottom: 0.4rem; }
.popup-card .sub { color: var(--text-light); font-size: 0.88rem; margin-bottom: 1.2rem; }
.discount-badge { display: inline-block; background: var(--gold); color: var(--deep-green); padding: 0.35rem 0.9rem; border-radius: 8px; font-weight: 800; font-size: 1rem; margin-bottom: 0.8rem; }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: var(--deep-green); color: var(--white); padding: 1.2rem 2rem; display: none; align-items: center; justify-content: center; gap: 1.2rem; box-shadow: 0 -4px 30px rgba(0,0,0,0.2); }
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 0.85rem; line-height: 1.5; max-width: 550px; margin: 0; }
.cookie-banner a { color: var(--gold); }
.cookie-btns { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-btn { padding: 0.55rem 1.3rem; border-radius: 50px; font-family: inherit; font-size: 0.82rem; font-weight: 700; cursor: pointer; border: none; transition: all 0.3s; }
.cookie-btn--accept { background: var(--gold); color: var(--deep-green); }
.cookie-btn--accept:hover { background: #e6a33d; }
.cookie-btn--decline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.cookie-btn--decline:hover { border-color: var(--white); }

/* Sticky and cookie coordination handled by JS */

/* ===== WHATSAPP + BACK TO TOP ===== */
.whatsapp-btn { position: fixed; bottom: 5rem; right: 1.5rem; z-index: 799; width: 52px; height: 52px; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(37,211,102,0.4); text-decoration: none; transition: all 0.3s; }
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
.back-to-top { position: fixed; bottom: 5rem; left: 1.5rem; z-index: 799; width: 42px; height: 42px; border-radius: 50%; background: var(--deep-green); color: var(--white); display: none; align-items: center; justify-content: center; box-shadow: var(--shadow); cursor: pointer; border: none; transition: all 0.3s; font-size: 1.1rem; }
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--accent-green); transform: translateY(-3px); }

/* Add padding to footer so content isn't hidden behind sticky bar */

/* ===== 404 ===== */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.error-page h1 { font-family: 'DM Serif Display', serif; font-size: clamp(6rem, 15vw, 10rem); color: var(--mint); line-height: 1; }
.error-page h2 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--deep-green); margin: 0.8rem 0; }
.error-page p { color: var(--text-light); font-size: 1rem; max-width: 420px; margin: 0 auto 1.5rem; line-height: 1.7; }

/* ===== FOOTER ===== */
footer { background: var(--text-dark); color: rgba(255,255,255,0.6); padding: 3.5rem 5% 4.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .logo { color: var(--white); }
.footer-brand p { margin-top: 0.8rem; font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
footer h4 { color: var(--white); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer li { margin-bottom: 0.5rem; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
footer a:hover { color: var(--soft-green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; text-align: center; font-size: 0.8rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(25px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; gap: 0; padding: 0.8rem 0; box-shadow: var(--shadow-lg); border-radius: 0 0 14px 14px; }
  .nav-links.show { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.7rem 1.8rem; }
  .nav-links .btn-nav, .nav-links .btn-job { margin: 0.4rem 1.5rem; text-align: center; display: block; }
  .nav-dropdown::after { display: none; }
  .dropdown-menu { position: static; box-shadow: none; border-radius: 0; background: var(--mint); min-width: 100%; display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { padding-left: 2.5rem !important; }
  .mobile-toggle { display: block; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid, .contact-info-cards { grid-template-columns: 1fr 1fr; }
  .form-grid, .wizard-input-row { grid-template-columns: 1fr; }
  .wizard-options, .wizard-options--three { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  /* Bottom fixed elements - stack properly on mobile */
  .sticky-cta.visible { flex-wrap: wrap; padding: 0.6rem 1rem; gap: 0.5rem; font-size: 0.8rem; }
  .sticky-cta p { width: 100%; text-align: center; font-size: 0.78rem; }
  .sticky-cta .btn-sticky { font-size: 0.78rem; padding: 0.45rem 1rem; }
  .cookie-banner { flex-direction: column; text-align: center; padding: 1rem 1.2rem; gap: 0.8rem; }
  .cookie-banner p { font-size: 0.8rem; }
  .whatsapp-btn { bottom: 4.5rem; right: 1rem; width: 48px; height: 48px; }
  .whatsapp-btn svg { width: 24px; height: 24px; }
  .back-to-top.visible { bottom: 4.5rem; left: 1rem; width: 38px; height: 38px; font-size: 0.95rem; }
  footer { padding-bottom: 5rem; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .contact-info-cards { grid-template-columns: 1fr; } }
