/* Mt Hope Heating & Cooling - Premium HVAC Website Styles */
/* ============================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

/* CSS Variables */
:root {
  --primary: #1a3a5c;
  --primary-light: #2a4a7c;
  --primary-dark: #0f1f3a;
  --accent: #e8701a;
  --accent-light: #f08626;
  --accent-hover: #cf5f12;
  --accent-dark: #d65f0d;
  --text: #333;
  --text-light: #666;
  --text-lighter: #888;
  --white: #fff;
  --light-bg: #f8f9fa;
  --lighter-bg: #fafbfc;
  --border: #ddd;
  --border-light: #e8e8e8;
  --dark-bg: #1a1a2e;
  --dark-bg-light: #252541;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  font-size: 16px;
  letter-spacing: 0.3px;
  overflow-x: hidden;
}

/* Headings with Playfair Display */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem;
}

/* Links */
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-hover);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ============================================================ */
/* HEADER & NAVIGATION */
/* ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(26, 58, 92, 0.1);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform var(--transition-smooth);
}

.logo img:hover {
  transform: scale(1.05);
}

/* Navigation Toggle (Hamburger) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary);
  padding: 8px;
  transition: color var(--transition-fast);
}

.nav-toggle:hover {
  color: var(--accent);
}

/* Main Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width var(--transition-smooth);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: calc(100% - 32px);
}

.main-nav a:hover {
  color: var(--accent);
  background: rgba(232, 112, 26, 0.05);
}

.main-nav a.active {
  color: var(--accent);
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 240px;
  z-index: 200;
  border: 1px solid var(--border-light);
  animation: slideDown var(--transition-smooth);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition-fast);
}

.dropdown a:hover {
  background: rgba(232, 112, 26, 0.08);
  color: var(--accent);
  padding-left: 24px;
}

/* ============================================================ */
/* HERO SECTION */
/* ============================================================ */

.hero {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.7) 0%, rgba(232, 112, 26, 0.3) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 40px 24px;
  max-width: 900px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  font-weight: 800;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 32px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.8;
}

/* ============================================================ */
/* SECTIONS */
/* ============================================================ */

.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background: var(--light-bg);
}

.section-dark {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
  color: var(--white);
}

.section h2 {
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 2px;
}

.section-dark h2 {
  color: var(--white);
}

.section-dark h2::after {
  background: linear-gradient(90deg, var(--accent-light) 0%, var(--accent) 100%);
}

.section p.lead {
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 0 32px;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
}

.section-dark p.lead {
  color: rgba(255, 255, 255, 0.85);
}

/* Section Title */
.section-title-container {
  margin-bottom: 48px;
  text-align: center;
}

.section-title-container h2 {
  display: block;
  margin-bottom: 24px;
}

.section-title-container h2::after {
  display: block;
  position: relative;
  bottom: 0;
  margin-top: 12px;
}

/* ============================================================ */
/* BUTTONS & CTA */
/* ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 2px solid;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width var(--transition-smooth), height var(--transition-smooth);
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 112, 26, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  border-color: var(--accent-hover);
  box-shadow: 0 8px 24px rgba(232, 112, 26, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(26, 58, 92, 0.1);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(26, 58, 92, 0.2);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--light-bg);
  border-color: var(--light-bg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 60px 0;
  border-radius: 16px;
  text-align: center;
  margin: 60px 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(232, 112, 26, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}

.cta-section > * {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section h2::after {
  background: var(--accent-light);
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 28px;
}

/* ============================================================ */
/* CARDS */
/* ============================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--border);
  transform: translateY(-8px);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: inline-block;
}

.card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.card:hover h3 {
  color: var(--accent);
}

.card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 12px;
  flex-grow: 1;
  line-height: 1.7;
}

.card a {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.card a::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.card:hover a::after {
  transform: translateX(4px);
}

/* ============================================================ */
/* STEPS / PROCESS */
/* ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
  z-index: 0;
}

@media (max-width: 768px) {
  .steps::before {
    display: none;
  }
}

.step {
  text-align: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(232, 112, 26, 0.3);
  transition: all var(--transition-smooth);
  font-family: 'Playfair Display', serif;
}

.step:hover .step-num {
  transform: scale(1.15);
  box-shadow: 0 8px 24px rgba(232, 112, 26, 0.4);
}

.step h3 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.15rem;
}

.step p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================ */
/* PRICING TABLE */
/* ============================================================ */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pricing-table th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr {
  transition: all var(--transition-fast);
}

.pricing-table tbody tr:hover {
  background: var(--light-bg);
}

.pricing-table tbody tr:hover td {
  background: var(--light-bg);
}

