/* ============================================
   SM POWERWASHING - Premium Stylesheet
   Light Blue | Dark Blue | Black | White
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=Oswald:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --navy: #0a192f;
  --navy-light: #112240;
  --royal: #1d4ed8;
  --royal-dark: #1e40af;
  --sky: #e0f2fe;
  --sky-light: #f0f9ff;
  --cyan: #06b6d4;
  --cyan-light: #67e8f9;
  --white: #ffffff;
  --black: #0f172a;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Crimson Text', Georgia, serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 40px -10px rgba(6, 182, 212, 0.3);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-heading);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
  background: var(--royal);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--royal-dark);
}

/* Selection */
::selection {
  background: var(--cyan);
  color: var(--white);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 60px;
  }
}

.section-padding {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 120px 0;
  }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 12vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.heading-1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.heading-2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.heading-3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}

.body-large {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.7;
  color: var(--gray-600);
}

.body-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--royal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.4);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--royal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 78, 216, 0.5);
}

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

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

.btn-accent {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.4);
}

.btn-accent:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

.btn-sm {
  padding: 12px 28px;
  font-size: 0.85rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
/* Home page stays fixed, others are absolute at the top */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-base);
  padding: 15px 0;
  background: transparent;
}

@media (min-width: 768px) {
  .header {
    padding: 20px 0;
  }
}

body.home-page .header {
  position: fixed;
}

/* Home page starts transparent */
body.home-page:not(.scrolled-state) .header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  padding: 20px 0;
}

/* Scrolled state only for fixed headers (home page) */
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

/* Header content colors when scrolled or on inner pages */
.header.scrolled .nav-link {
  color: var(--gray-700);
}

.header.scrolled .nav-link:hover {
  color: var(--royal);
}

.header.scrolled .logo-text {
  color: var(--navy);
}

.header.scrolled .header-phone {
  color: var(--navy);
  border-color: var(--royal);
}

.header.scrolled .header-phone:hover {
  background: var(--royal);
  color: var(--white);
}

.header.scrolled .hamburger-line {
  background: var(--navy);
}

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

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

.logo-img {
  height: 40px;
  width: auto;
  transition: var(--transition-base);
}

body.home-page .logo-img {
  height: 48px;
}

.header.scrolled .logo-img {
  height: 40px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
  transition: var(--transition-base);
}

@media (min-width: 640px) {
  .logo-text {
    font-size: 1.6rem;
  }
}

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

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: var(--transition-base);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

.header-phone {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  padding: 10px 20px;
  border: 2px solid var(--cyan);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  white-space: nowrap;
}

.header-phone:hover {
  background: var(--cyan);
  color: var(--navy);
}

/* Mobile Menu Toggle */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger-line {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-base);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

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

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-base);
  position: relative;
}

@media (min-width: 480px) {
  .mobile-nav-link {
    font-size: 2.2rem;
  }
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--cyan);
}

.mobile-nav-phone {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cyan);
  border: 2px solid var(--cyan);
  padding: 12px 28px;
  border-radius: var(--radius-md);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 18s infinite;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  8% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  41% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 47, 0.75) 0%,
    rgba(10, 25, 47, 0.5) 50%,
    rgba(10, 25, 47, 0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: auto 0;
  padding: 140px 20px 60px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  background: rgba(6, 182, 212, 0.08);
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--cyan);
  display: block;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-stats {
  position: relative;
  width: 100%;
  z-index: 2;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.8) 50%, transparent);
  padding: 40px 0 30px;
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-stats-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

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

.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cyan);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

@media (max-width: 767px) {
  .scroll-indicator {
    display: none;
  }
}

.scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header-left {
  text-align: left;
  margin: 0 0 60px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--cyan);
}

.section-header-left .section-label::before {
  width: 50px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-grid {
  display: grid;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.about-img-main img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition-slow);
}

