/* HomeFix Plumbers — Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #1a365d;
  --navy-mid: #2c5282;
  --navy-light: #3182ce;
  --orange: #ed8936;
  --orange-dark: #dd6b20;
  --orange-light: #fbd38d;
  --orange-glow: rgba(237,137,54,.25);
  --green: #38a169;
  --red: #e53e3e;
  --white: #ffffff;
  --gray-50: #f7fafc;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e0;
  --gray-600: #718096;
  --gray-700: #4a5568;
  --gray-800: #2d3748;
  --gray-900: #1a202c;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,.1);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.2);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --glass-bg: rgba(255,255,255,.12);
  --glass-border: rgba(255,255,255,.2);
  --glass-blur: blur(16px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-mid); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange); }
ul { list-style: none; }

/* Utility */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-blue { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.section-blue::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(49,130,206,.3) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(237,137,54,.15) 0%, transparent 50%);
  pointer-events: none;
}
.section-gray { background: var(--gray-50); }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }

/* Typography */
h1, h2, h3, h4 { font-family: 'DM Sans', sans-serif; color: var(--navy); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.5rem); margin-bottom: 20px; letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); margin-bottom: 12px; }
.section-blue h2, .section-blue h3, .section-blue h4 { color: var(--white); }

/* Section label */
.section-label {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(237,137,54,.1), rgba(237,137,54,.05));
  padding: 6px 16px; border-radius: 50px; border: 1px solid rgba(237,137,54,.2);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius); font-weight: 600; font-size: 1rem;
  cursor: pointer; border: none; text-align: center; transition: all .3s cubic-bezier(.4,0,.2,1);
  text-decoration: none; font-family: inherit; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,.3) 0%, transparent 60%);
  opacity: 0; transition: opacity .5s;
}
.btn:active::after { opacity: 1; transition: opacity 0s; }
.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, #f6ad55 100%);
  color: var(--white); box-shadow: 0 4px 15px var(--orange-glow);
}
.btn-orange:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px var(--orange-glow);
}
.btn-white { background: var(--white); color: var(--navy); box-shadow: var(--shadow); }
.btn-white:hover { background: var(--gray-50); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 18px 44px; font-size: 1.1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-phone {
  background: linear-gradient(135deg, var(--orange), #f6ad55);
  color: var(--white); font-size: 1.2rem; padding: 16px 36px; border-radius: 50px;
  font-weight: 700; display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-phone:hover { transform: scale(1.03) translateY(-2px); color: var(--white); box-shadow: 0 8px 30px var(--orange-glow); }

/* Header */
.site-header {
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,.06); position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.top-bar {
  background: linear-gradient(90deg, var(--navy) 0%, #1e3a5f 100%);
  color: var(--white); font-size: .85rem; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.top-bar a { color: var(--orange-light); transition: color .2s; }
.top-bar a:hover { color: var(--white); }
.top-bar-right { display: flex; gap: 16px; align-items: center; }

.main-nav .container {
  display: flex; justify-content: space-between; align-items: center; padding-top: 0; padding-bottom: 0;
  min-height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; font-family: 'DM Sans', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--navy); }
.logo:hover { color: var(--navy); }
.logo-icon {
  width: 44px; height: 44px; background: linear-gradient(135deg, var(--orange), #f6ad55);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 900; font-size: 1.3rem;
  box-shadow: 0 3px 10px var(--orange-glow);
}
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius); font-weight: 500; font-size: .95rem;
  color: var(--gray-700); transition: all .25s;
}
.nav-links a:hover, .nav-links a.active { background: rgba(26,54,93,.06); color: var(--navy); }
.nav-cta { display: none; }

/* Mobile menu */
.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
  display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 85%; max-width: 400px;
  background: var(--white); z-index: 9999; padding: 80px 30px 30px;
  flex-direction: column; gap: 2px; overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,.15);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-menu a {
  display: block; padding: 14px 16px; font-size: 1.05rem; font-weight: 500;
  color: var(--gray-800); border-radius: var(--radius); transition: all .2s;
}
.mobile-menu a:hover { background: var(--gray-50); color: var(--orange); }
.mobile-menu .btn-phone { margin-top: 24px; justify-content: center; text-align: center; }
.mobile-close {
  position: absolute; top: 20px; right: 20px; background: var(--gray-100); border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--navy); padding: 8px 14px; border-radius: 50%;
  transition: all .2s; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
}
.mobile-close:hover { background: var(--gray-200); }
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 9998;
  backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s;
}
.mobile-overlay.open { display: block; opacity: 1; }

