/* ============================================================
   AFFORD-A-DOOR INC. — Main Stylesheet
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a2942;
  --primary-light: #243654;
  --accent: #f4900c;
  --accent-dark: #d97b00;
  --white: #ffffff;
  --light: #f8f9fb;
  --gray: #6b7280;
  --dark: #1f2937;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
}

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

h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--dark);
}

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

/* ---- TOPBAR ---- */
.topbar {
  background: var(--primary);
  color: #c9d4e6;
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left span i { color: var(--accent); }
.topbar-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-right a { color: #c9d4e6; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.topbar-right a i.fab { font-size: 14px; padding: 4px 5px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.topbar-right a:hover { color: var(--accent); }
.topbar-right a:hover i.fab { background: var(--accent); color: #fff; }

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px;
}
.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--accent); }
.main-nav ul li a.active { background: #fff5e6; }

/* Dropdown */
.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 260px;
  padding: 8px 0;
  border-top: 3px solid var(--accent);
  z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--dark) !important;
  border-radius: 0 !important;
}
.dropdown-menu li a:hover { background: var(--light); color: var(--accent) !important; padding-left: 24px; }
.btn-call {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-call:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(244,144,12,0.4); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center center / cover no-repeat;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,41,66,0.92) 0%, rgba(26,41,66,0.75) 60%, rgba(26,41,66,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 620px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  border: 1px solid rgba(255,255,255,0.2);
}
.stat span { display: block; font-size: 32px; font-weight: 800; color: var(--accent); font-family: var(--font-heading); }
.stat p { font-size: 13px; color: rgba(255,255,255,0.8); margin: 0; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,144,12,0.4); color: var(--white); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 15px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover { background: var(--white); color: var(--primary); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 15px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 14px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-sm {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}
.btn-sm:hover { background: var(--accent-dark); color: var(--white); }
.full-width { width: 100%; justify-content: center; }

/* ---- BREADCRUMB ---- */
.breadcrumb-bar {
  background: var(--primary);
  padding: 10px 0;
}
.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.breadcrumb-bar a { color: var(--accent); }
.breadcrumb-bar a:hover { text-decoration: underline; }
.breadcrumb-bar span { color: rgba(255,255,255,0.5); }
.breadcrumb-bar span:last-child { color: rgba(255,255,255,0.9); }

/* ---- SECTION COMMONS ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header h2 { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 16px; color: var(--primary); }
.section-header p { color: var(--gray); font-size: 16px; line-height: 1.8; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.8); }
.section-tag {
  display: inline-block;
  background: #fff5e6;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(244,144,12,0.3);
}

/* ---- INTRO SECTION ---- */
.intro-section { padding: 90px 0; background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-text h2 { font-size: clamp(26px, 3vw, 38px); color: var(--primary); margin-bottom: 20px; }
.intro-text p { color: var(--gray); margin-bottom: 16px; font-size: 16px; line-height: 1.8; }
.text-link { color: var(--accent); font-weight: 600; }
.text-link:hover { text-decoration: underline; }
.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.feature-item i { color: var(--accent); font-size: 16px; }
.intro-image { position: relative; }
.intro-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 25px rgba(244,144,12,0.4);
}
.experience-badge span { display: block; font-size: 36px; font-weight: 800; font-family: var(--font-heading); }
.experience-badge { font-size: 13px; font-weight: 600; }

/* ---- SERVICES ---- */
.services-section { padding: 90px 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img { position: relative; overflow: hidden; height: 220px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,41,66,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-overlay { opacity: 1; }
.service-body { padding: 24px; }
.service-icon {
  width: 48px;
  height: 48px;
  background: #fff5e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-icon i { color: var(--accent); font-size: 20px; }
.service-body h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; font-weight: 700; }
.service-body h3 a:hover { color: var(--accent); }
.service-body p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.service-link { font-size: 14px; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ---- WHY CHOOSE US ---- */
.why-section { padding: 90px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: var(--light);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.4s ease;
}
.why-card:hover::before { width: 100%; }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(244,144,12,0.3);
}
.why-icon i { color: var(--white); font-size: 24px; }
.why-card h3 { font-size: 18px; color: var(--primary); margin-bottom: 12px; font-weight: 700; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ---- PROCESS ---- */
.process-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  position: relative;
}
.step-number {
  font-size: 60px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  font-family: var(--font-heading);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step:hover .step-icon { background: var(--accent); border-color: var(--accent); transform: scale(1.1); }
.step-icon i { color: var(--white); font-size: 28px; }
.step h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; font-weight: 700; }
.step p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.step p a { color: var(--accent); font-weight: 600; }
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
  color: rgba(255,255,255,0.3);
  font-size: 20px;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 90px 0; background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  color: var(--border);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card.featured {
  background: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card.featured::before { color: rgba(255,255,255,0.1); }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card.featured:hover { transform: translateY(-12px); }
.stars { margin-bottom: 16px; display: flex; gap: 3px; }
.stars i { color: var(--accent); font-size: 14px; }
.testimonial-card p { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-card.featured p { color: rgba(255,255,255,0.82); }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 14px; color: var(--dark); margin-bottom: 2px; }
.testimonial-card.featured .reviewer strong { color: var(--white); }
.reviewer span { font-size: 12px; color: var(--gray); }
.testimonial-card.featured .reviewer span { color: rgba(255,255,255,0.6); }

/* ---- FAQ ---- */
.faq-section { padding: 90px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.faq-left h2 { font-size: clamp(24px, 3vw, 36px); color: var(--primary); margin-bottom: 16px; }
.faq-left p { color: var(--gray); margin-bottom: 28px; line-height: 1.8; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--light); color: var(--accent); }
.faq-question.active { background: var(--primary); color: var(--white); }
.faq-question.active i { transform: rotate(45deg); }
.faq-question i { font-size: 14px; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-answer { display: none; padding: 16px 20px; background: var(--light); border-top: 1px solid var(--border); }
.faq-answer p { font-size: 14px; color: var(--gray); line-height: 1.8; margin: 0; }
.faq-answer a { color: var(--accent); font-weight: 600; }

/* ---- CTA BANNER ---- */
.cta-banner {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-content { text-align: center; position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(24px, 3.5vw, 40px); color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- CONTACT PREVIEW ---- */
.contact-preview { padding: 90px 0; background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(24px, 3vw, 36px); color: var(--primary); margin-bottom: 16px; }
.contact-info > p { color: var(--gray); margin-bottom: 32px; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--white); font-size: 18px; }
.contact-item strong { display: block; font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--gray); margin: 0; line-height: 1.6; }
.contact-item a { color: var(--accent); font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }

/* Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-box h3 { font-size: 22px; color: var(--primary); margin-bottom: 24px; font-weight: 700; }
.quote-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244,144,12,0.12);
}

/* ---- MAP ---- */
.map-section { padding: 60px 0 0; }
.map-section .section-header h2 { color: var(--primary); }
.map-embed iframe { display: block; }

/* ---- FOOTER ---- */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { height: 80px; width: auto; margin-bottom: 20px; filter: brightness(10); }
.footer-about p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  transition: var(--transition);
}
.social-links a:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '›'; color: var(--accent); font-weight: 700; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: 14px; align-items: flex-start; }
.footer-contact li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.7); }
.footer-contact li a:hover { color: var(--accent); }
.footer-contact li a::before { display: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---- SERVICE PAGE SPECIFIC ---- */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&q=60') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 { font-size: clamp(28px, 4vw, 50px); color: var(--white); margin-bottom: 12px; }
.page-hero-content p { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 650px; margin: 0 auto 24px; }
.page-hero-content .hero-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.page-hero-content .hero-breadcrumb a { color: var(--accent); }
.page-hero-content .hero-breadcrumb i { font-size: 10px; }

.service-intro { padding: 80px 0; }
.service-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-intro-text h2 { font-size: clamp(24px, 3vw, 36px); color: var(--primary); margin-bottom: 20px; }
.service-intro-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; font-size: 15px; }
.service-intro-text a.text-link { color: var(--accent); font-weight: 600; }
.service-intro-img img { border-radius: var(--radius-lg); height: 420px; width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }

.sub-services { padding: 80px 0; background: var(--light); }
.sub-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sub-service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.sub-service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.sub-service-img { height: 200px; overflow: hidden; }
.sub-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.sub-service-card:hover .sub-service-img img { transform: scale(1.06); }
.sub-service-body { padding: 22px; }
.sub-service-body h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; font-weight: 700; }
.sub-service-body p { font-size: 14px; color: var(--gray); line-height: 1.7; }

