/* Apex Build & Remodel — Main Stylesheet */

:root {
  --charcoal: #1c1e22;
  --charcoal-dark: #13151a;
  --charcoal-light: #2a2d34;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fb923c;
  --orange-pale: #fff7ed;
  --cream: #fafaf8;
  --cream-dark: #f0ede8;
  --white: #ffffff;
  --dark: #0f0f12;
  --gray-800: #27272a;
  --gray-700: #3f3f46;
  --gray-600: #52525b;
  --gray-400: #a1a1aa;
  --gray-200: #e4e4e7;
  --gray-100: #f4f4f5;
  --green: #16a34a;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.10), 0 10px 10px -5px rgba(0,0,0,0.04);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); line-height: 1.6; background: var(--white); }
h1,h2,h3 { font-family: 'Oswald', sans-serif; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h4,h5 { font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); text-transform: uppercase; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); text-transform: uppercase; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p { color: var(--gray-600); }
a { text-decoration: none; color: inherit; }
.text-center { text-align: center; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5.5rem 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(249,115,22,0.1); color: var(--orange-dark);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 4px; margin-bottom: 0.875rem;
  border-left: 3px solid var(--orange);
}
.section-title { margin-bottom: 0.875rem; color: var(--dark); }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; margin: 0 auto 3rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 4px;
  font-weight: 700; font-size: 0.88rem; cursor: pointer; letter-spacing: 0.04em; text-transform: uppercase;
  transition: all 0.25s ease; border: none; font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--charcoal); color: white; }
