/* 305 Lock & Key — style.css */

:root {
  --primary: #263238;
  --accent: #00c853;
  --text: #333333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-main: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition: 0.3s ease;
}

/* ===== RESET / NORMALIZE ===== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--light-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  color: var(--primary);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== CONTAINER ===== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SITE HEADER ===== */

.header-topbar {
  background: linear-gradient(90deg, #1a2328 0%, var(--primary) 50%, #1a2328 100%);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 36px;
  display: flex;
  align-items: center;
  transition: height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  overflow: hidden;
}

.header-topbar.scrolled {
  height: 0;
  opacity: 0;
  transform: translateY(-100%);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 200, 83, 0.15);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 20px;
  padding: 3px 12px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.topbar-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: topbarPulse 2s ease-in-out infinite;
}

@keyframes topbarPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  height: 72px;
  box-shadow: none;
  transition: top 0.4s ease, background-color 0.5s ease, box-shadow 0.5s ease, height 0.4s ease, backdrop-filter 0.5s ease;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(38, 50, 56, 0.6) 0%, rgba(38, 50, 56, 0.1) 100%);
  z-index: -1;
  transition: opacity 0.5s ease;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.4), rgba(105, 240, 174, 0.6), rgba(0, 200, 83, 0.4), transparent);
  opacity: 0.5;
  transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
}

.site-header.scrolled {
  top: 0;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  height: 68px;
}

.site-header.scrolled::before {
  opacity: 0;
}

.site-header.scrolled::after {
  left: 0;
  right: 0;
  height: 3px;
  opacity: 1;
  background: linear-gradient(90deg, var(--accent), #69f0ae, #b9f6ca, #69f0ae, var(--accent));
  background-size: 200% 100%;
  animation: headerAccentFlow 3s linear infinite;
}

@keyframes headerAccentFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  gap: 0;
  transition: height 0.4s ease;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: none;
  padding-left: 0;
  flex-shrink: 0;
  position: relative;
}

.site-logo::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 32px;
  background: linear-gradient(180deg, var(--accent), #69f0ae);
  border-radius: 3px;
  transition: height 0.3s ease;
}

.site-logo:hover::before {
  height: 40px;
}