@media (min-width: 768px) {
  .about-img-main img {
    height: 500px;
  }
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 150px;
  height: 150px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

@media (min-width: 768px) {
  .about-img-accent {
    width: 200px;
    height: 200px;
    right: -30px;
    bottom: -30px;
  }
}

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

.about-experience {
  position: absolute;
  top: 20px;
  left: 0;
  background: var(--royal);
  color: var(--white);
  padding: 15px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

@media (min-width: 768px) {
  .about-experience {
    left: -20px;
    top: 30px;
    padding: 20px 28px;
  }
}

.about-experience-number {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.about-experience-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

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

.about-features {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--sky);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal);
  font-size: 1.25rem;
}

.about-feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-feature-text p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--sky-light), transparent);
  pointer-events: none;
}

.services-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: rgba(6, 182, 212, 0.3);
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.6), transparent);
}

.service-card-icon {
  position: absolute;
  bottom: -24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--royal);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  transition: var(--transition-bounce);
}

.service-card:hover .service-card-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--cyan);
  color: var(--navy);
}

.service-card-content {
  padding: 24px 20px;
}

@media (min-width: 640px) {
  .service-card-content {
    padding: 32px 28px;
  }
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.gallery-section .section-title,
.gallery-section .section-desc {
  color: var(--white);
}

.gallery-section .section-label {
  color: var(--cyan);
}

.gallery-section .section-label::before {
  background: var(--cyan);
}

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

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

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

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

@media (min-width: 1024px) {
  .gallery-item:nth-child(6) {
    grid-column: span 2;
  }
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.8), transparent);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transform: translateY(10px);
  transition: var(--transition-base);
}

.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  padding: 20px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  transform: scale(0.9);
  transition: var(--transition-slow);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-base);
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: var(--cyan);
  color: var(--navy);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-base);
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: var(--cyan);
  color: var(--navy);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: var(--white);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--sky-light), transparent);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
  position: relative;
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 36px 32px;
  }
}

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--sky);
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-source {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ============================================
   WHY CHOOSE US / FEATURES
   ============================================ */
.features-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 70%);
  border-radius: 50%;
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.1), transparent 70%);
  border-radius: 50%;
}

.features-section .section-title,
.features-section .section-desc {
  color: var(--white);
}

.features-section .section-label {
  color: var(--cyan);
}

.features-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition-base);
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.3);
}

.feature-box-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--royal), var(--cyan));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.75rem;
  transition: var(--transition-bounce);
}

.feature-box:hover .feature-box-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-box-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-box-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cta-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ============================================
   CONTACT SECTION (used on all pages)
   ============================================ */
.contact-section {
  background: var(--white);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--sky-light), transparent);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 48px;
  }
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

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

.form-row {
  display: grid;
  gap: 20px;
}

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

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1rem;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sky), var(--sky-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-info-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-info-text a {
  color: var(--royal);
  font-weight: 600;
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

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

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  line-height: 0;
  width: 100%;
  max-width: 100%;
}

.map-wrapper iframe {
  width: 100%;
  max-width: 100%;
  height: 350px;
  border: none;
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
  padding: 100px 0 60px;
}

@media (min-width: 768px) {
  .page-header {
    min-height: 50vh;
    padding-top: 120px;
  }
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://i.ibb.co/WpY3VjN5/person-wearing-yellow-rubber-boots-with-high-pressure-water-nozzle-cleaning-dirt-tiles.jpg') center/cover;
  opacity: 0.2;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.7));
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 5.5rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.page-header-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breadcrumbs a {
  color: var(--cyan);
}

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

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs .current {
  color: rgba(255, 255, 255, 0.7);
}



/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-story {
  background: var(--white);
}

.story-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.values-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
}

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

.value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sky), var(--sky-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.service-areas {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

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

@media (min-width: 640px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition-base);
}

.area-item:hover {
  background: var(--royal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   SERVICES PAGE SPECIFIC
   ============================================ */
.services-detail-section {
  background: var(--white);
}

.service-detail {
  display: grid;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .service-detail {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .service-detail:nth-child(even) .service-detail-img {
    order: 2;
  }
}

.service-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.service-detail-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-slow);
}

@media (min-width: 768px) {
  .service-detail-img img {
    height: 400px;
  }
}

.service-detail-img:hover img {
  transform: scale(1.03);
}

.service-detail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.3), transparent);
  pointer-events: none;
}

.service-detail-content .section-label {
  margin-bottom: 12px;
}

.service-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-detail-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--gray-700);
}

.service-detail-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal);
  font-weight: 700;
  font-size: 0.8rem;
}