.btn-primary:hover { background: var(--charcoal-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-orange { background: var(--orange); color: white; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(249,115,22,0.35); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--charcoal); }
.btn-outline-orange { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: white; }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: #15803d; transform: translateY(-2px); }
.btn-lg { padding: 1.15rem 2.75rem; font-size: 0.95rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.78rem; }

/* ===== TOP BAR ===== */
.top-bar {
  position: fixed; top: 0; width: 100%; z-index: 1001;
  background: var(--charcoal-dark); padding: 0.45rem 0;
  font-size: 0.8rem; color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(249,115,22,0.3);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.4rem; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.4rem; }
.top-bar-item { display: flex; align-items: center; gap: 0.4rem; }
.top-bar-item i { color: var(--orange-light); font-size: 0.75rem; }
.top-bar-item a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.top-bar-item a:hover { color: var(--orange-light); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 38px; width: 100%; z-index: 1000;
  background: white; padding: 1.1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-bottom: 3px solid var(--orange);
}
.navbar.scrolled { padding: 0.75rem 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark {
  width: 42px; height: 42px; background: var(--orange);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.2rem; color: white; letter-spacing: -0.02em;
}
.logo-text-main { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1; }
.logo-text-sub { font-size: 0.68rem; color: var(--gray-600); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { font-size: 0.82rem; font-weight: 600; color: var(--gray-700); padding: 0.4rem 0.75rem; border-radius: 4px; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.05em; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links .nav-cta { background: var(--orange); color: white !important; padding: 0.55rem 1.2rem; font-weight: 700; }
.nav-links .nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: all 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 10rem; padding-bottom: 5rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(19,21,26,0.92) 0%, rgba(28,30,34,0.82) 60%, rgba(249,115,22,0.15) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(249,115,22,0.2); border: 1px solid rgba(249,115,22,0.4);
  color: var(--orange-light); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 4px; margin-bottom: 1.5rem;
}
.hero h1 { color: white; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--orange-light); font-style: normal; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 2.25rem; line-height: 1.75; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat { color: white; }
.hero-stat-num { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--orange-light); line-height: 1; display: block; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-badges-row { display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 0.4rem 0.875rem; }
.trust-badge i { color: var(--orange-light); font-size: 0.85rem; }
.trust-badge span { color: rgba(255,255,255,0.75); font-size: 0.75rem; font-weight: 600; }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; padding: 10rem 0 4rem; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(19,21,26,0.9) 0%, rgba(28,30,34,0.78) 100%); z-index: 1; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-label { margin-bottom: 0.75rem; }
.page-hero h1 { color: white; margin-bottom: 0.75rem; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--orange-light); }

/* ===== SERVICES CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card {
  background: white; border-radius: 10px; padding: 2.25rem;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--orange); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 52px; height: 52px; background: var(--orange-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.3rem; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.05rem; color: var(--charcoal); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.875rem; line-height: 1.7; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--orange); font-size: 0.82rem; font-weight: 700; margin-top: 1rem; text-transform: uppercase; letter-spacing: 0.06em; transition: gap 0.2s; }
.service-card .card-link:hover { gap: 0.65rem; }

/* ===== PORTFOLIO GRID ===== */
.portfolio-section { background: var(--gray-100); }
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.5rem 1.25rem; border: 2px solid var(--gray-200); background: white;
  border-radius: 4px; font-size: 0.78rem; font-weight: 700; cursor: pointer;
  color: var(--gray-600); transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover, .filter-btn.active { background: var(--orange); border-color: var(--orange); color: white; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.portfolio-card { border-radius: 8px; overflow: hidden; position: relative; aspect-ratio: 4/3; box-shadow: var(--shadow); cursor: pointer; }
.portfolio-card.hidden { display: none; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portfolio-card:hover img { transform: scale(1.05); }
.portfolio-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(19,21,26,0.85) 0%, transparent 55%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1.25rem; }
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }
.portfolio-card-info h4 { color: white; font-family: 'Oswald', sans-serif; font-size: 1rem; text-transform: uppercase; }
.portfolio-card-info p { color: rgba(255,255,255,0.65); font-size: 0.75rem; }
.portfolio-card-cat { position: absolute; top: 0.875rem; left: 0.875rem; background: var(--orange); color: white; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.2rem 0.6rem; border-radius: 3px; }

/* ===== ESTIMATE FORM ===== */
.estimate-section { background: var(--cream); }
.estimate-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start; }
.estimate-form-card { background: white; border-radius: 16px; padding: 3rem; box-shadow: var(--shadow-xl); }
.estimate-form-card h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.estimate-form-card > p { margin-bottom: 2rem; font-size: 0.9rem; }
.estimate-sidebar {}
.est-sidebar-card { background: var(--charcoal); border-radius: 14px; padding: 2rem; color: white; margin-bottom: 1.25rem; }
.est-sidebar-card h3 { color: white; font-size: 1.1rem; margin-bottom: 1rem; }
.est-feature { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.875rem; }
.est-feature:last-child { margin: 0; }
.est-feature i { color: var(--orange-light); font-size: 0.9rem; margin-top: 0.15rem; flex-shrink: 0; }
.est-feature span { color: rgba(255,255,255,0.75); font-size: 0.85rem; line-height: 1.6; }
.est-process { background: white; border-radius: 14px; padding: 2rem; box-shadow: var(--shadow); }
.est-process h3 { font-size: 1.1rem; margin-bottom: 1.25rem; color: var(--charcoal); }
.proc-step { display: flex; gap: 0.875rem; align-items: flex-start; margin-bottom: 1rem; }
.proc-step:last-child { margin: 0; }
.proc-num { width: 28px; height: 28px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; color: white; flex-shrink: 0; font-family: 'Oswald', sans-serif; }
.proc-text h4 { font-size: 0.85rem; color: var(--charcoal); margin-bottom: 0.15rem; }
.proc-text p { font-size: 0.78rem; }

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 2px solid var(--gray-200); border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s; background: white;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.875rem; display: flex; align-items: center; gap: 0.4rem; }
.form-note i { color: var(--green); }

/* ===== PROJECT TYPE CARDS ===== */
.project-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.project-type-card {
  border: 2px solid var(--gray-200); border-radius: 8px; padding: 0.875rem;
  cursor: pointer; transition: all 0.2s; background: white;
  display: flex; align-items: center; gap: 0.6rem; text-align: left;
}
.project-type-card:hover, .project-type-card.selected { border-color: var(--orange); background: var(--orange-pale); }
.project-type-card i { color: var(--orange); font-size: 1.1rem; width: 20px; }
.project-type-card span { font-size: 0.8rem; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.04em; }

