/* ===================================
   GLOBAL STYLES & RESET
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0088cc;
  --primary-dark: #006699;
  --primary-light: #33a3dd;
  --secondary-color: #ffd700;
  --text-dark: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-gray: #f8f9fa;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    "Roboto",
    "Helvetica Neue",
    Arial,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* ===================================
   HEADER & LOGO
   =================================== */
.header {
  background: var(--text-white);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.logo {
  flex: 0 0 auto;
  max-width: 350px;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.phone-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: var(--transition);
}

.phone-number:hover {
  color: var(--primary-dark);
}

.availability {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
  background: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0;
}

.nav-list a {
  display: block;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 1rem 1.5rem;
  position: relative;
  transition: var(--transition);
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

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

.nav-list a:hover {
  background: var(--primary-dark);
}

/* ===================================
   MOBILE CALL BUTTON
   =================================== */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--success-color);
  color: var(--text-white);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  align-items: center;
  gap: 10px;
  animation: pulse 2s infinite;
}

.mobile-call-btn svg {
  width: 20px;
  height: 20px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ===================================
   HERO SECTION WITH BACKGROUND
   =================================== */
.hero {
  position: relative;
  color: var(--text-white);
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/hero-backgrounds/home.jpg") center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 136, 204, 0.9) 0%,
    rgba(0, 102, 153, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.75rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

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

.hero-feature strong {
  font-size: 2.5rem;
  color: var(--secondary-color);
  display: block;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-feature span {
  font-size: 1rem;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 1.125rem;
}

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

.btn-primary:hover {
  background: #ffed4e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
}

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

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

/* ===================================
   TRUST BAR
   =================================== */
.trust-bar {
  background: var(--primary-dark);
  padding: 2.5rem 0;
  border-bottom: 3px solid var(--secondary-color);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  transition: var(--transition);
}

.trust-bar-item:hover {
  transform: translateY(-5px);
}

.trust-bar-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
  .trust-bar-item:not(:last-child) {
    border-right: none;
  }
}

.trust-bar-item svg {
  width: 44px;
  height: 44px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.trust-bar-item span {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.trust-bar-item p {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin: 0.2rem 0 0;
}

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

@media (max-width: 500px) {
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   HOME ABOUT — REVIEW CARDS
   =================================== */
.home-review-card {
  background: var(--bg-gray);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.home-review-stars {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.home-review-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}

.home-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-review-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.home-review-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.home-review-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

.home-review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  margin-top: 0.25rem;
  transition: var(--transition);
}

.home-review-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: 5rem 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.75rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   HOME ABOUT SPLIT SECTION
   =================================== */

.home-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.home-about-left h2 {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.home-about-sub {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.home-about-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.home-about-body strong {
  color: var(--text-dark);
}

.home-about-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.home-about-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.home-about-stat span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-about-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-gray);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.home-value-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.home-value-icon svg {
  width: 22px;
  height: 22px;
}

.home-value-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.home-value-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

/* ===================================
   BEFORE & AFTER SHOWCASE
   =================================== */
.v3-ba-showcase {
  background: #0a2540;
  padding: 5rem 0;
}

.v3-ba-showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.v3-ba-showcase-header h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.v3-ba-showcase-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

.v3-ba-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.v3-ba-card {
  border-radius: 10px;
  overflow: hidden;
  background: #0d2d4a;
}

.v3-ba-card .before-after-container {
  height: 280px;
}

.v3-ba-card .before-after-slider {
  height: 100%;
}

.v3-ba-card .after-image,
.v3-ba-card .before-image {
  height: 100%;
}

.v3-ba-card .after-image img,
.v3-ba-card .before-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v3-ba-caption {
  padding: 0.9rem 1.1rem;
  color: #fff;
}

.v3-ba-caption strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}

.v3-ba-caption span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.v3-ba-cta {
  text-align: center;
  margin-top: 3rem;
}

.v3-ba-cta a {
  background: var(--secondary-color);
  color: #0a2540;
  font-weight: 700;
}

.v3-ba-cta a:hover {
  background: #f5c800;
}

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

/* ===================================
   HOME ABOUT — V3 DARK/LIGHT SPLIT
   =================================== */
.v3-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.v3-about-dark {
  background: var(--primary-color);
  border-radius: 0 16px 16px 0;
  color: #fff;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v3-about-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1.4rem;
  width: fit-content;
}

.v3-about-dark h2 {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 1rem;
}

.v3-about-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.v3-about-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.v3-about-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
}

.v3-about-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.v3-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  width: fit-content;
  transition: var(--transition);
}

.v3-about-cta:hover {
  background: #ffed4e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.v3-about-light {
  background: var(--bg-gray);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v3-about-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #aaa;
  margin-bottom: 1.5rem;
}

.v3-about-row {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
}

.v3-about-row:last-child {
  border-bottom: none;
}

.v3-about-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.v3-about-icon svg {
  width: 22px;
  height: 22px;
}

.v3-about-row h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.v3-about-row p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 900px) {
  .v3-about-split {
    grid-template-columns: 1fr;
  }
  .v3-about-dark,
  .v3-about-light {
    padding: 3rem 2rem;
  }
  .v3-about-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .home-about-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .home-about-stats {
    gap: 1.5rem;
  }
}

/* ===================================
   ABOUT CONTENT (homepage + about page shared)
   =================================== */

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ===================================
   ABOUT PAGE
   =================================== */

/* Stats bar */
.about-stats-bar {
  background: var(--primary-color);
  padding: 2.5rem 0;
}

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

.about-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.about-stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.about-intro-text h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.lead-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.about-body-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #e8f5e9;
  border-left: 4px solid var(--success-color);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: #2e7d32;
  font-weight: 500;
  line-height: 1.6;
}

.about-guarantee svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--success-color);
  margin-top: 2px;
}

