/* ==========================================================================
   AZ MAINTENANCE - PLUMBING & ELECTRICIAN SERVICES
   Master Stylesheet
   Color Palette: #0F3D5E (Primary) | #F59E0B (Secondary) | #10B981 (Accent)
   ========================================================================== */

:root {
  --primary: #0F3D5E;
  --primary-dark: #09263B;
  --primary-light: #1A5B8A;
  --primary-subtle: #EBF3F8;
  --secondary: #F59E0B;
  --secondary-hover: #D97706;
  --secondary-light: #FEF3C7;
  --accent: #10B981;
  --accent-dark: #059669;
  --accent-light: #D1FAE5;
  --dark: #111827;
  --dark-surface: #1E293B;
  --dark-light: #334155;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #CBD5E1;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;
  --bg: #F8FAFC;
  --white: #FFFFFF;

  --font-heading: 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 61, 94, 0.08), 0 2px 4px -2px rgba(15, 61, 94, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 61, 94, 0.1), 0 4px 6px -4px rgba(15, 61, 94, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 61, 94, 0.12), 0 8px 10px -6px rgba(15, 61, 94, 0.05);
  --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.35);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1240px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base);
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--gray-500) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-light { background-color: var(--gray-50) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-dark { background-color: var(--dark) !important; }

.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3.5rem 0;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: var(--primary-subtle);
  color: var(--primary);
  margin-bottom: 1rem;
}

.badge-tag.badge-secondary {
  background-color: var(--secondary-light);
  color: var(--secondary-hover);
}

.badge-tag.badge-accent {
  background-color: var(--accent-light);
  color: var(--accent-dark);
}

.section-title {
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(15, 61, 94, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 61, 94, 0.35);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

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

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

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

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

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

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

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
  background-color: var(--dark);
  color: var(--gray-300);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-300);
}

.top-info-item i {
  color: var(--secondary);
}

.top-info-item a {
  color: var(--gray-200);
  font-weight: 600;
}

.top-info-item a:hover {
  color: var(--secondary);
}

.top-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Main Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(15, 61, 94, 0.1);
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  height: 52px;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

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

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

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

.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--primary-subtle);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 61, 94, 0.12);
  transition: all var(--transition-base);
}

.nav-phone-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
}

.nav-phone-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  line-height: 1;
}

.nav-phone-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.nav-phone-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.nav-phone-btn:hover .nav-phone-text small { color: rgba(255, 255, 255, 0.8); }
.nav-phone-btn:hover .nav-phone-text strong { color: var(--white); }
.nav-phone-btn:hover i { background: var(--secondary); color: var(--dark); }

/* Hamburger Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  position: relative;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.4rem;
}

/* Mobile Navigation Overlay */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1002;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: transform var(--transition-smooth);
}

.mobile-nav-drawer.open {
  transform: translateX(-320px);
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-close {
  background: var(--gray-100);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  color: var(--dark);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0;
}

.mobile-nav-links .nav-link {
  font-size: 1.05rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
}

.mobile-nav-links .nav-link.active,
.mobile-nav-links .nav-link:hover {
  background-color: var(--primary-subtle);
  padding-left: 1rem;
}

.mobile-nav-links .nav-link::after {
  display: none;
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #09263B 0%, #0F3D5E 60%, #1A5B8A 100%);
  color: var(--white);
  padding: 5.5rem 0 6.5rem 0;
  overflow: hidden;
}

.hero-overlay-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 85% 15%, rgba(245, 158, 11, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 10% 85%, rgba(16, 185, 129, 0.1) 0%, transparent 35%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-content h1 span.highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-200);
}

.hero-trust-item i {
  color: var(--accent);
  font-size: 1rem;
}

/* Hero Media & Floating Cards */
.hero-media-wrapper {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.floating-card-rating {
  position: absolute;
  top: -15px;
  left: -20px;
  background: var(--white);
  color: var(--dark);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatSlow 4s ease-in-out infinite;
}

.google-icon-box {
  width: 40px;
  height: 40px;
  background: #F8FAFC;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.rating-stars {
  color: #F59E0B;
  font-size: 0.8rem;
  display: flex;
  gap: 2px;
}

.rating-score {
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.rating-count {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.floating-card-badge {
  position: absolute;
  bottom: 25px;
  right: -20px;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.35rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--secondary);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: floatSlow 4.5s ease-in-out infinite reverse;
}

.floating-card-badge i {
  font-size: 1.8rem;
  color: var(--secondary);
}

.floating-card-badge h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.floating-card-badge p {
  color: var(--gray-400);
  font-size: 0.8rem;
  margin: 0;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   SERVICES GRID & CARDS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(15, 61, 94, 0.2);
}

.service-card-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(17, 24, 39, 0.85);
  color: var(--white);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card-title {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.service-checklist {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--gray-700);
  font-weight: 500;
}

.service-checklist li i {
  color: var(--accent);
  font-size: 0.85rem;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.link-arrow i {
  transition: transform var(--transition-fast);
}

.link-arrow:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   WHY CHOOSE US / STATS / TRUST SECTION
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.why-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.why-icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem auto;
  border-radius: var(--radius-lg);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all var(--transition-base);
}

.why-card:hover .why-icon-box {
  background: var(--secondary);
  color: var(--dark);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin: 0;
}

/* Trust Banner Box */
.trust-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.trust-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.trust-rating-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.trust-score-large {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--secondary);
  font-family: var(--font-heading);
}

.trust-rating-details h3 {
  color: var(--white);
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.trust-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.trust-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.trust-stat-card i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.trust-stat-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.trust-stat-card p {
  color: var(--gray-300);
  font-size: 0.85rem;
  margin: 0;
}

/* ==========================================================================
   WORK PROCESS / STEPS
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-card {
  background: var(--white);
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.process-step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
}

.process-icon {
  font-size: 2rem;
  color: var(--primary);
  margin: 0.5rem 0 1rem 0;
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin: 0;
}

/* ==========================================================================
   EMERGENCY / CALL CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #EA580C 100%);
  color: var(--dark);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.cta-banner-text h2 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.cta-banner-text p {
  color: #1E293B;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   PAGE HERO / BREADCRUMB
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

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

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--gray-300);
}

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

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

.breadcrumbs span.current {
  color: var(--secondary);
  font-weight: 600;
}

/* ==========================================================================
   SERVICE DETAILS PAGE
   ========================================================================== */
.service-details-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

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

.service-nav-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.service-nav-box h3 {
  font-size: 1.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1rem;
}

.service-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-700);
  background: var(--gray-50);
  transition: all var(--transition-fast);
}