/* Sticky mobile CTA */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: linear-gradient(135deg, var(--orange), #f6ad55);
  padding: 14px 20px; text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.sticky-cta a {
  color: var(--white); font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* Floating phone button (mobile) */
.floating-phone {
  display: none; position: fixed; bottom: 80px; right: 16px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #f6ad55);
  color: var(--white); box-shadow: 0 4px 20px var(--orange-glow);
  align-items: center; justify-content: center; font-size: 1.5rem;
  animation: pulse-float 2s infinite;
}
@keyframes pulse-float {
  0%, 100% { box-shadow: 0 4px 20px var(--orange-glow); }
  50% { box-shadow: 0 4px 30px rgba(237,137,54,.5); }
}

/* Hero */
.hero {
  position: relative; color: var(--white); padding: 120px 0 100px;
  background-size: cover; background-position: center; background-attachment: fixed;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,54,93,.88) 0%, rgba(44,82,130,.85) 50%, rgba(26,54,93,.9) 100%);
  z-index: 1;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2; pointer-events: none;
}
.hero .container { position: relative; z-index: 3; max-width: 800px; }
.hero h1 { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,.2); }
.hero p { font-size: 1.2rem; opacity: .92; max-width: 600px; margin-bottom: 32px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-trust { margin-top: 36px; display: flex; gap: 20px; flex-wrap: wrap; font-size: .88rem; }
.hero-trust span {
  display: flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: rgba(255,255,255,.1); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,.15); border-radius: 50px;
}

/* Emergency hero variant */
.hero-emergency::before {
  background: linear-gradient(135deg, rgba(197,48,48,.9) 0%, rgba(229,62,62,.85) 40%, rgba(197,48,48,.92) 100%);
}

/* Page header */
.page-header {
  position: relative; color: var(--white); padding: 80px 0 60px;
  background-size: cover; background-position: center; background-attachment: fixed;
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,54,93,.92) 0%, rgba(44,82,130,.88) 100%);
  z-index: 1;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2; pointer-events: none;
}
.page-header .container { position: relative; z-index: 3; }
.page-header h1 { color: var(--white); margin-bottom: 12px; text-shadow: 0 2px 15px rgba(0,0,0,.2); }
.page-header p { opacity: .9; font-size: 1.15rem; max-width: 620px; }

/* Trust bar */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 24px 0;
  position: relative; z-index: 5; margin-top: -60px;
}
.trust-bar .container {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 12px; font-weight: 600;
  color: var(--gray-700); font-size: .95rem;
  padding: 10px 20px; border-radius: var(--radius); transition: all .3s;
}
.trust-item:hover { background: var(--gray-50); transform: translateY(-2px); }
.trust-item svg { width: 28px; height: 28px; color: var(--orange); flex-shrink: 0; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow); transition: all .4s cubic-bezier(.4,0,.2,1);
  border: 1px solid var(--gray-200); position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), #f6ad55);
  transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--white); font-size: 1.6rem;
  transition: transform .3s;
}
.card:hover .card-icon { transform: scale(1.08) rotate(-3deg); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray-600); margin-bottom: 18px; line-height: 1.7; }
.card-link {
  font-weight: 600; color: var(--orange); display: inline-flex; align-items: center; gap: 4px;
  transition: gap .2s;
}
.card-link:hover { gap: 8px; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.testimonial {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow); position: relative; transition: all .3s;
  border: 1px solid var(--gray-200);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial::before {
  content: '\201C'; position: absolute; top: 12px; left: 28px;
  font-size: 5rem; line-height: 1; font-family: Georgia, serif;
  background: linear-gradient(135deg, var(--orange), #f6ad55);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonial p { margin-bottom: 24px; padding-top: 40px; color: var(--gray-700); font-style: italic; line-height: 1.8; }
.testimonial-author { font-weight: 700; color: var(--navy); }
.testimonial-location { font-size: .85rem; color: var(--gray-600); margin-top: 2px; }
.stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }

/* Areas grid */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.area-item {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 16px 20px; display: flex; align-items: center; gap: 10px;
  transition: all .3s;
}
.area-item:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--gray-800); font-size: .95rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-family: inherit; font-size: 1rem; transition: all .25s; background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--navy-mid); box-shadow: 0 0 0 4px rgba(49,130,206,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white); border-radius: var(--radius-lg); padding: 40px; height: fit-content;
  position: relative; overflow: hidden;
}
.contact-info-card::before {
  content: ''; position: absolute; top: -30%; right: -20%; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(237,137,54,.2), transparent 70%);
  pointer-events: none;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 28px; font-size: 1.4rem; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-detail svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-detail-label { font-size: .85rem; opacity: .7; margin-bottom: 4px; }