/* Highlighted row */
.pricing-table tr.popular {
  background: linear-gradient(90deg, rgba(232, 112, 26, 0.05) 0%, rgba(232, 112, 26, 0.02) 100%);
}

.pricing-table tr.popular:hover {
  background: linear-gradient(90deg, rgba(232, 112, 26, 0.1) 0%, rgba(232, 112, 26, 0.05) 100%);
}

/* ============================================================ */
/* CHECKLIST */
/* ============================================================ */

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 14px 0 14px 40px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  transition: all var(--transition-fast);
}

.checklist li:hover {
  color: var(--text);
  padding-left: 44px;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: 800;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(232, 112, 26, 0.2);
  transition: all var(--transition-smooth);
  font-size: 1rem;
}

.checklist li:hover::before {
  box-shadow: 0 4px 12px rgba(232, 112, 26, 0.3);
  transform: scale(1.1);
}

/* ============================================================ */
/* FAQ ACCORDION */
/* ============================================================ */

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.faq-q {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-bg);
  color: var(--primary);
  transition: all var(--transition-fast);
  user-select: none;
}

.faq-q:hover {
  background: rgba(232, 112, 26, 0.05);
  color: var(--accent);
}

.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 400;
  transition: all var(--transition-smooth);
  width: 24px;
  text-align: center;
}

.faq-q.open {
  background: rgba(232, 112, 26, 0.08);
  color: var(--accent);
}

.faq-q.open::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-smooth);
  background: var(--white);
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-a.open {
  padding: 20px 24px;
  max-height: 600px;
}

/* ============================================================ */
/* REVIEWS / TESTIMONIALS */
/* ============================================================ */

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-header .rating {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

.stars {
  color: #fbbf24;
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin: 12px 0;
}

.reviews-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.review-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  color: var(--text);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  position: relative;
  border-top: 4px solid var(--accent);
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.review-card .stars {
  margin: 12px 0 16px;
  color: #fbbf24;
  font-size: 1.2rem;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
  font-style: italic;
}

.review-card .reviewer {
  font-weight: 700;
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--primary);
}

.review-card .review-date {
  color: var(--text-lighter);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ============================================================ */
/* FOOTER */
/* ============================================================ */

.footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(232, 112, 26, 0.05);
  border-radius: 50%;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  text-align: center;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.8;
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--accent-light);
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  transition: all var(--transition-smooth);
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ============================================================ */
/* CONTACT FORM */
/* ============================================================ */

.contact-form {
  max-width: 700px;
  margin: 32px auto 0;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--primary);
  transition: color var(--transition-fast);
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group select:focus ~ label {
  color: var(--accent);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: all var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-lighter);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 112, 26, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================================ */
/* SERVICE AREA */
/* ============================================================ */

.service-area {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 20px;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.service-badge {
  background: linear-gradient(135deg, rgba(232, 112, 26, 0.1) 0%, rgba(232, 112, 26, 0.05) 100%);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--accent);
  transition: all var(--transition-smooth);
}

.service-badge:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
}

/* ============================================================ */
/* UTILITY CLASSES */
/* ============================================================ */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-2 {
  margin-top: 16px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-4 {
  margin-bottom: 32px;
}

.pt-4 {
  padding-top: 32px;
}

.pb-4 {
  padding-bottom: 32px;
}

/* ============================================================ */
/* SCROLL ANIMATIONS */
/* ============================================================ */

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.8s ease-out forwards;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  animation: fadeInRight 0.8s ease-out forwards;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================================ */
/* RESPONSIVE DESIGN */
/* ============================================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 12px 0;
    margin: 0 12px;
    z-index: 999;
    animation: slideDown var(--transition-smooth);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 12px 20px;
    border-radius: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover {
    background: rgba(232, 112, 26, 0.08);
  }

  .dropdown {
    position: static;
    box-shadow: none;
    padding-left: 20px;
    border: none;
    background: transparent;
  }

  .has-dropdown:hover .dropdown {
    display: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .hero {
    height: 280px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .section {
    padding: 60px 0;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-group .btn {
    width: 100%;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 40px 24px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .header-inner {
    padding: 12px 16px;
  }

  .logo img {
    height: 48px;
  }

  .hero {
    height: 220px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .section {
    padding: 40px 0;
  }

  .card {
    padding: 20px;
  }

  .step-num {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .cta-section {
    padding: 32px 16px;
  }

  .cta-section h2 {
    font-size: 1.4rem;
  }
}

/* ============================================================ */
/* PRINT STYLES */
/* ============================================================ */

@media print {
  .site-header,
  .nav-toggle,
  .btn-group {
    display: none;
  }

  body {
    color: #000;
  }

  a {
    color: #000;
  }
}
