/* ============================================
   YORK QUALITY MOBILE WASH AND DETAIL
   Premium Automotive Detailing Website
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy-dark: #0e4c71;
  --navy: #14537c;
  --navy-light: #286fa5;
  --gold: #f4f190;
  --gold-light: #f7f5ab;
  --gold-dark: #d6d050;
  --white: #ffffff;
  --off-white: #f7f5f2;
  --light-gray: #e8e6e3;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #8a8a8a;
  --text-on-dark: #e8edf2;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --transition: 0.3s ease;
  --radius: 4px;
  --max-width: 1200px;
}

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

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

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }

.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  display: block;
}

.section.dark .section-label,
.page-dark .section-label {
  color: var(--gold);
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 680px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin: 0 auto;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

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

.section.dark .section-subtitle {
  color: var(--text-on-dark);
}

.section.alt {
  background: var(--off-white);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ---------- Header & Navigation ---------- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy-dark);
  transition: box-shadow var(--transition), background var(--transition);
}

/* no sticky header */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header-logo img {
  height: 110px;
  width: auto;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 0.5rem 0;
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-dark);
  min-width: 220px;
  padding: 0.75rem 0;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: none;
  white-space: nowrap;
}

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

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.75rem;
}

.nav-phone {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 700;
  font-style: normal !important;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-phone i {
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

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

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

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--navy-dark);
  padding: 6rem 2rem 2rem;
  transition: right var(--transition);
  z-index: 999;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}

.mobile-nav .nav-phone {
  margin-top: 2rem;
  font-size: 1.1rem;
  justify-content: flex-start;
}

.mobile-nav .btn {
  margin-top: 1.5rem;
  display: block;
  text-align: center;
  color: var(--navy-dark);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(11, 26, 43, 0.25) 0%,
    rgba(11, 26, 43, 0.12) 50%,
    rgba(11, 26, 43, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero p {
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-badge i {
  color: var(--gold);
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy-dark);
  overflow: hidden;
}

.page-hero .hero-bg::after {
  background: linear-gradient(
    to bottom,
    rgba(11, 26, 43, 0.8) 0%,
    rgba(11, 26, 43, 0.7) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  padding-top: 5rem;
  text-align: center;
  width: 100%;
}

.page-hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-on-dark);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.page-hero .divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem auto 0;
}

/* ---------- Home: Services Overview ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--light-gray);
}

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

.service-card .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--gold);
  font-size: 1.6rem;
  border: 2px solid var(--gold);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--navy-dark);
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-card .price-from {
  font-family: 'Raleway', sans-serif !important;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--gold-dark);
  text-transform: uppercase;
}

/* ---------- Home: Why Choose Us ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

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

.feature-item .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
}

.feature-item h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.feature-item p {
  color: var(--text-on-dark);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Home: Process / How It Works ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.process-step h4 {
  margin-bottom: 0.75rem;
  color: var(--navy-dark);
}

.process-step p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ---------- Home: CTA ---------- */
.cta-section {
  text-align: center;
  padding: 5rem 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  color: var(--text-on-dark);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}

.cta-section .btn {
  position: relative;
}

/* ---------- About Page ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-text .section-label {
  margin-bottom: 0.75rem;
}

.about-intro-text h2 {
  margin-bottom: 1.5rem;
  color: var(--navy-dark);
}

.about-intro-text p {
  color: var(--text-medium);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.value-card h4 {
  margin-bottom: 0.75rem;
  color: var(--navy-dark);
}

.value-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.cert-badges {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.cert-badge:hover {
  border-color: var(--gold);
}

.cert-badge i {
  font-size: 1.8rem;
  color: var(--gold);
}

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

.cert-badge-text strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.cert-badge-text span {
  color: var(--text-on-dark);
  font-size: 0.85rem;
}

/* ---------- Services Page ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 0 0 var(--radius);
}

.pricing-header {
  background: var(--navy-dark);
  padding: 1.5rem;
  text-align: center;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-header h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.pricing-range {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pricing-range span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: var(--text-on-dark);
}

.pricing-range .price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Raleway', sans-serif;
}

.pricing-body {
  padding: 2rem;
  flex: 1;
}

.pricing-body h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.pricing-body ul {
  margin-bottom: 1.5rem;
}

.pricing-body li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-medium);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--off-white);
}

.pricing-body li:last-child {
  border-bottom: none;
}

.pricing-body li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 0.65rem;
}

.pricing-footer {
  padding: 0 2rem 2rem;
}

/* Paint Correction Cards */
.correction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.correction-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: transform var(--transition), box-shadow var(--transition);
}