.contact-detail-value { font-weight: 600; font-size: 1.1rem; }
.contact-detail-value a { color: var(--white); }
.contact-detail-value a:hover { color: var(--orange-light); }

.map-placeholder {
  background: var(--gray-100); border-radius: var(--radius-lg); height: 300px;
  display: flex; align-items: center; justify-content: center; color: var(--gray-600);
  margin-top: 30px; border: 2px dashed var(--gray-300);
}

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.team-card { text-align: center; padding: 32px 20px; border-radius: var(--radius-lg); transition: all .3s; }
.team-card:hover { background: var(--white); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 2rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(26,54,93,.25);
  border: 3px solid var(--white);
}
.team-card h4 { margin-bottom: 4px; font-size: 1.1rem; }
.team-card p { color: var(--gray-600); font-size: .9rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item { padding: 20px; }
.stat-number {
  font-family: 'DM Sans', sans-serif; font-size: 3rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--orange), #f6ad55);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .95rem; color: rgba(255,255,255,.8); margin-top: 8px; letter-spacing: .02em; }
.section-blue .stat-label { color: rgba(255,255,255,.75); }

/* Accreditations */
.accreditations {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; align-items: center;
}
.accreditation-badge {
  text-align: center; padding: 28px 24px; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); min-width: 140px; transition: all .3s; border: 1px solid var(--gray-200);
}
.accreditation-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.accreditation-badge .badge-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
  font-size: 1.3rem; font-weight: 800; color: var(--white);
  box-shadow: 0 4px 12px rgba(26,54,93,.2);
}
.accreditation-badge p { font-weight: 600; font-size: .85rem; color: var(--gray-700); }

/* Footer */
.site-footer {
  background: var(--gray-900); color: var(--gray-300); padding: 70px 0 0;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), #f6ad55, var(--orange));
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-about .logo { color: var(--white); margin-bottom: 16px; }
.footer-about .logo .logo-icon { background: linear-gradient(135deg, var(--orange), #f6ad55); }
.footer-about p { font-size: .9rem; line-height: 1.8; }
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.footer-col a { display: block; padding: 5px 0; color: var(--gray-400); font-size: .9rem; transition: all .2s; }
.footer-col a:hover { color: var(--orange); transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .85rem;
}

/* Breadcrumbs */
.breadcrumbs { padding: 0 0 16px; font-size: .9rem; color: rgba(255,255,255,.7); }
.breadcrumbs a { color: rgba(255,255,255,.8); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { margin: 0 8px; }

/* CTA section */
.cta-section {
  position: relative; color: var(--white); padding: 80px 0; text-align: center;
  background-size: cover; background-position: center; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 50%, #c05621 100%);
  z-index: 1;
}
.cta-section::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.1), transparent 60%);
  z-index: 2; pointer-events: none;
}
.cta-section .container { position: relative; z-index: 3; }
.cta-section h2 { color: var(--white); margin-bottom: 12px; text-shadow: 0 2px 10px rgba(0,0,0,.1); }
.cta-section p { opacity: .92; margin-bottom: 28px; font-size: 1.15rem; }

/* Service detail */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.service-detail-list { list-style: none; }
.service-detail-list li {
  padding: 12px 0; border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; gap: 12px; transition: all .2s;
}
.service-detail-list li:hover { padding-left: 8px; }
.service-detail-list li::before {
  content: '✓'; color: var(--green); font-weight: 700; font-size: 1.1rem;
  width: 24px; height: 24px; background: rgba(56,161,105,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Process steps */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.process-step { text-align: center; padding: 20px; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #f6ad55);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.3rem; margin: 0 auto 18px;
  box-shadow: 0 4px 15px var(--orange-glow);
}

/* Fade-in animation */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* Glassmorphism card variant */
.glass-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg); padding: 36px; color: var(--white);
}

/* Image with overlay */
.img-overlay {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.img-overlay img { width: 100%; height: 100%; object-fit: cover; }
.img-overlay::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,54,93,.7), transparent 60%);
}

/* Responsive */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: block; }
  .service-detail { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero, .page-header { background-attachment: scroll; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { padding: 80px 0 70px; }
  .top-bar .container { justify-content: center; font-size: .8rem; }
  .top-bar-right { display: none; }
  .sticky-cta { display: block; }
  .floating-phone { display: flex; }
  body { padding-bottom: 70px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 2.2rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .accreditations { gap: 16px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; text-align: center; justify-content: center; }
  .cards { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
}