/* ===== STATS BAND ===== */
.stats-band { background: var(--charcoal); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 1.5rem; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border: none; }
.stat-num { font-family: 'Oswald', sans-serif; font-size: 2.75rem; font-weight: 700; color: var(--orange-light); display: block; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== PROJECT SHOWCASE ===== */
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.showcase-card { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.showcase-img { height: 280px; overflow: hidden; }
.showcase-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.showcase-card:hover .showcase-img img { transform: scale(1.04); }
.showcase-body { padding: 1.75rem; background: white; }
.showcase-cat { font-size: 0.65rem; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.4rem; }
.showcase-body h3 { font-size: 1.2rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.showcase-body p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1rem; }
.showcase-meta { display: flex; gap: 1.25rem; font-size: 0.75rem; color: var(--gray-400); }
.showcase-meta span { display: flex; align-items: center; gap: 0.35rem; }
.showcase-meta i { color: var(--orange); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--gray-100); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.testimonial-card { background: white; border-radius: 12px; padding: 2rem; box-shadow: var(--shadow); }
.test-stars { display: flex; gap: 0.2rem; margin-bottom: 0.875rem; }
.test-stars i { color: #fbbf24; font-size: 0.9rem; }
.test-text { font-size: 0.88rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 1.25rem; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 0.875rem; }
.test-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.test-name { font-weight: 700; font-size: 0.88rem; color: var(--charcoal); line-height: 1.2; }
.test-project { font-size: 0.72rem; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.team-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.team-img { height: 260px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 1.5rem; }
.team-body h3 { font-size: 1.05rem; color: var(--charcoal); margin-bottom: 0.2rem; }
.team-role { font-size: 0.75rem; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.team-body p { font-size: 0.82rem; line-height: 1.65; }

/* ===== CTA BAND ===== */
.cta-band { background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 50%, #2d1a00 100%); padding: 5rem 0; }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 3rem; flex-wrap: wrap; }
.cta-band h2 { color: white; font-size: clamp(1.5rem, 3.5vw, 2.5rem); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 1rem; }
.cta-buttons { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ===== FOLLOW-UP SEQUENCE ===== */
.followup-seq { background: var(--cream); border-radius: 12px; padding: 1.75rem; border: 1px solid var(--gray-200); }
.followup-seq h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-600); margin-bottom: 1.25rem; font-weight: 700; }
.fseq-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.1rem; position: relative; }
.fseq-item:not(:last-child)::after { content: ''; position: absolute; left: 16px; top: 34px; width: 2px; height: calc(100% - 8px); background: var(--gray-200); }
.fseq-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.72rem; font-weight: 800; flex-shrink: 0; font-family: 'Oswald', sans-serif; }
.fseq-dot.gray { background: var(--gray-200); color: var(--gray-600); }
.fseq-content h5 { font-size: 0.85rem; color: var(--charcoal); margin-bottom: 0.15rem; }
.fseq-content p { font-size: 0.78rem; }
.fseq-time { font-size: 0.7rem; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== REVIEW REQUEST ===== */
.review-band { background: var(--orange-pale); border-top: 4px solid var(--orange); padding: 5rem 0; }
.review-band .container { display: flex; gap: 4rem; align-items: center; flex-wrap: wrap; }
.review-band-text { flex: 1; min-width: 280px; }
.review-band h2 { color: var(--charcoal); font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.review-band p { font-size: 0.95rem; }
.review-band-stars { display: flex; gap: 0.4rem; margin-top: 1rem; }
.review-band-stars i { color: #fbbf24; font-size: 1.5rem; }
.review-card { background: white; border-radius: 14px; padding: 2rem; box-shadow: var(--shadow-xl); min-width: 300px; max-width: 420px; flex: 1; }
.review-card h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 0.5rem; }
.review-card p { font-size: 0.85rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }

/* ===== CONTACT ===== */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3.5rem; align-items: start; }
.contact-info-card { background: var(--charcoal); border-radius: 16px; padding: 2.5rem; color: white; position: sticky; top: 110px; }
.contact-info-card h3 { color: white; font-family: 'Oswald', sans-serif; margin-bottom: 0.5rem; text-transform: uppercase; }
.contact-info-card > p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; font-size: 0.88rem; }
.c-detail { display: flex; gap: 0.875rem; align-items: flex-start; margin-bottom: 1.25rem; }
.c-detail-icon { width: 38px; height: 38px; background: rgba(249,115,22,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--orange-light); flex-shrink: 0; font-size: 0.85rem; }
.c-detail h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 0.2rem; font-weight: 600; font-family: 'Inter', sans-serif; }
.c-detail p, .c-detail a { color: white; font-size: 0.88rem; }
.c-detail a:hover { color: var(--orange-light); }
.contact-forms { display: flex; flex-direction: column; gap: 2rem; }
.contact-form-card { background: white; border-radius: 14px; padding: 2.25rem; box-shadow: var(--shadow-xl); }
.contact-form-card h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; margin-bottom: 0.5rem; }
.contact-form-card > p { margin-bottom: 1.75rem; font-size: 0.88rem; }

/* ===== PROCESS STEPS ===== */
.process-section { background: var(--cream-dark); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-step { text-align: center; position: relative; }
.process-step:not(:last-child)::after { content: '→'; position: absolute; top: 30px; right: -1rem; color: var(--orange); font-size: 1.5rem; }
.process-icon { width: 60px; height: 60px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; margin: 0 auto 1.25rem; box-shadow: 0 4px 14px rgba(249,115,22,0.35); }
.process-step h3 { font-size: 1rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; }

/* ===== SERVICE AREA ===== */
.service-area-band { background: var(--charcoal-dark); padding: 4rem 0; }
.service-area-band .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.area-text h3 { color: white; font-size: 1.3rem; margin-bottom: 0.5rem; }
.area-text p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag { background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3); color: var(--orange-light); font-size: 0.75rem; padding: 0.3rem 0.875rem; border-radius: 4px; font-weight: 600; }

/* ===== LICENSE BAND ===== */
.license-band { background: var(--gray-100); padding: 2.5rem 0; }
.license-band .container { display: flex; align-items: center; gap: 3rem; justify-content: center; flex-wrap: wrap; }
.license-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.8rem; color: var(--gray-700); font-weight: 600; }
.license-item i { color: var(--orange); font-size: 1rem; }