.process-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.process-section .section-title,
.process-section .section-desc {
  color: var(--white);
}

.process-section .section-label {
  color: var(--cyan);
}

.process-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

@media (min-width: 1024px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: linear-gradient(to right, var(--cyan), transparent);
  }
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--royal), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
  transition: var(--transition-bounce);
}

.process-step:hover .process-number {
  transform: scale(1.1);
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.process-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ============================================
   GALLERY PAGE SPECIFIC
   ============================================ */
.gallery-page-section {
  background: var(--white);
}

.gallery-page-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .gallery-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-page-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.gallery-page-item:nth-child(3n+1) {
  aspect-ratio: 1/1;
}

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

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

.gallery-page-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.8), transparent 60%);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-page-item-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transform: translateY(10px);
  transition: var(--transition-base);
}

.gallery-page-item:hover .gallery-page-item-title {
  transform: translateY(0);
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-page-section {
  background: var(--white);
}

.contact-page-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-page-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
  }
}

.contact-page-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .contact-page-form {
    padding: 56px;
  }
}

.contact-page-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card-large {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
}

.contact-card-large h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-card-large p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}

.contact-card-item:last-child {
  margin-bottom: 0;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.2rem;
}

.contact-card-text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-card-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  color: var(--cyan);
}

.contact-card-text a,
.contact-card-text span {
  color: var(--white);
  font-size: 1.05rem;
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-card-text a:hover {
  color: var(--cyan);
}

.business-hours {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.business-hours h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

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

.hours-day {
  font-weight: 600;
  color: var(--gray-700);
}

.hours-time {
  color: var(--gray-500);
}

.faq-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition-base);
}

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

.faq-question {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal);
  font-size: 0.9rem;
  transition: var(--transition-bounce);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--royal);
  color: var(--white);
}

.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: 0 28px 24px;
}

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--cyan);
  font-size: 1.2rem;
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--cyan);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  width: 100%;
  max-width: 100%;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  flex: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.footer-contact-text a:hover {
  color: var(--cyan);
}

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

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
  color: var(--cyan);
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1023px) {
  /* Keep them visible but adjusted */
  .about-img-accent,
  .about-experience {
    display: block; 
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 50px 0;
  }
  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 28px;
  }
  .hero-content {
    padding: 120px 15px 30px;
  }
  .cta-title {
    font-size: 2rem;
  }
  .page-header-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .about-grid, .story-grid, .contact-page-grid, .service-detail, .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .about-img-accent {
    width: 120px;
    height: 120px;
  }
  .about-experience-number {
    font-size: 2rem;
  }
  .btn {
    padding: 14px 24px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }
  .hero-cta {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 639px) {
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============================================
   GOOGLE BADGE EMBED
   ============================================ */
.google-badge {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.google-badge-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.google-badge-logo span:first-child {
  color: #4285F4;
}

.google-badge-logo span:nth-child(2) {
  color: #EA4335;
}

.google-badge-logo span:nth-child(3) {
  color: #FBBC05;
}

.google-badge-logo span:nth-child(4) {
  color: #4285F4;
}

.google-badge-logo span:nth-child(5) {
  color: #34A853;
}

.google-badge-logo span:nth-child(6) {
  color: #EA4335;
}

.google-badge-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
}

.google-badge-stars {
  color: #fbbf24;
  font-size: 1.2rem;
}

.google-badge-score {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.google-badge-reviews {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.google-badge-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--royal);
  padding: 10px 24px;
  border: 2px solid var(--royal);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.google-badge-link:hover {
  background: var(--royal);
  color: var(--white);
}

/* Yelp badge */
.yelp-badge {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .yelp-badge {
    padding: 32px;
  }
}

.yelp-badge-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #FF1A1A;
  margin-bottom: 8px;
}

.yelp-badge-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
}

.yelp-badge-stars {
  color: #fbbf24;
  font-size: 1.2rem;
}

.yelp-badge-score {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.yelp-badge-reviews {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.yelp-badge-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FF1A1A;
  padding: 10px 24px;
  border: 2px solid #FF1A1A;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.yelp-badge-link:hover {
  background: #FF1A1A;
  color: var(--white);
}
