:root {
  --chc-red: #E53935;
  --chc-red-light: #EF5350;
  --chc-red-dark: #C62828;
  --chc-blue: #42A5F5;
  --chc-blue-light: #64B5F6;
  --chc-blue-dark: #1E88E5;
  --chc-gray: #9E9E9E;
  --chc-gray-light: #BDBDBD;
  --chc-gray-dark: #757575;

  --header-bg: #1B2A3D;
  --header-bg-deep: #0F1A2A;
  --footer-bg: #1B2A3D;

  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F5F5;
  --bg-tertiary: #EEEEEE;
  --text-heading: #1A1A1A;
  --text-body: #4A4A4A;
  --text-muted: #757575;
  --card-bg: #FFFFFF;
  --card-border: #E0E0E0;
  --card-shadow: rgba(0, 0, 0, 0.08);
  --overlay-bg: rgba(0, 0, 0, 0.7);
  --input-bg: #FFFFFF;
  --input-border: #CCCCCC;
  --divider: #E0E0E0;
  --hero-overlay: rgba(15, 26, 42, 0.85);
}


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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-primary);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.3s ease;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.25rem); }

p { margin-bottom: 1rem; }

a {
  color: var(--chc-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--chc-blue-light); }

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

ul { list-style: none; }

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--header-bg-deep);
  color: #CCCCCC;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  display: none;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: #CCCCCC;
  transition: color 0.2s;
}

.top-bar a:hover { color: #FFFFFF; }

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

.top-bar-left i { margin-right: 0.4rem; }

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

.top-bar-right a {
  font-size: 1rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.top-bar-right a:hover {
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
}

/* ===== HEADER / NAV ===== */
.header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 1002;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  gap: 0.75rem;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: var(--header-bg);
  padding: 5rem 2rem 2rem;
  transition: right 0.35s ease;
  z-index: 1001;
  overflow-y: auto;
}

.nav-menu.active { right: 0; }

.nav-menu a {
  color: #E0E0E0;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.85rem 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--chc-blue-light); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

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

.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-dropdown-toggle i {
  font-size: 0.75rem;
  transition: transform 0.3s;
  margin-left: 0.5rem;
}

.nav-dropdown-toggle.open i { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  padding-left: 1rem;
}

.nav-dropdown-menu.open { display: block; }

.nav-dropdown-menu a {
  font-size: 0.95rem;
  padding: 0.6rem 0;
  color: #BDBDBD;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.header-cta {
  display: none;
}

.header-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.header-phone i {
  color: var(--chc-blue-light);
  font-size: 1.1rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1B2A3D 0%, #0F1A2A 100%);
  color: #FFFFFF;
  padding: 4rem 0 3rem;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23p)" width="100" height="100"/></svg>');
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(66, 165, 245, 0.15);
  border: 1px solid rgba(66, 165, 245, 0.3);
  color: var(--chc-blue-light);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--chc-red) 0%, var(--chc-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #BDBDBD;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-phone {
  font-size: 1.2rem;
  color: #BDBDBD;
  margin-top: 1.5rem;
}

.hero-phone a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.4rem;
}

.hero-phone a:hover { color: var(--chc-blue-light); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #1B2A3D 0%, #0F1A2A 100%);
  color: #FFFFFF;
  padding: 3rem 0 2.5rem;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23p)" width="100" height="100"/></svg>');
  pointer-events: none;
}

.page-hero h1 {
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: #BDBDBD;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  min-height: 44px;
  min-width: 44px;
  text-align: center;
}

.btn-primary {
  background: var(--chc-red);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.btn-primary:hover {
  background: var(--chc-red-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--chc-blue);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(66, 165, 245, 0.3);
}

.btn-blue:hover {
  background: var(--chc-blue-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 165, 245, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--chc-blue);
  border: 2px solid var(--chc-blue);
}

.btn-outline:hover {
  background: var(--chc-blue);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
  transition: background-color 0.3s ease;
}

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

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

.section-header h2 { margin-bottom: 0.75rem; }

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  color: var(--chc-blue);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--card-shadow);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card-icon-red {
  background: rgba(229, 57, 53, 0.1);
  color: var(--chc-red);
}

.card-icon-blue {
  background: rgba(66, 165, 245, 0.1);
  color: var(--chc-blue);
}

.card-icon-gray {
  background: rgba(158, 158, 158, 0.1);
  color: var(--chc-gray-dark);
}


.card h3 { margin-bottom: 0.75rem; }

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.card-link i { transition: transform 0.2s; }
.card-link:hover i { transform: translateX(4px); }

/* ===== FEATURES / WHY CHOOSE US ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  justify-items: center;
}

.features-grid-3 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.feature {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--chc-blue), var(--chc-red));
  color: #FFFFFF;
}

.feature h4 { margin-bottom: 0.5rem; }

.feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}

.gallery-item:hover::after {
  background: rgba(0,0,0,0.2);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

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

.gallery-overlay i {
  color: #FFFFFF;
  font-size: 2rem;
  background: rgba(0,0,0,0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.2s;
  min-width: 44px;
  min-height: 44px;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.2s;
  min-width: 44px;
  min-height: 44px;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--chc-red) 0%, var(--chc-red-dark) 100%);
  color: #FFFFFF;
  padding: 3.5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-banner .btn-secondary {
  border-color: rgba(255,255,255,0.5);
}

.cta-banner .btn-secondary:hover {
  background: #FFFFFF;
  color: var(--chc-red);
  border-color: #FFFFFF;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* ===== REVIEWS / TRUST ===== */