.service-nav-link:hover, .service-nav-link.active {
  background: var(--primary);
  color: var(--white);
}

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

.sidebar-help-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.sidebar-help-icon {
  width: 56px;
  height: 56px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.25rem auto;
}

.sidebar-help-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.sidebar-help-card p {
  color: var(--gray-300);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.sidebar-help-phone {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  margin-bottom: 1.25rem;
}

/* Service Detail Content */
.service-main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2.5rem;
}

.service-main-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.service-content-body h2 {
  margin-bottom: 1rem;
}

.service-content-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.service-feature-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 1rem;
}

.service-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-feature-text h4 {
  margin-bottom: 0.25rem;
}

.service-feature-text p {
  font-size: 0.88rem;
  margin: 0;
}

/* ==========================================================================
   GALLERY PAGE & LIGHTBOX
   ========================================================================== */
.gallery-filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(15, 61, 94, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  background: var(--dark);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 61, 94, 0.9) 0%, rgba(15, 61, 94, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-category-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.gallery-zoom-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

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

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  max-height: 80vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  color: var(--white);
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
}

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-item-text p, .contact-item-text a {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0;
}

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

.contact-highlight-phone {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
}

/* Contact Form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-300);
  background-color: var(--gray-50);
  font-size: 0.95rem;
  color: var(--dark);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(15, 61, 94, 0.1);
}

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

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

.form-feedback-msg {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  font-size: 0.92rem;
}

.form-feedback-msg.success {
  display: block;
  background-color: var(--accent-light);
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

/* Map Section */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
  position: relative;
  border: 1px solid var(--gray-200);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.about-images-composite {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-floating-exp {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border-left: 5px solid var(--secondary);
}

.about-floating-exp h3 {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.about-floating-exp p {
  color: var(--gray-200);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.value-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   404 ERROR PAGE
   ========================================================================== */
.error-page-wrapper {
  padding: 7rem 0;
  text-align: center;
}

.error-code {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  font-family: var(--font-heading);
  letter-spacing: -0.05em;
  text-shadow: 4px 4px 0 var(--secondary);
  margin-bottom: 1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--dark);
  color: var(--gray-300);
  padding-top: 5rem;
  border-top: 4px solid var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
}

.footer-logo {
  height: 48px;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-desc {
  color: var(--gray-400);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-heading {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--secondary);
  border-radius: var(--radius-full);
}

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

.footer-links a {
  color: var(--gray-400);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 0.35rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  color: var(--gray-300);
  font-size: 0.92rem;
}

.footer-contact-item i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--white);
  font-weight: 600;
}

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

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition-base);
}

.social-btn:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-bottom {
  background: #0B0F17;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS & BACK TO TOP
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-base);
  position: relative;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-2px);
  color: var(--white);
}

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

.floating-btn-phone:hover {
  background-color: var(--primary-light);
}

.floating-btn-whatsapp {
  background-color: #25D366;
  border: 2px solid var(--white);
}

.floating-btn-whatsapp:hover {
  background-color: #20BA5A;
}

.floating-tooltip {
  position: absolute;
  right: 64px;
  background: var(--dark);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
}

.back-to-top-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* 1024px and down (Laptops / Tablets) */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-media-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

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

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

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

  .service-sidebar {
    position: static;
  }

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

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

/* 768px and down (Tablets & Large Mobiles) */
@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }

  .top-bar-inner {
    justify-content: center;
  }

  .nav-menu, .nav-phone-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

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

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

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

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

  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-actions {
    width: 100%;
    justify-content: center;
    flex-direction: column;
  }

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

  .floating-card-rating {
    top: 10px;
    left: 10px;
  }

  .floating-card-badge {
    bottom: 10px;
    right: 10px;
  }

  .about-floating-exp {
    position: static;
    margin-top: 1rem;
  }
}

/* 430px and down (Small Mobiles) */
@media (max-width: 430px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

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

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

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

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

  .trust-banner {
    padding: 2rem 1.25rem;
  }

  .cta-banner {
    padding: 2.25rem 1.25rem;
  }

  .contact-card-box {
    padding: 1.5rem 1.25rem;
  }

  .floating-actions-container {
    bottom: 15px;
    right: 15px;
  }

  .back-to-top-btn {
    bottom: 15px;
    left: 15px;
  }
}