/* Service cards in intro */
.about-intro-services {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-service-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-gray);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.about-service-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-service-icon svg {
  width: 26px;
  height: 26px;
}

.about-service-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.about-service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* Benefits list */
.about-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
}

.about-benefit-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  opacity: 0.2;
  line-height: 1;
  min-width: 3rem;
}

.about-benefit-body h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.about-benefit-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

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

  .about-stat-number {
    font-size: 2rem;
  }
}

.highlight-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--primary-color);
  background: var(--bg-gray);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

/* ===================================
   FEATURES GRID
   =================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-box {
  background: var(--text-white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.feature-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.feature-icon svg {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: block;
}

.feature-box h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-box p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* ===================================
   SERVICES GRID - ENHANCED
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--text-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  padding: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}

.service-icon svg {
  width: 60px;
  height: 60px;
  color: var(--primary-color);
  margin: 0 auto;
  display: block;
}

.service-content {
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

.service-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--text-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.service-note p {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.25rem;
}

/* ===================================
   TESTIMONIALS / REVIEWS - SLIDING
   =================================== */
.reviews-section {
  padding: 5rem 0;
  background: var(--primary-color);
  color: var(--text-white);
  overflow: hidden;
  position: relative;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.reviews-header h2 {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stars {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.rating-info {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--text-white);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.google-badge:hover {
  transform: scale(1.05);
}

.google-logo {
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* Scrolling Container */
.reviews-scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 2.5rem;
  animation: scroll 60s linear infinite;
  will-change: transform;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Review Cards */
.review-card {
  background: var(--text-white);
  border-radius: 15px;
  padding: 2rem;
  min-width: 400px;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-10px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.125rem;
}

.review-date {
  color: var(--text-light);
  font-size: 0.875rem;
}

.review-stars {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-text {
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===================================
   PAGE HERO (for subpages)
   =================================== */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: var(--text-white);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* ===================================
   SERVICE AREAS
   =================================== */
.areas-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.areas-note {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--primary-color);
  color: var(--text-white);
  border-radius: 12px;
}

.areas-note p {
  font-size: 1.25rem;
  margin: 0;
}

.area-tag {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
}

.area-tag:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.areas-note-link {
  color: var(--secondary-color);
  font-weight: 700;
}

.areas-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.service-detail {
  max-width: 900px;
  margin: 0 auto;
}

.service-detail h2 {
  color: var(--primary-color);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.service-detail h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
}

.service-detail p {
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #dc3545;
}

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

.error-message {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.success-message {
  display: none;
  background: var(--success-color);
  color: var(--text-white);
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: var(--text-white);
  padding: 5rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.contact-info-box {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.contact-info-box h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.contact-details p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.contact-details a {
  color: var(--secondary-color);
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--text-white);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #1a1a1a;
  color: var(--text-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-section h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-section li {
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

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

.footer-contact li {
  margin-bottom: 0.75rem;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    display: none; /* Hide header contact on mobile */
  }

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

/* ===================================
   MOBILE NAVIGATION OVERLAY
   =================================== */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ===================================
   MOBILE CALL BUTTON (Enhanced)
   =================================== */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--success-color);
  color: var(--text-white);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
  z-index: 999;
  align-items: center;
  gap: 10px;
  animation: pulse 2s infinite;
  min-height: 48px; /* Touch-friendly */
  min-width: 48px;
}

.mobile-call-btn svg {
  width: 20px;
  height: 20px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
  }
}

/* ===================================
   RESPONSIVE DESIGN - ENHANCED
   =================================== */

/* Tablet Landscape - 992px */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    display: none; /* Hide header contact on mobile */
  }

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

  .services-grid,
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Tablet Portrait / Mobile Menu - 768px */
@media (max-width: 768px) {
  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: flex;
    z-index: 1002;
    min-width: 48px;
    min-height: 48px;
    padding: 10px;
    background: none;
  }

  .mobile-menu-toggle span {
    background: var(--primary-color);
    transition: var(--transition);
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Full-Screen Mobile Navigation */
  .nav > .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .nav.active {
    transform: translateY(0);
  }

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

  .nav-list a {
    padding: 1.1rem 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    transition: background 0.2s, letter-spacing 0.2s;
  }

  .nav-list a:hover,
  .nav-list a.active {
    background: rgba(255, 255, 255, 0.12);
    letter-spacing: 0.1em;
  }

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

  /* Phone number strip inside full-screen menu */
  .nav::after {
    content: "(910) 758-6910";
    display: block;
    margin-top: 2rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  /* Mobile Call Button */
  .mobile-call-btn {
    display: flex;
  }

  /* Logo Sizing */
  .logo {
    max-width: 250px;
  }

  .header-contact {
    display: none; /* Hide header contact on mobile */
  }

  /* Hero Section */
  .hero {
    /* Hero Stats Mobile */
    .hero-stats {
      gap: 2rem;
    }

    .stat-number {
      font-size: 2rem;
    }

    /* Benefits Grid Mobile */
    .benefits-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .benefit-item {
      padding: 1.5rem 1rem;
    }

    .benefit-icon {
      width: 60px;
      height: 60px;
    }

    .benefit-icon svg {
      width: 28px;
      height: 28px;
    }

    /* Gallery Mobile */
    .gallery-hero {
      padding: 4rem 0;
    }

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

    .gallery-hero .hero-stats {
      gap: 1.5rem;
    }

    .gallery-hero .stat-number {
      font-size: 1.75rem;
    }

    .gallery-filters {
      gap: 0.5rem;
    }

    .filter-btn {
      padding: 0.625rem 1.25rem;
      font-size: 0.875rem;
    }

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

    .gallery-item.featured {
      grid-column: span 1;
    }

    .gallery-item .before-after-container {
      height: 250px;
    }

    .gallery-item.featured .before-after-container {
      height: 300px;
    }

    .gallery-item-header {
      padding: 0.75rem 1rem;
    }

    .gallery-item-content {
      padding: 1rem;
    }

    .gallery-item-content h3 {
      font-size: 1.25rem;
    }

    .project-details {
      flex-direction: column;
      gap: 0.5rem;
    }

    /* Lightbox Mobile */
    .lightbox-modal {
      padding: 1rem;
    }

    .lightbox-content {
      border-radius: 15px;
      max-height: 95vh;
    }

    .lightbox-body {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 1.5rem;
    }

    .lightbox-image-container {
      min-height: 250px;
    }

    .lightbox-version.before-after-container {
      height: 250px;
    }

    .lightbox-header {
      padding: 1rem 1.5rem;
    }

    .lightbox-footer {
      padding: 1rem 1.5rem;
      flex-direction: column;
    }

    .lightbox-footer .btn {
      width: 100%;
      margin-bottom: 0.5rem;
    }

    /* Stats Grid Mobile */
    .stats-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .stat-card {
      padding: 1.5rem;
    }

    .stat-icon {
      width: 60px;
      height: 60px;
    }

    .stat-icon i {
      font-size: 1.5rem;
    }

    .stat-content .stat-number {
      font-size: 2rem;
    }

    /* Testimonial Mobile */
    .testimonial-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .testimonial-card {
      padding: 1.5rem;
    }

    .testimonial-content p {
      font-size: 1rem;
    }

    .testimonial-author {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    padding: 5rem 0;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-features {
    gap: 2.5rem;
    flex-direction: column;
  }

  .hero-feature strong {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 100%;
  }

  /* Sections */
  .section {
    padding: 3rem 0;
  }

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

  /* Grids to Single Column */
  .services-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Form */
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  /* Page Hero */
  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero p {
    font-size: 1.125rem;
  }

  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Review Cards */
  .review-card {
    min-width: 320px;
    max-width: 320px;
  }

  .reviews-track {
    animation-duration: 40s;
  }
}

/* Large Phones - 480px */
@media (max-width: 480px) {
  /* Logo */
  .logo {
    max-width: 180px;
  }

  .header-contact {
    font-size: 1.25rem;
  }

  /* Hero */
  .hero h1 {
    display: none; /* Hide header contact on mobile */
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-feature strong {
    font-size: 1.75rem;
  }

  .hero-feature span {
    font-size: 0.875rem;
  }

  /* Buttons */
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Service Cards */
  .service-card {
    padding: 1.5rem;
  }

  .service-content h3 {
    font-size: 1.25rem;
  }

  /* Contact Info */
  .contact-info-section {
    padding: 2rem 1.5rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Review Cards */
  .review-card {
    min-width: 280px;
    max-width: 280px;
    padding: 1.5rem;
  }
}

/* Small Phones - 360px */
@media (max-width: 360px) {
  /* Container padding */
  .container {
    padding: 0 15px;
  }

  /* Logo */
  .logo {
    max-width: 150px;
  }

  .header-contact {
    font-size: 1.125rem;
  }

  /* Hero */
  .hero {
    padding: 4rem 0;
  }

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

  .hero-subtitle {
    font-size: 0.9375rem;
  }

  /* Buttons */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Mobile Call Button */
  .mobile-call-btn {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
    font-size: 0.9375rem;
  }

  /* Section Headers */
  .section-header h2 {
    display: none; /* Hide header contact on mobile */
  }

  /* Page Hero */
  .page-hero h1 {
    font-size: 1.75rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  /* Nav Menu */
  .nav {
    width: 100%;
  }

  .nav-list a {
    padding: 1rem 2rem;
    font-size: 1.25rem;
  }

  /* Review Cards */
  .review-card {
    min-width: 260px;
    max-width: 260px;
    padding: 1.25rem;
  }

  .review-text {
    font-size: 0.875rem;
  }
}

/* Touch-Friendly Improvements */
@media (hover: none) and (pointer: coarse) {
  /* All clickable elements minimum 44x44px */
  .btn,
  .nav-list a,
  .mobile-menu-toggle,
  .mobile-call-btn {
    min-height: 44px;
    min-width: 44px;
  }

  /* Remove hover effects on touch devices */
  .service-card:hover,
  .feature-box:hover,
  .badge:hover {
    transform: none;
  }

  /* Improve tap highlight */
  * {
    -webkit-tap-highlight-color: rgba(0, 136, 204, 0.2);
  }
}
/* ===================================
   GALLERY PREVIEW STYLES
   =================================== */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.gallery-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item h4 {
  padding: 1rem 1.5rem 0.5rem;
  margin: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.gallery-item p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

.before-after-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.before-after-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gallery-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-preview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .before-after-container {
    height: 200px;
  }

  .gallery-item h4 {
    font-size: 1.125rem;
  }

  .gallery-cta p {
    font-size: 1rem;
  }
}

/* Touch-Friendly Gallery Updates */
@media (hover: none) and (pointer: coarse) {
  /* For touch devices, always show after image */
  .before-after-container .after-image {
    clip-path: inset(0 0 0 0);
  }

  .gallery-item:hover {
    transform: none;
  }
}

/* ===================================
   FULL GALLERY STYLES
   =================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.gallery-item-large {
  grid-column: span 2;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-item:hover,
.gallery-item-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item-large .before-after-container {
  height: 400px;
}

.gallery-item .before-after-container {
  height: 300px;
}

.gallery-info {
  padding: 1.5rem;
}

.gallery-item-large .gallery-info {
  padding: 2rem;
}

.gallery-info h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 0 0 0.75rem 0;
}

.gallery-info h4 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
}

.gallery-info p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.gallery-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--light-gray);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Responsive Full Gallery */
@media (max-width: 968px) {
  .gallery-item-large {
    grid-column: span 1;
  }

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

  .gallery-item-large .before-after-container {
    height: 350px;
  }

  .gallery-item .before-after-container {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .gallery-item-large .before-after-container {
    height: 300px;
  }

  .gallery-item .before-after-container {
    height: 200px;
  }

  .gallery-info h3 {
    font-size: 1.25rem;
  }

  .gallery-info h4 {
    font-size: 1.125rem;
  }
}

/* ===================================
   GALLERY LIGHTBOX STYLES
   =================================== */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  max-width: 90vw;
  max-height: 90vh;
  overflow: auto;
  margin: 20px;
  z-index: 1;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.lightbox-close:hover {
  background: var(--primary-dark);
}

.lightbox-header {
  padding: 2rem 2rem 1rem 2rem;
  text-align: center;
}

.lightbox-header h2 {
  color: var(--primary-color);
  margin: 0 0 0.5rem 0;
  font-size: 1.75rem;
}

.lightbox-header p {
  color: var(--text-light);
  margin: 0;
  font-size: 1.125rem;
}

.lightbox-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 0 2rem 2rem 2rem;
}

.lightbox-image-container {
  text-align: center;
}

.lightbox-image-container h3 {
  color: var(--primary-color);
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
}

.lightbox-image-container img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    margin: 10px;
    max-width: 95vw;
    max-height: 95vh;
  }

  .lightbox-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }

  .lightbox-header h2 {
    display: none; /* Hide header contact on mobile */
  }

  .lightbox-header p {
    font-size: 1rem;
  }

  .lightbox-images {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .lightbox-image-container img {
    max-height: 300px;
  }
}

/* ===================================
   SIMPLIFIED GALLERY STYLES
   =================================== */
.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  color: var(--text-muted);
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  border: 2px dashed var(--border-color);
}

/* ===================================
   ENHANCED GALLERY STYLES
   =================================== */

/* Gallery Hero Section */
.gallery-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.gallery-hero .hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

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

.gallery-hero p {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 2rem;
}

.gallery-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

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

.gallery-hero .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.gallery-hero .stat-label {
  font-size: 1rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gallery Header */
.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.lead-text {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.filter-btn {
  background: var(--bg-gray);
  border: 2px solid var(--border-color);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(0, 86, 179, 0.06);
}

.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

/* Enhanced Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.gallery-item {
  background: var(--text-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* Featured card: spans 2 of 3 columns */
.gallery-item.featured {
  grid-column: span 2;
}

.gallery-item.featured .gallery-item-content {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #003d99 100%);
  color: var(--text-white);
}

.gallery-item.featured .gallery-item-content h3 {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.gallery-item.featured .gallery-item-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.gallery-item.featured .project-details {
  color: rgba(255, 255, 255, 0.75);
}

.gallery-item.featured .project-details span {
  color: rgba(255, 255, 255, 0.75);
}

.gallery-item.featured .category-badge {
  font-size: 1rem;
  padding: 0.35rem 1rem;
}


.gallery-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--bg-gray);
  border-bottom: 1px solid var(--border-color);
}

.category-badge {
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
}

.project-type {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Enhanced Before/After Container */
.gallery-item .before-after-container {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.gallery-item.featured .before-after-container {
  height: 300px;
}

.before-after-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-label {
  position: absolute;
  top: 0.85rem;
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 10;
}

.before-image .image-label {
  left: 0.85rem;
  background: rgba(0, 102, 153, 0.85);
}

.after-image .image-label {
  right: 0.85rem;
  background: rgba(180, 145, 0, 0.9);
  color: #1a1a1a;
  z-index: 5;
}

/* Slider Handle */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--primary-color);
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 10px rgba(0, 136, 204, 0.5);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.35);
  border: 3px solid var(--text-white);
  pointer-events: none;
}

.slider-button svg {
  display: block;
  stroke: var(--text-white);
}

/* Gallery Item Content */
.gallery-item-content {
  padding: 1.5rem;
}

.gallery-item-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.gallery-item-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-details {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.project-details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-details i {
  color: var(--primary-color);
}

/* Load More Section */
.gallery-load-more {
  text-align: center;
  margin: 3rem 0;
}

/* Gallery Stats */
.gallery-stats {
  text-align: center;
  margin: 3rem 0;
}

.gallery-stats h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: var(--text-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

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

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

.stat-icon i {
  font-size: 2rem;
  color: var(--text-white);
}

.stat-content .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-content .stat-label {
  font-size: 1rem;
  color: var(--text-light);
}

/* Testimonial Section */
.testimonial-section {
  text-align: center;
}

.testimonial-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--text-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.author-info h4 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.875rem;
}

.rating {
  color: var(--secondary-color);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  padding: 2rem;
  overflow-y: auto;
}

.lightbox-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  background: var(--text-white);
  border-radius: 20px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.lightbox-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--bg-gray);
  border-bottom: 1px solid var(--border-color);
}

.lightbox-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

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

.lightbox-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.lightbox-image-container {
  min-height: 400px;
}

.lightbox-version.before-after-container {
  height: 400px;
}

.lightbox-details h4 {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.lightbox-details p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.meta-item i {
  color: var(--primary-color);
  width: 20px;
}

.lightbox-footer {
  padding: 1.5rem 2rem;
  background: var(--bg-gray);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.lightbox-footer .btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

/* Service Notice Banner */
.service-notice-banner {
  background: #fff8e1;
  border-left: 4px solid var(--secondary-color);
  padding: 0.85rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: #5a4000;
}

/* ===================================
   ENHANCED SERVICE STYLES
   =================================== */
.service-card {
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
}

.service-icon {
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary-color) 100%
  );
  position: relative;
}

.service-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary-color);
}

.service-icon svg {
  color: var(--text-white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-subtitle {
  color: var(--secondary-color) !important;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem !important;
}

.service-features {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

.service-areas,
.service-benefits,
.service-process,
.service-schedule,
.service-specialty,
.service-health,
.service-custom,
.service-pricing {
  background: var(--bg-gray);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-size: 0.9rem;
  border-left: 4px solid var(--primary-color);
}

/* Why Choose Us Section */
.why-choose-us {
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--text-white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.benefit-icon svg {
  width: 36px;
  height: 36px;
  color: var(--text-white);
}

.benefit-item h4 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
    ENHANCED GALLERY STYLES FROM GALLERY.HTML
    =================================== */

/* Enhanced Gallery Styles */
.before-after-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

.gallery-item.featured .before-after-container {
  height: 300px;
}

.before-after-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-image {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.after-image {
  z-index: 1;
  clip-path: inset(0 0 0 50%);
}

/* Image Label Positioning Fix */
.image-label {
  position: absolute;
  top: 0.85rem;
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 10;
  pointer-events: none;
}

/* Before label on LEFT side */
.before-image .image-label {
  left: 0.85rem;
  background: rgba(0, 102, 153, 0.85);
}

/* After label on RIGHT side — must be z-index above before-image layer */
.after-image .image-label {
  right: 0.85rem;
  background: rgba(180, 145, 0, 0.9);
  color: #1a1a1a;
  z-index: 5;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--secondary-color);
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  transition: opacity 0.3s ease;
}

.before-after-container:hover .slider-handle {
  opacity: 1;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 3px solid white;
  pointer-events: none;
}

.slider-button svg {
  display: block;
  stroke: var(--primary-color);
}

.gallery-item {
  animation: fadeIn 0.6s ease-out;
}

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

.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  padding: 2rem;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  background: white;
  border-radius: 20px;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.lightbox-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--bg-gray);
  border-bottom: 1px solid var(--border-color);
  border-radius: 20px 20px 0 0;
}

.lightbox-close {
  background: var(--primary-color);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: var(--primary-dark);
  transform: rotate(90deg);
}

.lightbox-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.lightbox-image-container .before-after-container {
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.lightbox-details h4 {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.lightbox-details p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  padding: 1rem;
  background: var(--bg-gray);
  border-radius: 8px;
}

.meta-item i {
  color: var(--primary-color);
  width: 24px;
  font-size: 1.25rem;
}

.lightbox-footer {
  padding: 1.5rem 2rem;
  background: var(--bg-gray);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  border-radius: 0 0 20px 20px;
}

.lightbox-footer .btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

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

  .lightbox-image-container .before-after-container {
    height: 300px;
  }

  .lightbox-footer {
    flex-direction: column;
  }

  .lightbox-footer .btn {
    width: 100%;
  }
}

/* Loading Animation */
.gallery-item.loading {
  opacity: 0.5;
}

.gallery-item img {
  transition: opacity 0.3s ease;
}

/* Filter Animation */
.gallery-item.filtered-out {
  display: none;
}
/* ===================================
   BEFORE/AFTER SLIDER - COMPLETE FIX
   =================================== */

/* Container */
.before-after-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

.gallery-item.featured .before-after-container {
  height: 400px;
}

/* Slider wrapper */
.before-after-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Image containers */
.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Layering - After behind, Before on top */
.after-image {
  z-index: 1;
}

.before-image {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

/* Image Labels */
.image-label {
  position: absolute;
  top: 0.85rem;
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 10;
  pointer-events: none;
}

/* Before label on LEFT */
.before-image .image-label {
  left: 0.85rem;
  background: rgba(0, 102, 153, 0.85);
}

/* After label on RIGHT — above before-image layer */
.after-image .image-label {
  right: 0.85rem;
  background: rgba(180, 145, 0, 0.9);
  color: #1a1a1a;
  z-index: 5;
}

/* Slider Handle */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--secondary-color);
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  transition: opacity 0.3s ease;
}

.before-after-container:hover .slider-handle {
  opacity: 1;
}

/* Slider Button */
.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  border: 3px solid white;
  pointer-events: none;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-button svg {
  display: block;
  stroke: var(--primary-color);
}

.before-after-container:hover .slider-button {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Gallery Item Styles */
.gallery-item {
  background: var(--text-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.gallery-item.featured {
  grid-column: span 2;
}

/* Animation */
.gallery-item {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Filter Animation */
.gallery-item.filtered-out {
  display: none;
}

/* Lightbox Before/After Container */
.lightbox-image-container .before-after-container {
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

/* ===================================
   SOCIAL MEDIA LINKS STYLES
   =================================== */

/* Header Social Links */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: var(--transition);
  color: var(--text-white);
}

.social-links a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

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

/* Footer Social Links */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  color: var(--text-white);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

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

/* Mobile Social Links */
@media (max-width: 768px) {
  .social-links {
    display: none; /* Hide from header on mobile, show in footer */
  }

  .footer-social {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .footer-social a {
    width: 48px;
    height: 48px;
  }

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

@media (min-width: 769px) and (max-width: 992px) {
  .social-links a {
    width: 32px;
    height: 32px;
  }

  .social-links svg {
    width: 18px;
    height: 18px;
  }
}

/* ===================================
   LOGO SIZE ADJUSTMENTS FOR OLDER AUDIENCE
   =================================== */
.logo {
  flex: 0 0 auto;
  max-width: 450px; /* Increased from 350px */
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Desktop - Make logo even more prominent */
@media (min-width: 1200px) {
  .logo {
    max-width: 500px;
  }
}

/* Tablet */
@media (max-width: 992px) and (min-width: 769px) {
  .logo {
    max-width: 380px;
  }
}

/* Mobile - Larger for easy visibility */
@media (max-width: 768px) {
  .logo {
    max-width: 280px; /* Increased from 250px */
  }

  .header {
    padding: 1.25rem 0; /* More padding for breathing room */
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 220px; /* Increased from 180px */
  }
}

@media (max-width: 360px) {
  .logo {
    max-width: 190px; /* Increased from 150px */
  }
}

/* ===================================
   MOBILE RESPONSIVENESS ENHANCEMENTS
   =================================== */

/* Contact Page - Mobile Optimization */
@media (max-width: 768px) {
  /* Contact Wrapper - Stack on Mobile */
  .contact-wrapper {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .contact-form-section,
  .contact-info-section {
    padding: 1.5rem !important;
  }

  .contact-info-section {
    margin-top: 2rem;
  }

  /* Form inputs larger for mobile */
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 1rem;
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 48px; /* Touch-friendly */
  }

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

  /* Contact Info Items */
  .contact-info-item {
    flex-direction: row !important;
    align-items: flex-start !important;
    padding: 1.5rem 0 !important;
  }

  .contact-icon {
    flex-shrink: 0 !important;
    width: 48px !important;
    height: 48px !important;
  }

  .contact-info-text h3 {
    font-size: 1.125rem !important;
    margin-bottom: 0.5rem !important;
  }

  .contact-info-text p {
    font-size: 1rem !important;
  }

  .contact-info-text a {
    word-break: break-word;
  }
}

/* Gallery Page - Tablet (2 columns) */
@media (max-width: 1100px) and (min-width: 769px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .gallery-item.featured {
    grid-column: span 2 !important;
  }
}

/* Gallery Page - Mobile Optimization */
@media (max-width: 768px) {
  /* Gallery Hero */
  .gallery-hero {
    padding: 4rem 0;
  }

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

  .gallery-hero p {
    font-size: 1rem;
  }

  .gallery-hero .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .gallery-hero .stat-number {
    font-size: 2rem;
  }

  /* Gallery Filters */
  .gallery-filters {
    gap: 0.5rem;
    padding: 0 10px;
  }

  .filter-btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    min-height: 44px; /* Touch-friendly */
  }

  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 0;
  }

  .gallery-item.featured {
    grid-column: 1 / -1 !important;
  }

  /* Before/After Container Heights */
  .gallery-item .before-after-container {
    height: 250px !important;
  }

  .gallery-item.featured .before-after-container {
    height: 300px !important;
  }

  /* Gallery Item Content */
  .gallery-item-header {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .gallery-item-content {
    padding: 1rem;
  }

  .gallery-item.featured .gallery-item-content {
    padding: 1.25rem 1rem;
  }

  .gallery-item-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .gallery-item.featured .gallery-item-content h3 {
    font-size: 1.5rem !important;
  }

  .gallery-item.featured .gallery-item-content p {
    font-size: 1rem !important;
  }

  .gallery-item-content p {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  /* Project Details Stack on Mobile */
  .project-details {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
  }

  .project-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Slider Handle - More visible on mobile */
  .slider-handle {
    width: 5px;
  }

  .slider-button {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    flex-shrink: 0;
  }

  /* Lightbox Modal - Mobile */
  .lightbox-modal {
    padding: 0.5rem;
  }

  .lightbox-content {
    border-radius: 15px;
    max-height: 95vh;
    margin: 0;
  }

  .lightbox-header {
    padding: 1rem 1.5rem;
  }

  .lightbox-header h3 {
    font-size: 1.125rem;
  }

  .lightbox-close {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }

  .lightbox-body {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .lightbox-image-container .before-after-container {
    height: 250px !important;
  }

  .lightbox-details h4 {
    font-size: 1.5rem;
  }

  .lightbox-details p {
    font-size: 1rem;
  }

  .project-meta {
    gap: 0.75rem;
  }

  .meta-item {
    font-size: 0.9375rem;
    padding: 0.75rem;
  }

  .lightbox-footer {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .lightbox-footer .btn {
    width: 100%;
  }
}

/* iPhone Specific Optimizations */
@media (max-width: 480px) {
  /* Page Hero Adjustments */
  .page-hero {
    padding: 3rem 0;
  }

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

  .page-hero p {
    font-size: 1rem;
  }

  /* Gallery Header */
  .gallery-header h2 {
    font-size: 1.75rem;
  }

  .lead-text {
    font-size: 1rem;
  }

  /* Filter Buttons */
  .filter-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }

  /* Gallery Items */
  .gallery-item .before-after-container {
    height: 220px !important;
  }

  .gallery-item.featured .before-after-container {
    height: 260px !important;
  }

  .gallery-item-content h3 {
    font-size: 1.125rem;
  }

  .gallery-item-content p {
    font-size: 0.875rem;
  }

  /* Image Labels Smaller */
  .image-label {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  /* Contact Form */
  .form-group label {
    font-size: 0.9375rem;
  }

  .contact-form-section h2,
  .contact-info-section h2 {
    font-size: 1.5rem;
  }

  /* Lightbox on Small Phones */
  .lightbox-modal {
    padding: 0.25rem;
  }

  .lightbox-image-container .before-after-container {
    height: 200px !important;
  }

  .lightbox-details h4 {
    font-size: 1.25rem;
  }

  .lightbox-details p {
    font-size: 0.9375rem;
  }

  .meta-item {
    font-size: 0.875rem;
    padding: 0.625rem;
  }
}

/* Landscape Mode Adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .gallery-item .before-after-container,
  .gallery-item.featured .before-after-container {
    height: 200px !important;
  }

  .lightbox-image-container .before-after-container {
    height: 180px !important;
  }

  .page-hero {
    padding: 2rem 0;
  }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
  /* All interactive elements touch-friendly */
  .filter-btn,
  .gallery-item,
  .btn,
  .form-group input,
  .form-group textarea,
  .form-group select,
  .lightbox-close {
    min-height: 44px;
    min-width: 44px;
  }

  /* Better tap targets for slider */
  .slider-handle {
    width: 6px;
  }

  .slider-button {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    flex-shrink: 0;
  }

  /* Remove hover effects on touch */
  .gallery-item:hover {
    transform: none;
  }

  /* Make labels more visible on touch */
  .image-label {
    opacity: 1;
  }
}

/* Safari iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
  /* Fix iOS input zoom */
  input,
  textarea,
  select {
    font-size: 16px !important;
  }

  /* Fix iOS button appearance */
  button,
  .btn {
    -webkit-appearance: none;
    appearance: none;
  }

  /* Fix iOS overflow scrolling */
  .lightbox-content,
  .contact-info-section {
    -webkit-overflow-scrolling: touch;
  }
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
  width: 100%;
}

.container {
  max-width: 100%;
  overflow-x: hidden;
}

/* Fix any elements that might cause horizontal scroll */
@media (max-width: 768px) {
  * {
    max-width: 100%;
  }

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

  .section {
    overflow-x: hidden;
  }
}

/* Fix for iOS Safari viewport issue */
@media screen and (min-width: 320px) and (max-width: 767px) {
  html {
    width: 100%;
    overflow-x: hidden;
  }
}
/* ===================================
   PAGE HERO WITH BACKGROUND IMAGE
   =================================== */
.page-hero {
  position: relative;
  color: var(--text-white);
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

/* Background Image Layer */
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/hero-backgrounds/home.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Gradient Overlay */
.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 136, 204, 0.9) 0%,
    rgba(0, 102, 153, 0.85) 100%
  );
  z-index: 1;
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

/* Different Background Images Per Page */
.page-hero-about::before {
  background-image: url("../images/hero-backgrounds/about.jpg");
}

.page-hero-services::before {
  background-image: url("../images/hero-backgrounds/services.jpg");
}

.page-hero-gallery::before {
  background-image: url("../images/hero-backgrounds/gallery.jpg");
}

.page-hero-areas::before {
  background-image: url("../images/hero-backgrounds/areas.jpg");
}

.page-hero-contact::before {
  background-image: url("../images/hero-backgrounds/contact.jpg");
}

/* ===================================
   SERVICE AREAS PAGE
   =================================== */

.areas-map-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.areas-map-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 480px;
}

.areas-map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.areas-map-caption {
  text-align: center;
  margin-top: 0.75rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.areas-counties h2 {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.county-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  background: var(--text-white);
}

.county-card.county-primary {
  border-color: var(--primary-color);
  border-left: 4px solid var(--primary-color);
}

.county-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.county-header h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin: 0;
}

.county-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: var(--primary-color);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.county-badge-secondary {
  background: var(--bg-gray);
  color: var(--text-light);
}

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

.areas-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .areas-map-layout {
    grid-template-columns: 1fr;
  }

  .areas-map-embed {
    height: 300px;
  }
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}

.contact-form-section h2,
.contact-info-section h2 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form-intro {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-success {
  display: none;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.contact-success.visible {
  display: block;
}

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

.contact-submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* Contact Info Panel */
.contact-info-section {
  background: var(--bg-gray);
  border-radius: 12px;
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-info-item:first-of-type {
  padding-top: 1.5rem;
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1;
}

.contact-info-text h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-info-text a,
.contact-info-text span {
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-info-text a:hover {
  color: var(--primary-color);
}

.contact-info-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.contact-emergency {
  color: var(--success-color);
}

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Wisdomlayers Credit Link */
.footer-bottom a[href*="wisdomlayers"] {
  transition: var(--transition);
}

.footer-bottom a[href*="wisdomlayers"]:hover {
  color: var(--text-white) !important;
  text-decoration: none !important;
}

/* ===================================
   V2 SERVICES — NUMBERED CARD LAYOUT
   =================================== */
.v2-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.v2-service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.75rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.v2-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.13);
  border-color: var(--primary-color);
}

.v2-service-num {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary-color);
  opacity: 0.55;
  line-height: 1;
  pointer-events: none;
}

.v2-service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 136, 204, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.v2-service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary-color);
}

.v2-service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.v2-service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.v2-service-card .btn {
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
}

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

/* Service update notice banner */
.v2-service-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-left: 4px solid var(--secondary-color);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 2rem;
  font-size: 0.93rem;
  color: #5a4000;
}

.v2-service-notice svg {
  stroke: #e6a800;
}

/* Service card bullet list */
.v2-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.5rem;
}

.v2-service-list li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}

.v2-service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* Service card meta/note line */
.v2-service-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Why Choose block */
.v2-services-why {
  margin-top: 3.5rem;
  background: var(--primary-color);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  color: #fff;
  text-align: center;
}

.v2-services-why h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #fff;
}

.v2-services-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.v2-why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.v2-why-icon {
  font-size: 1.6rem;
  color: var(--secondary-color);
  line-height: 1;
}

.v2-why-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.v2-why-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  margin: 0;
}

.v2-services-cta {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
}

.v2-services-cta h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.v2-services-cta p {
  color: rgba(255,255,255,0.8);
  margin: 0;
}

@media (max-width: 900px) {
  .v2-services-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .v2-services-why {
    padding: 2rem 1.25rem;
  }
  .v2-services-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .v2-service-list {
    grid-template-columns: 1fr;
  }
}