/* ===== CHATBOT ===== */
.chatbot-toggle {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9000;
  width: 60px; height: 60px; border-radius: 50%; background: var(--orange); color: white;
  border: none; cursor: pointer; font-size: 1.4rem; box-shadow: 0 6px 20px rgba(249,115,22,0.45);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  display: flex; align-items: center; justify-content: center;
}
.chatbot-toggle:hover { transform: scale(1.1); background: var(--orange-dark); }
.chatbot-badge {
  position: absolute; top: -2px; right: -2px; width: 18px; height: 18px;
  background: var(--green); border-radius: 50%; border: 2px solid white;
  font-size: 0.62rem; color: white; display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.chatbot-window {
  position: fixed; bottom: 7rem; right: 2rem; z-index: 8999;
  width: 370px; height: 520px; background: white; border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18); display: flex; flex-direction: column; overflow: hidden;
  transform: scale(0.85) translateY(20px); opacity: 0; pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.chatbot-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chatbot-header { background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%); padding: 1.1rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; border-bottom: 2px solid var(--orange); }
.chatbot-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.85rem; color: white; flex-shrink: 0; }
.chatbot-header-info { flex: 1; }
.chatbot-header-info h4 { color: white; font-size: 0.88rem; margin-bottom: 0.1rem; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; }
.chatbot-header-info p { color: rgba(255,255,255,0.55); font-size: 0.72rem; display: flex; align-items: center; gap: 0.35rem; }
.online-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; display: inline-block; }
.chatbot-close { background: none; border: none; color: rgba(255,255,255,0.45); cursor: pointer; font-size: 1rem; padding: 0.25rem; transition: color 0.2s; }
.chatbot-close:hover { color: white; }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: 0.875rem; }
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 2px; }
.chat-msg { max-width: 82%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble {
  padding: 0.75rem 1rem; border-radius: 16px;
  font-size: 0.83rem; line-height: 1.6; white-space: pre-line;
}
.chat-msg.bot .chat-bubble { background: var(--gray-100); color: var(--dark); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-bubble { background: var(--orange); color: white; border-bottom-right-radius: 4px; }
.chatbot-quick-replies { padding: 0.5rem 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.quick-reply { background: white; border: 1.5px solid var(--orange); color: var(--orange); padding: 0.35rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.quick-reply:hover { background: var(--orange); color: white; }
.chatbot-input-area { padding: 0.875rem 1rem; border-top: 1px solid var(--gray-200); display: flex; gap: 0.5rem; }
.chatbot-input { flex: 1; border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 0.6rem 0.875rem; font-family: 'Inter', sans-serif; font-size: 0.82rem; outline: none; transition: border-color 0.2s; }
.chatbot-input:focus { border-color: var(--orange); }
.chatbot-send { width: 36px; height: 36px; background: var(--orange); color: white; border: none; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; transition: background 0.2s; flex-shrink: 0; }
.chatbot-send:hover { background: var(--orange-dark); }

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 99999;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card {
  background: white; border-radius: 20px; padding: 2.75rem; max-width: 500px; width: 100%;
  text-align: center; transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.modal-overlay.open .modal-card { transform: scale(1); }
.modal-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.8rem; }
.modal-icon.success { background: rgba(22,163,74,0.12); color: var(--green); }
.modal-icon.orange { background: rgba(249,115,22,0.1); color: var(--orange); }
.modal-card h3 { font-family: 'Oswald', sans-serif; margin-bottom: 0.75rem; font-size: 1.5rem; text-transform: uppercase; }
.modal-card p { margin-bottom: 1.25rem; font-size: 0.88rem; line-height: 1.75; }
.modal-box { background: var(--cream); border-radius: 10px; padding: 1.25rem; text-align: left; margin-bottom: 1.25rem; }
.modal-box h4 { font-size: 0.72rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.875rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.conf-row { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.5rem; font-size: 0.84rem; }
.conf-row:last-child { margin: 0; }
.conf-row i { color: var(--orange); width: 14px; flex-shrink: 0; }
.sms-preview { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 0.875rem 1.1rem; font-size: 0.8rem; color: var(--gray-700); text-align: left; margin-bottom: 1.25rem; display: flex; gap: 0.65rem; }
.sms-preview i { color: var(--green); flex-shrink: 0; margin-top: 0.1rem; }
.seq-list { background: var(--cream); border-radius: 10px; padding: 1.1rem; text-align: left; margin-bottom: 1.25rem; }
.seq-list h4 { font-size: 0.72rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.875rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.seq-item { display: flex; gap: 0.65rem; align-items: center; margin-bottom: 0.6rem; font-size: 0.83rem; }
.seq-item:last-child { margin: 0; }
.seq-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.seq-item .stime { color: var(--gray-400); font-size: 0.76rem; margin-left: auto; white-space: nowrap; }

/* ===== FOOTER ===== */
.footer { background: var(--charcoal-dark); padding: 4.5rem 0 0; color: rgba(255,255,255,0.55); border-top: 3px solid var(--orange); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; margin: 1.25rem 0; }
.footer-social { display: flex; gap: 0.65rem; margin-top: 1.25rem; }
.social-link { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.2s; font-size: 0.85rem; }
.social-link:hover { background: var(--orange); color: white; }
.footer-col h4 { color: white; font-size: 0.88rem; margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(255,255,255,0.08); font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: color 0.2s; display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--orange-light); }
.footer-links a i { font-size: 0.6rem; color: var(--orange); }
.footer-contact-item { display: flex; gap: 0.65rem; align-items: flex-start; margin-bottom: 0.75rem; font-size: 0.84rem; }
.footer-contact-item i { color: var(--orange-light); font-size: 0.82rem; margin-top: 0.2rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: white; }
.footer-cta-box { background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.3); border-radius: 10px; padding: 1.1rem; text-align: center; margin-top: 0.5rem; }
.footer-cta-box p { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.4rem; }
.footer-cta-box a { color: var(--orange-light); font-size: 0.9rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 0.4rem; transition: color 0.2s; }
.footer-cta-box a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.875rem; font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:not(:last-child)::after { display: none; }
  .estimate-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--charcoal-dark); flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .mobile-menu-btn { display: flex; z-index: 1001; }
  .hero-overlay { background: rgba(13,15,20,0.88); }
  .hero-buttons { flex-direction: column; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }
  .review-band .container { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .project-type-grid { grid-template-columns: 1fr; }
  .chatbot-window { width: calc(100vw - 2rem); right: 1rem; bottom: 6rem; height: 460px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .top-bar-right { display: none; }
  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