.site-logo img {
  height: 42px;
  width: auto;
  background-color: var(--white);
  border-radius: 8px;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-logo:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.site-logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.4s ease;
  letter-spacing: -0.3px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 4px 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled .nav-list {
  background: rgba(38, 50, 56, 0.06);
  border-color: rgba(38, 50, 56, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 24px;
  border-radius: 30px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: scale(1.03);
}

.nav-link.active {
  background: linear-gradient(135deg, var(--accent), #00e676);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 200, 83, 0.35);
}

.nav-link.active::after {
  display: none;
}

.site-header.scrolled .nav-link {
  color: #546e7a;
}

.site-header.scrolled .nav-link:hover {
  background-color: rgba(38, 50, 56, 0.08);
  color: var(--primary);
}

.site-header.scrolled .nav-link.active {
  background: linear-gradient(135deg, var(--accent), #00e676);
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--accent), #00e676);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 200, 83, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0, 200, 83, 0.5);
  color: var(--white);
}

.nav-cta:hover::before {
  left: 100%;
}

.site-header.scrolled .nav-cta {
  border-color: transparent;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.menu-toggle:active {
  transform: scale(0.95);
}

.site-header.scrolled .menu-toggle {
  background: rgba(38, 50, 56, 0.06);
  border-color: rgba(38, 50, 56, 0.12);
}

.site-header.scrolled .menu-toggle:hover {
  background-color: rgba(38, 50, 56, 0.12);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, width 0.3s ease, background-color 0.4s ease;
}

.menu-toggle span:nth-child(1) {
  width: 22px;
}

.menu-toggle span:nth-child(2) {
  width: 16px;
}

.menu-toggle span:nth-child(3) {
  width: 20px;
}

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

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

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

.site-header.scrolled .menu-toggle span {
  background-color: var(--primary);
}

.nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

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

.mobile-nav-cta {
  display: none;
  margin-top: 24px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--accent), #00e676);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 200, 83, 0.5);
  color: var(--white);
}

.mobile-nav-cta svg {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.mobile-nav-hours {
  display: none;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

/* ===== HERO ===== */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 108px;
  overflow: visible;
  padding-bottom: 60px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(38, 50, 56, 0.88) 0%, rgba(38, 50, 56, 0.6) 100%);
  z-index: 1;
}

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

.hero-content {
  max-width: 600px;
  text-align: left;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35);
}

.hero-cta:hover {
  background-color: #00b848;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.45);
  color: var(--white);
}

/* ===== TRUST BADGES (floating card) ===== */

.trust-badges {
  position: relative;
  z-index: 3;
  margin-top: -40px;
  margin-bottom: 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  background-color: var(--light-bg);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  border: 1px solid #e8eaed;
}

/* ===== SECTION COMMON ===== */

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-desc {
  font-size: 1.05rem;
  color: #607d8b;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* ===== SERVICES ===== */

.services {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

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

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 200, 83, 0.05));
  color: var(--accent);
  margin-bottom: 20px;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-text {
  font-size: 0.93rem;
  color: #607d8b;
  line-height: 1.6;
}

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

.about {
  padding: 80px 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

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

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

.about-text {
  text-align: left;
}

.about-text .section-title {
  text-align: left;
}

.about-text .section-desc {
  text-align: left;
  margin-left: 0;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */

.testimonials {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #ffc107;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

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

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

.service-areas {
  padding: 80px 0;
  background-color: var(--white);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-item {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 20px;
  background-color: var(--light-bg);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid #e8eaed;
  transition: background-color var(--transition), border-color var(--transition);
}

.area-item:hover {
  background-color: rgba(0, 200, 83, 0.08);
  border-color: var(--accent);
}

/* ===== CTA BANNER ===== */

.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #37474f 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.15), transparent 70%);
  border-radius: 50%;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.cta-banner .section-desc {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background-color: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: var(--radius-lg);
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.4);
  position: relative;
}

.cta-btn:hover {
  background-color: #00b848;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 200, 83, 0.55);
  color: var(--white);
}

/* ===== SITE FOOTER ===== */

.site-footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-col {
  text-align: left;
}

.footer-col .site-logo {
  margin-bottom: 16px;
  border-left-color: var(--accent);
}

.footer-col .site-logo-text {
  color: var(--white);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-col a.nav-cta {
  display: inline-flex;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== PAGE HERO (Sub-pages) ===== */

.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 108px;
  text-align: center;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(38, 50, 56, 0.9) 0%, rgba(38, 50, 56, 0.7) 100%);
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
}

.page-hero .hero-title {
  font-size: 2.4rem;
}

.page-hero .hero-subtitle {
  font-size: 1.05rem;
}

/* ===== SERVICE DETAIL ===== */

.service-detail {
  padding: 80px 0;
}

.service-detail:nth-child(odd) {
  background-color: var(--white);
}

.service-detail:nth-child(even) {
  background-color: var(--light-bg);
}

.service-detail > .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

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

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.service-detail-text {
  text-align: left;
}

.service-detail-text .section-title {
  text-align: left;
}

.service-detail-text .section-desc {
  text-align: left;
  margin-left: 0;
}

.service-detail-text p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.service-detail-text ul {
  margin-bottom: 14px;
}

.service-detail-text ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.service-detail-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
}

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

.contact-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

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

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

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8eaed;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background-color: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.15);
}

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

.form-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background-color: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(0, 200, 83, 0.3);
}

.form-btn:hover {
  background-color: #00b848;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

.form-success {
  display: none;
  background-color: rgba(0, 200, 83, 0.1);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 16px;
}

.form-success.show {
  display: block;
}

.contact-info {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 0.95rem;
}

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

.contact-info a:hover {
  text-decoration: underline;
}

/* ===== FAQ PAGE ===== */

.faq-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: background-color var(--transition);
}

.faq-question:hover {
  background-color: var(--light-bg);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p,
.faq-answer div {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: #607d8b;
  line-height: 1.7;
}

/* ===== ABOUT PAGE: TEAM ===== */

.team-section {
  padding: 80px 0;
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.team-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

.team-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 18px;
  padding: 0 16px;
}

.team-card-role {
  font-size: 0.88rem;
  color: #607d8b;
  padding: 6px 16px 20px;
}

/* ===== ABOUT PAGE: VALUES ===== */

.values-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.12), rgba(0, 200, 83, 0.04));
  color: var(--accent);
  margin-bottom: 18px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.value-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.9rem;
  color: #607d8b;
  line-height: 1.65;
}