.why-section-sp { padding: 80px 0; }
.why-grid-sp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card-sp {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--light);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card-sp:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.why-card-sp .why-icon-sp {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-card-sp .why-icon-sp i { color: #fff; font-size: 20px; }
.why-card-sp h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; font-weight: 700; }
.why-card-sp p { font-size: 14px; color: var(--gray); line-height: 1.7; }

.contact-cta-section {
  padding: 80px 0;
  background: var(--light);
}
.contact-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-cta-text h2 { font-size: clamp(24px, 3vw, 36px); color: var(--primary); margin-bottom: 16px; }
.contact-cta-text p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.contact-cta-text a.text-link { color: var(--accent); font-weight: 600; }

/* ---- ABOUT PAGE ---- */
.about-intro { padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: clamp(26px, 3vw, 38px); color: var(--primary); margin-bottom: 20px; }
.about-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; font-size: 15px; }
.about-img img { border-radius: var(--radius-lg); height: 460px; width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }

.values-section { padding: 80px 0; background: var(--light); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-icon i { color: #fff; font-size: 24px; }
.value-card h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; font-weight: 700; }
.value-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

.team-section { padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-img { height: 260px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-body { padding: 24px; }
.team-body h3 { font-size: 18px; color: var(--primary); margin-bottom: 4px; font-weight: 700; }
.team-body span { font-size: 13px; color: var(--accent); font-weight: 600; display: block; margin-bottom: 12px; }
.team-body p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ---- CONTACT PAGE ---- */
.full-contact { padding: 90px 0; }
.full-contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-details h2 { font-size: clamp(24px, 3vw, 36px); color: var(--primary); margin-bottom: 16px; }
.contact-details > p { color: var(--gray); margin-bottom: 32px; line-height: 1.8; }

/* ---- PATIO PAGE ---- */
.patio-features { padding: 80px 0; }
.patio-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.patio-text h2 { font-size: clamp(24px, 3vw, 36px); color: var(--primary); margin-bottom: 20px; }
.patio-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }
.feature-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.feature-list-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-list-icon {
  width: 44px;
  height: 44px;
  background: #fff5e6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-list-icon i { color: var(--accent); font-size: 18px; }
.feature-list-item h4 { font-size: 15px; color: var(--dark); margin-bottom: 4px; font-weight: 700; }
.feature-list-item p { font-size: 14px; color: var(--gray); line-height: 1.6; margin: 0; }
.patio-img-stack { position: relative; }
.patio-img-stack .img-main { border-radius: var(--radius-lg); width: 100%; height: 420px; object-fit: cover; box-shadow: var(--shadow-lg); }
.patio-img-stack .img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 45%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

/* ---- MOBILE ---- */
@media (max-width: 1024px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .sub-services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid-sp { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-md); padding: 16px 20px; z-index: 100; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li a { padding: 12px 0; border-bottom: 1px solid var(--border); border-radius: 0; }
  .dropdown .dropdown-menu { display: none; position: static; box-shadow: none; border-top: 0; padding-left: 16px; border-radius: 0; }
  .dropdown.open .dropdown-menu { display: block; }
  .hamburger { display: flex; }
  .header-cta .btn-call { font-size: 13px; padding: 8px 14px; }
  .site-header { position: relative; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero-stats { gap: 16px; }
  .stat span { font-size: 24px; }
  .intro-grid, .service-intro-grid, .about-grid, .contact-grid, .full-contact-grid, .contact-cta-inner, .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid, .why-grid, .sub-services-grid, .why-grid-sp { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .patio-features-grid { grid-template-columns: 1fr; }
  .patio-img-stack .img-secondary { display: none; }
  .quote-form .form-row { grid-template-columns: 1fr; }
  .intro-image { order: -1; }
  .intro-image img { height: 300px; }
  .experience-badge { bottom: -15px; left: 0; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .values-grid { grid-template-columns: 1fr; }
}
