/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #1e3a5f;
  --primary-dark: #152a45;
  --secondary: #f59e0b;
  --secondary-dark: #d97706;
  --accent: #ef4444;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --success: #10b981;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary-dark);
  padding: 10px 0;
  font-size: 0.875rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--white);
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.top-bar-contact a:hover {
  color: var(--secondary);
}

.top-bar-contact svg {
  width: 16px;
  height: 16px;
}

.top-bar-cta .btn {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.logo-text {
  color: var(--white);
}

.logo-text .company-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.logo-text .tagline {
  font-size: 0.75rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 10px 15px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
}

.nav-item.has-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-item.has-dropdown .nav-link::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: var(--transition);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  padding: 10px 0;
}

.nav-item.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  color: var(--gray-700);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.dropdown-link:hover {
  background: var(--gray-50);
  color: var(--primary);
  padding-left: 25px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--secondary);
  color: var(--gray-900);
}

.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: #dc2626;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.125rem;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/Goodman-kitchen-remodel.png');
  background-size: cover;
  background-position: center;
  
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(21, 42, 69, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-text h1 {
  font-size: 2.75rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-text h1 span {
  color: var(--secondary);
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--gray-200);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.badge svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* ===== HERO FORM ===== */
.hero-form-wrapper {
  background: var(--white);
  border-radius: 12px;
  padding: 35px;
  box-shadow: var(--shadow-xl);
}

.hero-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.hero-form-wrapper .form-subtitle {
  color: var(--gray-500);
  margin-bottom: 25px;
  font-size: 0.9375rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

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

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

.hero-form .btn {
  width: 100%;
  padding: 14px;
  font-size: 1.0625rem;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--gray-900);
  color: var(--white);
}

.section-gray {
  background: var(--gray-50);
}

.section-primary {
  background: var(--primary);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header .subtitle {
  display: inline-block;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 15px;
}

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

.section-header p {
  color: var(--gray-500);
  font-size: 1.0625rem;
}

.section-dark .section-header p {
  color: var(--gray-400);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.service-card .link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-card .link:hover {
  color: var(--secondary);
  gap: 10px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.why-icon svg {
  width: 40px;
  height: 40px;
  color: var(--gray-900);
}

.why-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.why-card p {
  color: var(--gray-400);
  font-size: 0.9375rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--secondary);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.75rem;
  color: var(--gray-900);
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--gray-800);
  font-weight: 500;
  font-size: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--gray-100);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  fill: var(--secondary);
}

.testimonial-card p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-content p {
  color: var(--gray-300);
  font-size: 1.125rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 30px;
}

.cta-phone svg {
  width: 28px;
  height: 28px;
  color: var(--secondary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-700);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--gray-900);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: var(--gray-400);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 0.9375rem;
}

.footer-bottom {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 80px 20px 40px;
    transition: var(--transition);
    z-index: 999;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    padding: 15px;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item.has-dropdown.active .dropdown {
    max-height: 500px;
  }

  .dropdown-link {
    color: var(--gray-300);
    padding-left: 30px;
  }

  .dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
  }

  .mobile-toggle {
    display: flex;
    z-index: 1000;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .top-bar-content {
    justify-content: center;
    text-align: center;
  }

  .top-bar-contact {
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

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

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

  .stat-item {
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-form-wrapper {
    padding: 25px 20px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .logo-text .company-name {
    font-size: 1rem;
  }
}

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

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.page-banner h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: var(--gray-300);
  font-size: 0.9375rem;
}

.breadcrumb a {
  color: var(--secondary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 95, 0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 5px;
}

.portfolio-overlay p {
  color: var(--gray-300);
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.contact-info-card .icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.contact-info-card h4 {
  font-size: 1.125rem;
  margin-bottom: 5px;
}

.contact-info-card p {
  color: var(--gray-500);
  font-size: 0.9375rem;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.blog-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 15px;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more:hover {
  color: var(--secondary);
  gap: 10px;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SERVICE PAGE ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}

.sidebar-card h4 {
  font-size: 1.125rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gray-100);
}

.service-list li {
  margin-bottom: 12px;
}

.service-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: var(--gray-50);
  border-radius: 6px;
  color: var(--gray-700);
  font-weight: 500;
  transition: var(--transition);
}

.service-list li a:hover,
.service-list li a.active {
  background: var(--primary);
  color: var(--white);
}

@media (max-width: 992px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--secondary);
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
}

.about-badge h3 {
  font-size: 2.5rem;
  color: var(--gray-900);
  line-height: 1;
}

.about-badge p {
  font-weight: 600;
  color: var(--gray-800);
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 15px;
  font-size: 1.0625rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.about-feature span {
  font-weight: 500;
  color: var(--gray-700);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== LOCATION PAGE ===== */
.location-hero {
  padding: 60px 0;
}

.location-content h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.location-content p {
  color: var(--gray-600);
  font-size: 1.0625rem;
  margin-bottom: 15px;
}

.areas-served {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.area-card {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

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

.area-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.area-card p {
  color: var(--gray-500);
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .areas-served {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .areas-served {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT PAGE ===== */
    :root {
      --about-bg: #f3f1ea;
      --about-ink: #1a3246;
      --about-muted: #5e7386;
      --about-accent: #d45f37;
      --about-card: #fffdf8;
      --about-edge: #e9dfcf;
    }

    body {
      background: radial-gradient(circle at 0 0, #fff7ea 0, transparent 34%), radial-gradient(circle at 96% 18%, #e5eef8 0, transparent 36%), var(--about-bg);
      color: var(--about-ink);
    }

    .about-hero {
      position: relative;
      overflow: hidden;
      padding: 105px 0 78px;
      background: linear-gradient(150deg, #0f273a 0%, #1b4462 55%, #2c607f 100%);
      color: #fff;
    }

    .about-hero::before {
      content: "";
      position: absolute;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      top: -250px;
      right: -140px;
    }

    .about-hero-wrap {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 1.3rem;
      align-items: center;
    }

    .about-hero h1 {
      margin: 0 0 .8rem;
      font: 700 clamp(2.4rem, 7.2vw, 5rem)/.95 "Space Grotesk", sans-serif;
      letter-spacing: .01em;
    }

    .about-hero p {
      margin: 0;
      color: #dce9f5;
      max-width: 57ch;
      font: 500 1.02rem/1.7 "Outfit", sans-serif;
    }

    .about-kicker {
      display: inline-block;
      margin-bottom: .9rem;
      border: 1px solid rgba(255, 255, 255, .35);
      border-radius: 999px;
      padding: .35rem .78rem;
      font: 700 .76rem/1 "Outfit", sans-serif;
      letter-spacing: .08em;
      text-transform: uppercase;
      background: rgba(255, 255, 255, .14);
    }

    .about-shot {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .2);
      box-shadow: 0 22px 36px rgba(0, 0, 0, .3);
      aspect-ratio: 4 / 3;
    }

    .about-shot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-main {
      padding: 68px 0 74px;
      font-family: "Outfit", sans-serif;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 1.1rem;
      margin-bottom: 1rem;
    }

    .about-card,
    .about-values,
    .about-cta,
    .metric {
      background: var(--about-card);
      border: 1px solid var(--about-edge);
      border-radius: 18px;
      box-shadow: 0 14px 30px rgba(39, 60, 78, .09);
    }

    .about-card,
    .about-values,
    .about-cta {
      padding: 1.1rem;
    }

    h2,h3 { margin: 0 0 .6rem; }

    .about-card h2,
    .about-values h2,
    .about-cta h2 {
      font: 700 clamp(1.5rem, 2.5vw, 2rem)/1 "Space Grotesk", sans-serif;
      letter-spacing: .01em;
    }

    .about-copy {
      color: var(--about-muted);
      margin: 0 0 .8rem;
      line-height: 1.72;
      font-size: .98rem;
    }

    .metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .8rem;
    }

    .metric {
      padding: .95rem;
      text-align: center;
    }

    .metric strong {
      display: block;
      color: #b94a2c;
      font: 800 1.65rem/1 "Space Grotesk", sans-serif;
      margin-bottom: .25rem;
    }

    .metric span {
      color: #4f6475;
      font-weight: 600;
      font-size: .9rem;
    }

    .value-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .75rem;
      margin-top: .9rem;
    }

    .value-item {
      border: 1px solid #eee2d3;
      background: #faf7f1;
      border-radius: 12px;
      padding: .78rem;
    }

    .value-item h3 {
      font: 700 1rem/1.2 "Space Grotesk", sans-serif;
      margin-bottom: .4rem;
    }

    .value-item p {
      margin: 0;
      color: #5f7486;
      font-size: .9rem;
      line-height: 1.6;
    }

    .about-cta {
      background: linear-gradient(120deg, #fff6ea 0%, #edf5ff 100%);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: .9rem;
    }

    .about-cta p {
      margin: 0;
      color: #556b7d;
      font-size: .96rem;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
    }

    .about-btn {
      text-decoration: none;
      border-radius: 999px;
      padding: .68rem 1rem;
      font-weight: 700;
      font-size: .88rem;
      border: 1px solid #d7dce3;
      color: #17344a;
      background: #fff;
    }

    .about-btn.primary {
      background: var(--about-accent);
      color: #fff;
      border-color: var(--about-accent);
    }

    @media (max-width: 1050px) {
      .about-hero-wrap,
      .about-grid { grid-template-columns: 1fr; }
      .about-shot { max-width: 540px; }
    }

    @media (max-width: 720px) {
      .value-list,
      .metrics { grid-template-columns: 1fr; }
      .about-main { padding-top: 50px; }
      .about-card,
      .about-values,
      .about-cta { padding: .9rem; }
    }

/* ===== PORTFOLIO PAGE ===== */
    :root {
      --port-bg: #f2f5f8;
      --port-ink: #162e42;
      --port-muted: #5e7386;
      --port-accent: #d95e35;
      --port-card: #ffffff;
      --port-edge: #dbe4ed;
    }

    body {
      background: radial-gradient(circle at 10% 8%, #fff6ea 0, transparent 32%), radial-gradient(circle at 87% 0, #e5f3ff 0, transparent 32%), var(--port-bg);
      color: var(--port-ink);
    }

    .port-hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(140deg, #10273a 0%, #1d415d 54%, #2e5c78 100%);
      color: #fff;
      padding: 108px 0 78px;
    }

    .port-hero::after {
      content: "";
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      right: -180px;
      top: -300px;
      background: rgba(255, 255, 255, .1);
    }

    .port-hero h1 {
      margin: 0 0 .75rem;
      font: 800 clamp(2.4rem, 7vw, 4.7rem)/.95 "Sora", sans-serif;
      letter-spacing: -.01em;
    }

    .port-hero p {
      margin: 0;
      max-width: 62ch;
      color: #dceaf8;
      font: 500 1rem/1.7 "Manrope", sans-serif;
    }

    .port-kicker {
      display: inline-block;
      margin-bottom: .9rem;
      border: 1px solid rgba(255, 255, 255, .35);
      border-radius: 999px;
      padding: .36rem .78rem;
      background: rgba(255, 255, 255, .15);
      font: 700 .75rem/1 "Manrope", sans-serif;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .port-main {
      padding: 66px 0 76px;
      font-family: "Manrope", sans-serif;
    }

    .port-top {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }

    .port-top h2 {
      margin: 0;
      font: 800 clamp(1.5rem, 3vw, 2.05rem)/1.05 "Sora", sans-serif;
    }

    .port-top p {
      margin: .5rem 0 0;
      color: var(--port-muted);
      max-width: 60ch;
      line-height: 1.7;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: .45rem;
      align-self: flex-start;
    }

    .chip {
      border-radius: 999px;
      border: 1px solid #d6e0ea;
      background: #fff;
      color: #294760;
      padding: .48rem .8rem;
      font-size: .82rem;
      font-weight: 700;
    }

    .chip.active {
      background: var(--port-accent);
      color: #fff;
      border-color: var(--port-accent);
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: .9rem;
      margin-bottom: 1rem;
    }

    .project-card,
    .project-highlight {
      background: var(--port-card);
      border: 1px solid var(--port-edge);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 14px 30px rgba(18, 44, 67, .08);
    }

    .project-photo {
      aspect-ratio: 4 / 3;
      overflow: hidden;
    }

    .project-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease;
    }

    .project-card:hover .project-photo img,
    .project-highlight:hover .project-photo img {
      transform: scale(1.06);
    }

    .project-body {
      padding: .9rem .95rem 1rem;
    }

    .project-meta {
      display: inline-block;
      margin-bottom: .55rem;
      border-radius: 999px;
      padding: .3rem .55rem;
      background: #eef3f8;
      color: #27425a;
      font-size: .73rem;
      font-weight: 800;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .project-body h3 {
      margin: 0 0 .45rem;
      font: 700 1.15rem/1.25 "Sora", sans-serif;
    }

    .project-body p {
      margin: 0;
      color: var(--port-muted);
      font-size: .92rem;
      line-height: 1.65;
    }

    .project-highlight {
      display: grid;
      grid-template-columns: 1fr 1fr;
      margin-bottom: 1rem;
    }

    .project-highlight .project-photo {
      min-height: 260px;
      aspect-ratio: auto;
    }

    .project-highlight .project-body {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .port-cta {
      background: linear-gradient(120deg, #fff5ea 0%, #edf6ff 100%);
      border: 1px solid #e3dfd2;
      border-radius: 18px;
      padding: 1rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: .8rem;
    }

    .port-cta h3 {
      margin: 0 0 .35rem;
      font: 700 1.35rem/1.15 "Sora", sans-serif;
    }

    .port-cta p {
      margin: 0;
      color: #51687a;
    }

    .port-btn {
      text-decoration: none;
      border-radius: 999px;
      padding: .64rem .95rem;
      font-size: .86rem;
      font-weight: 700;
      border: 1px solid #d3dce6;
      color: #17324b;
      background: #fff;
    }

    .port-btn.primary {
      background: var(--port-accent);
      color: #fff;
      border-color: var(--port-accent);
    }

    @media (max-width: 1100px) {
      .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .project-highlight { grid-template-columns: 1fr; }
      .project-highlight .project-photo { min-height: 230px; }
    }

    @media (max-width: 700px) {
      .project-grid { grid-template-columns: 1fr; }
      .port-main { padding-top: 48px; }
    }

/* ===== CONTACT PAGE ===== */
    :root {
      --con-bg: #f7f3eb;
      --con-ink: #173248;
      --con-muted: #607689;
      --con-accent: #c95d39;
      --con-card: #fffdfa;
      --con-edge: #eadfce;
      --con-dark: #123049;
    }

    body {
      background: radial-gradient(circle at 5% 10%, #fff5e8 0, transparent 35%), radial-gradient(circle at 90% 8%, #e5eef9 0, transparent 30%), var(--con-bg);
      color: var(--con-ink);
    }

    .contact-hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(140deg, #122b3f 0%, #1b3f5b 55%, #2a5976 100%);
      color: #fff;
      padding: 106px 0 80px;
    }

    .contact-hero::before {
      content: "";
      position: absolute;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      top: -270px;
      right: -130px;
      background: rgba(255, 255, 255, .08);
    }

    .contact-hero h1 {
      margin: 0 0 .75rem;
      font: 700 clamp(2.3rem, 7vw, 4.8rem)/.95 "Syne", sans-serif;
      letter-spacing: .01em;
    }

    .contact-hero p {
      margin: 0;
      max-width: 62ch;
      color: #dce8f6;
      font: 500 1rem/1.7 "Urbanist", sans-serif;
    }

    .contact-kicker {
      display: inline-block;
      margin-bottom: .88rem;
      border: 1px solid rgba(255, 255, 255, .38);
      border-radius: 999px;
      padding: .35rem .78rem;
      background: rgba(255, 255, 255, .13);
      font: 700 .75rem/1 "Urbanist", sans-serif;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .contact-main {
      padding: 66px 0 76px;
      font-family: "Urbanist", sans-serif;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 1rem;
      align-items: start;
      margin-bottom: 1rem;
    }

    .contact-panel,
    .contact-form-wrap,
    .contact-bottom {
      background: var(--con-card);
      border: 1px solid var(--con-edge);
      border-radius: 18px;
      box-shadow: 0 14px 30px rgba(25, 52, 74, .09);
    }

    .contact-panel,
    .contact-form-wrap,
    .contact-bottom { padding: 1rem; }

    .contact-panel h2,
    .contact-form-wrap h2,
    .contact-bottom h2 {
      margin: 0 0 .65rem;
      font: 700 clamp(1.45rem, 2.4vw, 1.95rem)/1 "Syne", sans-serif;
    }

    .contact-panel p,
    .contact-bottom p {
      margin: 0 0 .85rem;
      color: var(--con-muted);
      line-height: 1.7;
      font-size: .96rem;
    }

    .method-grid {
      display: grid;
      gap: .65rem;
      margin-bottom: .85rem;
    }

    .method {
      border: 1px solid #ede4d6;
      background: #faf7f1;
      border-radius: 12px;
      padding: .72rem;
    }

    .method strong {
      display: block;
      margin-bottom: .2rem;
      font-size: .95rem;
    }

    .method a,
    .method span {
      color: #2b475f;
      text-decoration: none;
      font-weight: 600;
      font-size: .93rem;
      line-height: 1.6;
    }

    .hours {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: .3rem;
      color: #4f6578;
      font-weight: 600;
      font-size: .9rem;
    }

    .estimate-form {
      display: grid;
      gap: .68rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .68rem;
    }

    .estimate-form label {
      display: block;
      font-size: .83rem;
      margin-bottom: .3rem;
      color: #304c62;
      font-weight: 700;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .estimate-form input,
    .estimate-form select,
    .estimate-form textarea {
      width: 100%;
      border-radius: 10px;
      border: 1px solid #d7e0e9;
      background: #fff;
      padding: .68rem .75rem;
      font: 500 .93rem/1.4 "Urbanist", sans-serif;
      color: #203a52;
    }

    .estimate-form input:focus,
    .estimate-form select:focus,
    .estimate-form textarea:focus {
      outline: none;
      border-color: #8baac3;
      box-shadow: 0 0 0 3px rgba(89, 123, 153, .15);
    }

    .contact-btn {
      border: none;
      border-radius: 999px;
      padding: .72rem 1rem;
      font: 700 .9rem/1 "Urbanist", sans-serif;
      color: #fff;
      background: var(--con-accent);
      cursor: pointer;
      width: fit-content;
    }

    .contact-status {
      display: flex;
      gap: .75rem;
      align-items: flex-start;
      padding: .9rem 1rem;
      border-radius: 14px;
      border: 1px solid #a7f3d0;
      background: #ecfdf3;
      color: #065f46;
      margin-bottom: 1rem;
    }

    .contact-status.error {
      border-color: #fecaca;
      background: #fef2f2;
      color: #991b1b;
    }

    .status-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 700;
      background: rgba(16, 185, 129, 0.16);
      flex-shrink: 0;
    }

    .contact-status.error .status-icon {
      background: rgba(239, 68, 68, 0.16);
    }

    .contact-status strong {
      display: block;
      margin-bottom: .2rem;
      font-size: .95rem;
    }

    .contact-status p {
      margin: 0;
      font-size: .95rem;
    }

    .status-detail {
      margin-top: .2rem !important;
      color: inherit;
      opacity: .9;
    }

    .hp-field {
      position: absolute;
      left: -9999px;
      opacity: 0;
      pointer-events: none;
    }

    .recaptcha-note {
      color: #5f7385;
      font-size: .85rem;
      margin-top: .25rem;
    }

    .g-recaptcha {
      margin-top: .2rem;
    }

    .contact-bottom {
      background: linear-gradient(120deg, #fff5e9 0%, #edf6ff 100%);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: .85rem;
      flex-wrap: wrap;
    }

    .contact-actions {
      display: flex;
      gap: .55rem;
      flex-wrap: wrap;
    }

    .contact-pill {
      text-decoration: none;
      border-radius: 999px;
      border: 1px solid #d1dbe6;
      padding: .62rem .95rem;
      font-size: .85rem;
      font-weight: 700;
      color: #173148;
      background: #fff;
    }

    .contact-pill.primary {
      color: #fff;
      border-color: var(--con-accent);
      background: var(--con-accent);
    }

    @media (max-width: 1050px) {
      .contact-layout { grid-template-columns: 1fr; }
    }

    @media (max-width: 720px) {
      .form-row { grid-template-columns: 1fr; }
      .contact-main { padding-top: 50px; }
      .contact-panel,
      .contact-form-wrap,
      .contact-bottom { padding: .9rem; }
    }

/* ===== MODERN SERVICES + AREAS REDESIGN ===== */
.modern-services-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(245, 158, 11, 0.08), transparent 38%),
    radial-gradient(circle at 90% 12%, rgba(30, 58, 95, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.modern-services-page .top-bar {
  background: linear-gradient(90deg, #0f2944 0%, #183e67 100%);
}

.modern-services-page .header {
  background: rgba(21, 42, 69, 0.9);
  backdrop-filter: blur(10px);
}

.modern-services-page.commercial-painting-page .hero {
  min-height: 72vh;
  padding: 80px 0;
  background-image:  url('../images/Commercial-exterior-painting-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.modern-services-page .hero::before,
.modern-services-page .hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.modern-services-page .hero::before {
  width: 360px;
  height: 360px;
  top: -140px;
  right: -90px;
  background: rgba(245, 158, 11, 0.25);
  filter: blur(4px);
  animation: auroraFloat 8s ease-in-out infinite;
}

.modern-services-page .hero::after {
  width: 240px;
  height: 240px;
  left: -80px;
  bottom: -100px;
  background: rgba(255, 255, 255, 0.1);
  animation: auroraFloat 9s ease-in-out infinite reverse;
}

.modern-services-page .hero-overlay {
  background: linear-gradient(160deg, rgba(8, 22, 39, 0.5), rgba(8, 22, 39, 0.7));
}

.modern-services-page .hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: block;
}

.modern-services-page .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.modern-services-page .hero-content p {
  margin: 18px auto 0;
  max-width: 760px;
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
}

.modern-services-page .hero-cta,
.modern-services-page .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.modern-services-page .services-overview,
.modern-services-page .service-details,
.modern-services-page .process-section,
.modern-services-page .location-services,
.modern-services-page .service-areas,
.modern-services-page .why-choose-us {
  padding: 92px 0;
}

.modern-services-page .services-overview,
.modern-services-page .location-services,
.modern-services-page .service-areas {
  background: transparent;
}

.modern-services-page .why-choose-us,
.modern-services-page .process-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.modern-services-page .section-header,
.modern-services-page .location-header {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.modern-services-page .section-header h2,
.modern-services-page .location-header h2,
.modern-services-page .service-description h2,
.modern-services-page .why-choose-us h2,
.modern-services-page .service-areas h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
}

.modern-services-page .section-header p,
.modern-services-page .location-header p {
  color: #4b5563;
  font-size: 1.05rem;
}

.modern-services-page .services-grid,
.modern-services-page .features-grid,
.modern-services-page .areas-grid,
.modern-services-page .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.modern-services-page .service-card,
.modern-services-page .feature-item,
.modern-services-page .feature-card,
.modern-services-page .process-step,
.modern-services-page .area-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(15, 39, 64, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.modern-services-page .service-card,
.modern-services-page .feature-item,
.modern-services-page .feature-card,
.modern-services-page .process-step {
  padding: 30px 24px;
}

.modern-services-page .area-item {
  padding: 24px;
}

.modern-services-page .service-card:hover,
.modern-services-page .feature-item:hover,
.modern-services-page .feature-card:hover,
.modern-services-page .process-step:hover,
.modern-services-page .area-item:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 24px 42px rgba(15, 39, 64, 0.15);
}

.modern-services-page .service-icon,
.modern-services-page .feature-icon {
  background: linear-gradient(135deg, #1b4773 0%, #f59e0b 100%);
  box-shadow: 0 12px 24px rgba(27, 71, 115, 0.28);
}

.modern-services-page .service-link {
  color: #1e3a5f;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.modern-services-page .service-link::after {
  content: '\2192';
  transition: transform 0.25s ease;
}

.modern-services-page .service-link:hover::after {
  transform: translateX(3px);
}

.modern-services-page .service-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: start;
}

.modern-services-page .service-description,
.modern-services-page .service-features {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  box-shadow: 0 22px 42px rgba(15, 39, 64, 0.1);
}

.modern-services-page .service-description {
  padding: 34px;
}

.modern-services-page .service-description h3 {
  margin-top: 20px;
  margin-bottom: 14px;
}

.modern-services-page .service-description ul {
  margin-top: 14px;
}

.modern-services-page .service-description li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.modern-services-page .service-description li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.modern-services-page .service-features {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.modern-services-page .process-step {
  text-align: left;
}

.modern-services-page .step-number {
  background: linear-gradient(135deg, #1b4773 0%, #f59e0b 100%);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(27, 71, 115, 0.3);
  margin-bottom: 14px;
}

.modern-services-page .cta-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.35), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(96, 165, 250, 0.38), transparent 25%),
    linear-gradient(125deg, #0f2944 0%, #1d4f7e 100%);
}

.modern-services-page .cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
}

.modern-services-page .cta-content p {
  color: rgba(255, 255, 255, 0.86);
}

.modern-services-page .btn {
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.modern-services-page .btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: #fff;
}

.modern-services-page .btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 28px rgba(249, 115, 22, 0.35);
}

.modern-services-page .btn-secondary,
.modern-services-page .btn-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.modern-services-page .btn-secondary:hover,
.modern-services-page .btn-outline:hover {
  background: #fff;
  color: #1d4f7e;
}

.modern-services-page .footer {
  background: linear-gradient(180deg, #0c1d31 0%, #0b1626 100%);
}

.hamburger {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

@keyframes auroraFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(16px) scale(1.05);
  }
}

@media (max-width: 1024px) {
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  .modern-services-page .service-content {
    grid-template-columns: 1fr;
  }

  .modern-services-page .hero {
    min-height: 62vh;
  }
}

@media (max-width: 768px) {
  .modern-services-page .services-overview,
  .modern-services-page .service-details,
  .modern-services-page .process-section,
  .modern-services-page .location-services,
  .modern-services-page .service-areas,
  .modern-services-page .why-choose-us,
  .modern-services-page .cta-section {
    padding: 70px 0;
  }

  .modern-services-page .service-card,
  .modern-services-page .feature-item,
  .modern-services-page .feature-card,
  .modern-services-page .process-step {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .modern-services-page *,
  .modern-services-page *::before,
  .modern-services-page *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   INTERIOR PAINTING CHICAGO — MODERN PAGE ADDITIONS
   Namespaced additions used by services/interior-painting-chicago.html
   (safe to reuse on other service pages)
   ========================================================= */

/* --- Page hero background --- */
.modern-services-page.interior-painting-page .hero {
  min-height: 78vh;
  padding: 110px 0 90px;
  background-image: url('../images/Interior-painting-Chicago.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.modern-services-page.exterior-painting-page .hero {
  min-height: 78vh;
  padding: 110px 0 90px;
  background-image: url('../images/Exterior Painting-After.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- Rating chip in top bar --- */
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
}

.rating-chip svg {
  width: 15px;
  height: 15px;
  color: var(--secondary);
  fill: var(--secondary);
}

/* --- Light breadcrumb bar (for pages not using the dark page-banner) --- */
.svc-breadcrumb-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
}

.svc-breadcrumb-bar .breadcrumb {
  justify-content: flex-start;
  color: var(--gray-500);
  flex-wrap: wrap;
}

.svc-breadcrumb-bar .breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}

.svc-breadcrumb-bar .breadcrumb a:hover {
  color: var(--secondary-dark);
}

.svc-breadcrumb-bar .breadcrumb .current {
  color: var(--gray-700);
  font-weight: 600;
}

/* --- Trust / brand logo strip --- */
.trust-logos-strip {
  padding: 36px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.trust-logos-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 48px;
}

.trust-logos-inner span {
  color: var(--gray-400);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-logos-inner img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: var(--transition);
}

.trust-logos-inner img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Free estimate / quote section --- */
.quote-section {
  padding: 92px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.quote-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.quote-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.quote-point svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--secondary-dark);
  margin-top: 2px;
}

.quote-point strong {
  display: block;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.quote-point p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin: 0;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.active {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
}

.accordion-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
}

.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  transition: var(--transition);
}

.accordion-icon::before {
  width: 12px;
  height: 2px;
}

.accordion-icon::after {
  width: 2px;
  height: 12px;
}

.accordion-item.active .accordion-icon {
  background: var(--secondary);
}

.accordion-item.active .accordion-icon::after {
  transform: scaleY(0);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.active .accordion-body {
  max-height: 400px;
}

.accordion-body-inner {
  padding: 0 24px 22px;
  color: var(--gray-600);
  font-size: 0.9688rem;
  line-height: 1.7;
}

/* --- Related searches tag cloud --- */
.tag-cloud-section {
  padding: 60px 0 92px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 980px;
  margin: 0 auto;
}

.tag-cloud a,
.tag-cloud span {
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-600);
  padding: 8px 16px;
  font-size: 0.8438rem;
  font-weight: 600;
}

.tag-cloud a {
  transition: var(--transition);
}

.tag-cloud a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* --- Mobile sticky call-to-action bar --- */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
  }

  .mobile-sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 16px 10px;
    font-weight: 700;
    font-size: 0.9375rem;
  }

  .mobile-sticky-cta .msc-call {
    background: var(--primary);
    color: var(--white);
  }

  .mobile-sticky-cta .msc-quote {
    background: var(--secondary);
    color: var(--gray-900);
  }

  body.has-mobile-sticky-cta {
    padding-bottom: 58px;
  }

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

@media (max-width: 576px) {
  .modern-services-page.interior-painting-page .hero {
    min-height: 64vh;
    padding: 90px 0 60px;
  }
}

/* =========================================================
   SITEWIDE COOKIE CONSENT BANNER (injected by js/script.js)
   ========================================================= */
.cookie-consent-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  max-width: 780px;
  margin: 0 auto;
  background: var(--gray-900);
  color: var(--white);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-consent-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-text {
  flex: 1 1 320px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-200);
}

.cookie-consent-text strong {
  color: var(--white);
}

.cookie-consent-text a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent-actions button {
  border-radius: 8px;
  padding: 11px 22px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.cookie-consent-actions .cookie-accept {
  background: var(--secondary);
  color: var(--gray-900);
}

.cookie-consent-actions .cookie-accept:hover {
  background: var(--secondary-dark);
}

.cookie-consent-actions .cookie-deny {
  background: transparent;
  color: var(--gray-200);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent-actions .cookie-deny:hover {
  border-color: var(--white);
  color: var(--white);
}

@media (max-width: 576px) {
  .cookie-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent-actions button {
    width: 100%;
  }
}