/* ===== ABOUT PAGE: TIMELINE ===== */

.timeline-section {
  padding: 80px 0;
  background-color: var(--white);
}

.timeline-item {
  position: relative;
  padding-left: 32px;
  padding-bottom: 36px;
  border-left: 2px solid #e0e0e0;
  margin-left: 20px;
}

.timeline-item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  background-color: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.2);
}

.timeline-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.93rem;
  color: #607d8b;
  line-height: 1.65;
}

/* ===== GALLERY PAGE ===== */

.gallery-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.gallery-filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  background-color: var(--white);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.88rem;
  border: 2px solid #e8eaed;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(38, 50, 56, 0.85));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
}

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

.areas-detail-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

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

.area-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--accent);
}

.area-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.area-card-text {
  font-size: 0.9rem;
  color: #607d8b;
  line-height: 1.65;
  margin-bottom: 16px;
}

.area-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}

.area-card-link:hover {
  gap: 10px;
}

/* ===== RESPONSIVE: TABLET (min-width: 576px) ===== */

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

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

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

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

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

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

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

/* ===== RESPONSIVE: MEDIUM (min-width: 768px) ===== */

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

  .hero-title {
    font-size: 3.2rem;
  }

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

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

  .service-detail > .container {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail:nth-child(even) > .container .service-detail-img {
    order: 2;
  }

  .service-detail:nth-child(even) > .container .service-detail-text {
    order: 1;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 2.25rem;
  }

  .page-hero .hero-title {
    font-size: 2.8rem;
  }
}

/* ===== RESPONSIVE: DESKTOP (min-width: 992px) ===== */

@media (min-width: 992px) {
  .menu-toggle {
    display: none !important;
  }

  .site-nav {
    display: flex !important;
  }

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

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

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

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title {
    font-size: 3.4rem;
  }

  .cta-title {
    font-size: 2.4rem;
  }
}

/* ===== RESPONSIVE: MOBILE (max-width: 991px) ===== */

@media (max-width: 991px) {
  .header-topbar {
    height: 32px;
  }

  .topbar-right {
    display: none;
  }

  .site-header {
    top: 32px;
  }

  .site-header.scrolled {
    top: 0;
  }

  .hero {
    margin-top: 104px;
  }

  .page-hero {
    margin-top: 104px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -320px;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: linear-gradient(180deg, var(--primary) 0%, #1a252b 100%);
    z-index: 999;
    padding: 90px 24px 30px;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.35s ease;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
    visibility: hidden;
    display: block !important;
  }

  .site-nav.active {
    right: 0;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-link {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 16px 20px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid transparent;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, padding-left 0.3s ease;
  }

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

  .nav-link.active {
    background: linear-gradient(90deg, rgba(0, 200, 83, 0.15), transparent);
    box-shadow: none;
    border-left-color: var(--accent);
    color: var(--white);
    padding-left: 24px;
  }

  .nav-link:hover {
    color: var(--white);
    border-left-color: var(--accent);
    transform: none;
    background-color: rgba(255, 255, 255, 0.06);
    padding-left: 24px;
  }

  .site-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
  }

  .site-header.scrolled .nav-link:hover,
  .site-header.scrolled .nav-link.active {
    color: var(--white);
  }

  .nav-cta {
    display: none;
  }

  .header-inner .nav-cta {
    display: none;
  }

  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-hours {
    display: block;
  }
}

@media (max-width: 575px) {
  .trust-badges {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px 24px;
    gap: 10px;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .section-title {
    font-size: 1.65rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .page-hero {
    min-height: 35vh;
  }

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

/* ===== ANIMATION ===== */

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ===== UTILITY ===== */

.text-accent {
  color: var(--accent);
}

.text-primary {
  color: var(--primary);
}

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

.mb-0 {
  margin-bottom: 0;
}

/* ===== SCROLL REVEAL PREP ===== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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