.correction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.correction-card .level-badge {
  display: inline-block;
  background: var(--navy-dark);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.correction-card h3 {
  font-size: 1.25rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.correction-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.correction-card .price-tag {
  font-family: 'Raleway', sans-serif !important;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: 1.5rem;
}

.correction-card .price-tag span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
  display: block;
  margin-top: 0.25rem;
}

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}

.addon-item:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.addon-item span:first-child {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.addon-item .addon-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Raleway', sans-serif !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.services-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--text-on-dark);
  font-size: 0.9rem;
  font-style: italic;
}

.services-note strong {
  color: var(--gold);
}

/* ---------- Gallery Page ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 26, 43, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-overlay i {
  color: var(--white);
  font-size: 1.5rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 1rem;
  transition: color var(--transition);
  z-index: 2001;
}

.lightbox-nav:hover {
  color: var(--gold);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

/* ---------- Contact Page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info-card {
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  transition: transform var(--transition);
}

.contact-info-card:hover {
  transform: translateX(4px);
}

.contact-info-card .icon-wrap {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.contact-info-card p {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
}

.contact-info-card a {
  color: var(--navy);
  font-weight: 600;
}

.contact-info-card a:hover {
  color: var(--gold-dark);
}

.qr-section {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
}

.qr-section img {
  width: 140px;
  height: 140px;
  margin: 1rem auto 0;
}

.qr-section p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.qr-section h4 {
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}

.contact-form h3 {
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
}

.contact-form > p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: #c0392b;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a4a4a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 0.9rem;
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ---------- Footer ---------- */
.footer {
  background: #0a0a0a;
  color: #e2e8ef;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #e2e8ef;
}

.footer-col ul a {
  color: #e2e8ef;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-col .contact-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-col .contact-line i {
  color: var(--gold);
  width: 18px;
  text-align: center;
}

.footer-col .contact-line a {
  color: var(--gold);
}

.footer-col .contact-line a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: #aab4be;
}

.footer-bottom a {
  color: var(--gold);
}

/* ---------- Homepage Dark Theme ---------- */
.page-dark {
  background: #0e4c71;
  color: var(--white);
}

/* Home About Section */
.home-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-about-text .section-label {
  margin-bottom: 0.5rem;
}

.home-about-text h2 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-about-text p {
  color: #e2e8ef;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.home-about-text .btn {
  margin-top: 0.75rem;
}

.home-about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

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

/* Dark Steps */
.dark-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.dark-step-card {
  background: #175681;
  border: 1px solid #1a5a86;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.dark-step-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.dark-step-card h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.dark-step-card .step-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.dark-step-card p {
  color: #e2e8ef;
  font-size: 1rem;
  line-height: 1.7;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Service Image Cards */
.service-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-image-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  cursor: pointer;
  text-decoration: none;
}

.service-image-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.service-image-card:hover .card-bg {
  transform: scale(1.05);
}

.service-image-card .card-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.service-image-card .card-content {
  position: relative;
  z-index: 2;
}

.service-image-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.service-image-card p {
  color: #e2e8ef;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.service-image-card .btn {
  align-self: flex-start;
}

/* Home Two-Column Feature */
.home-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.home-feature-image img {
  width: 100%;
  object-fit: cover;
}