.reviews-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.reviews-stars {
  color: #FFC107;
  font-size: 1.5rem;
  display: flex;
  gap: 0.25rem;
}

.reviews-count {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-heading);
}

.reviews-count span {
  color: var(--chc-blue);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.trust-badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--chc-blue);
  border: 2px solid var(--card-border);
}

.trust-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ===== PARTNER / BRAND SECTION ===== */
.partner-section {
  text-align: center;
  padding: 2rem 0;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: all 0.3s;
}

.partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--card-shadow);
}

.partner-logo img {
  height: 50px;
  width: auto;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--input-bg);
  border: 2px solid var(--input-border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-heading);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--chc-blue);
  box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.15);
}

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

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
  font-weight: 500;
}

.form-status.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  color: #2E7D32;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-status.error {
  display: block;
  background: rgba(229, 57, 53, 0.1);
  color: var(--chc-red);
  border: 1px solid rgba(229, 57, 53, 0.3);
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

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

.contact-info-item i {
  color: var(--chc-blue);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-info-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info-item a {
  color: var(--text-body);
  font-weight: 500;
}

.contact-info-item a:hover { color: var(--chc-blue); }

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--divider);
}

.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all 0.2s;
}

.contact-social a:hover {
  background: var(--chc-blue);
  color: #FFFFFF;
}

.map-container {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
}

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

.about-text blockquote {
  border-left: 4px solid var(--chc-blue);
  padding-left: 1.5rem;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-heading);
  margin: 1.5rem 0;
}

.about-text blockquote cite {
  display: block;
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

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

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  background: rgba(66, 165, 245, 0.1);
  color: var(--chc-blue);
}

/* ===== SERVICES PAGE ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--divider);
}

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

.service-detail-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  margin-top: 1rem;
}

.service-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-body);
}

.service-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--chc-blue);
  font-size: 0.85rem;
}

/* ===== FINANCING PAGE ===== */
.financing-hero-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.financing-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.financing-benefit i {
  font-size: 1.5rem;
  color: var(--chc-blue);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ===== TESTIMONIALS PAGE ===== */
.review-platforms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-platform-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s;
}

.review-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--card-shadow);
}

.review-platform-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.review-platform-card h3 { margin-bottom: 0.5rem; }

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px var(--card-shadow);
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--chc-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-meta h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.testimonial-stars {
  color: #FFC107;
  font-size: 0.85rem;
  display: flex;
  gap: 0.15rem;
}

.testimonial-text {
  line-height: 1.75;
  color: var(--text-body);
}

.testimonial-text p:last-child {
  margin-bottom: 0;
}

/* ===== TAX CREDITS PAGE ===== */
.tax-credits-intro {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.tax-credits-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.tax-credits-table th,
.tax-credits-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
}

.tax-credits-table th {
  background: var(--header-bg);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.tax-credits-table tr:last-child td {
  border-bottom: none;
}

.tax-credits-table tr:nth-child(even) td {
  background: var(--bg-secondary);
}

.tax-credits-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.tax-credits-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.tax-credits-step-num {
  counter-increment: step;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--chc-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.tax-credits-step-content h4 {
  margin-bottom: 0.25rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  color: #BDBDBD;
  padding: 3.5rem 0 0;
  transition: background-color 0.3s ease;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--chc-blue);
  border-radius: 3px;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #999999;
}

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: #999999;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 0.3rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.footer-contact-item i {
  color: var(--chc-blue);
  margin-top: 0.15rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #999999;
}

.footer-contact-item a:hover { color: #FFFFFF; }

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 1rem;
  transition: all 0.2s;
  min-width: 44px;
  min-height: 44px;
}

.footer-social a:hover {
  background: var(--chc-blue);
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #666666;
  margin-bottom: 0;
}

.footer-armstrong {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  color: #999999;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.footer-armstrong:hover {
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-red { color: var(--chc-red); }
.text-blue { color: var(--chc-blue); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ===== RESPONSIVE: TABLET ===== */
@media (min-width: 768px) {
  .top-bar { display: block; }

  .container { padding: 0 2rem; }

  .logo img { height: 55px; }

  .header-phone { display: none; }

  .header-cta { display: inline-flex; }

  .hero { padding: 5rem 0 4rem; }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

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

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

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

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

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

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

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

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

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

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

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

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .section { padding: 5rem 0; }
}

/* ===== RESPONSIVE: DESKTOP ===== */
@media (min-width: 1024px) {
  .hamburger { display: none; }

  .nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    gap: 0;
    overflow: visible;
    flex: 1;
    justify-content: center;
  }

  .nav-menu a {
    font-size: 0.85rem;
    padding: 0.5rem 0.6rem;
    border-bottom: none;
    border-radius: 6px;
    white-space: nowrap;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background: rgba(255,255,255,0.08);
  }

  .nav-overlay { display: none !important; }

  .nav-dropdown { position: relative; }

  .nav-dropdown-toggle i { display: inline-block; }

  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--header-bg);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    z-index: 100;
  }

  .nav-dropdown:hover .nav-dropdown-menu { display: block; }

  .nav-dropdown-menu a {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 0;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.06);
  }

  .header-phone { display: none; }

  .header-cta {
    display: inline-flex;
  }


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

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

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

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

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

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

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

  .service-detail:nth-child(even) .service-detail-content { order: -1; }
}

@media (min-width: 1200px) {
  .nav-menu a {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }

  .header-phone {
    display: flex;
    font-size: 0.9rem;
    gap: 0.4rem;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    white-space: nowrap;
  }
}

@media (min-width: 1280px) {
  .container { padding: 0 2rem; }
  .gallery-grid-full { grid-template-columns: repeat(4, 1fr); }
}