.home-feature-text h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-feature-text p {
  color: #e2e8ef;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-list {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question i {
  font-size: 0.8rem;
  transition: transform var(--transition);
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: #e2e8ef;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Dark section divider */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

/* Testimonial Bar */
.testimonial-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-bar .stars {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-bar span {
  color: #e2e8ef;
  font-size: 0.85rem;
}

/* ---------- Scroll Animations ---------- */
/* Quote Form (Homepage) */
.quote-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background: #175681;
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-form .form-group label {
  color: #e2e8ef;
}

.quote-form .form-group input,
.quote-form .form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.quote-form .form-group select {
  background-color: #1a5a86;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.quote-form .form-group input::placeholder,
.quote-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 241, 144, 0.15);
  background: rgba(255, 255, 255, 0.14);
}

.quote-form .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.quote-form .form-group select option {
  background: #1a5a86;
  color: var(--white);
}

.quote-form .form-group select:focus {
  background-color: #1e6a9a;
}

/* Before & After */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.ba-pair {
  background: #175681;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

.ba-img .ba-tag {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
}

.ba-img .ba-tag.before {
  background: rgba(180, 40, 40, 0.85);
}

.ba-img .ba-tag.after {
  background: rgba(30, 140, 60, 0.85);
}

.ba-caption {
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.ba-caption p {
  color: #e2e8ef;
  font-size: 0.9rem;
  font-weight: 500;
}

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

/* Force all prices to use clean font */
.addon-price,
.price-tag,
.price-from,
.pricing-range .price,
.pricing-range,
.correction-card .price-tag,
.correction-card .price-tag span {
  font-family: 'Raleway', Arial, sans-serif !important;
  font-style: normal !important;
}

.reveal {
  opacity: 1;
  transform: none;
}

/* ---------- Mobile Call Button ---------- */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
  z-index: 900;
  transition: transform var(--transition);
  text-decoration: none;
}

.mobile-call-btn:hover {
  transform: scale(1.1);
}

/* ---------- Media Queries ---------- */
@media (max-width: 1024px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }

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

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

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

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

  .about-intro {
    gap: 3rem;
  }

  .home-about {
    gap: 3rem;
  }

  .home-feature {
    gap: 3rem;
  }

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

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

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

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

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

  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  /* Header */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-overlay {
    display: block;
    pointer-events: none;
  }

  .mobile-overlay.active {
    pointer-events: auto;
  }

  .mobile-call-btn {
    display: flex;
  }

  /* Grids */
  .services-grid,
  .process-steps,
  .about-values,
  .correction-grid {
    grid-template-columns: 1fr;
  }

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

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
  }

  .home-about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-about-image {
    order: -1;
  }

  .home-about-text h2 {
    font-size: 1.8rem;
  }

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

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

  .pricing-header {
    height: auto;
    min-height: 150px;
  }

  .header-logo img {
    height: 60px;
  }

  .hamburger {
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }

  .btn-sm {
    padding: 12px 24px;
    font-size: 0.85rem;
    min-height: 44px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
  }

  .lightbox img {
    max-width: 95%;
    max-height: 75vh;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-nav {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

  .page-hero-content {
    padding-top: 4rem;
  }

  .cert-badge {
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }

  .footer-col .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0;
    min-width: unset;
    background: transparent;
  }

  .footer-col .nav-dropdown a {
    padding: 0.35rem 0 0.35rem 1rem;
    font-size: 0.85rem;
    color: #e2e8ef;
  }

  .service-image-grid {
    grid-template-columns: 1fr;
  }

  .home-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-feature-image {
    order: -1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .cert-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

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

  .hero { min-height: 90vh; }
  .page-hero { min-height: 260px; height: 40vh; }

  .section { padding: 3rem 0; }

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

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

  .header-logo img {
    height: 45px;
  }

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

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

  .quote-form {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .section-label {
    letter-spacing: 2px;
    font-size: 0.85rem;
  }

  .hero-label {
    letter-spacing: 2px;
    font-size: 0.75rem;
  }

  .page-hero-content {
    padding-top: 3rem;
  }

  .home-about-text h2 {
    font-size: 1.5rem;
  }

  .home-feature-text h2 {
    font-size: 1.5rem;
  }
}
