/* ============================================
   KILLIAN'S AIR CONDITIONING
   Coastal Professional Theme
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --green-primary: #096A2B;
  --green-dark: #075520;
  --green-darker: #043915;
  --green-light: #0d8537;
  --green-pale: #e8f5ee;
  --gold: #E8B931;
  --gold-dark: #c99e1f;
  --gold-light: #f5d566;
  --sand: #faf6ed;
  --sky: #e3eff8;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e5ea;
  --gray-300: #c8cdd5;
  --gray-400: #9ba3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --text-primary: #1a2a1a;
  --text-secondary: #3d4f3d;
  --text-light: #5a6b5a;
  --red-emergency: #dc2626;
  --red-dark: #b91c1c;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);
  --shadow-green: 0 4px 20px rgba(9,106,43,0.25);
  --shadow-gold: 0 4px 20px rgba(232,185,49,0.3);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1200px;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 400;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility Classes --- */
.section-padding { padding: 80px 0; }
.section-padding-lg { padding: 100px 0; }

.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-green { background: var(--green-primary); color: var(--white); }
.bg-green-dark { background: var(--green-dark); color: var(--white); }
.bg-sand { background: var(--sand); }
.bg-green-pale { background: var(--green-pale); }

.text-center { text-align: center; }
.text-green { color: var(--green-primary); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 16px;
}
.section-header .section-label::before,
.section-header .section-label::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

.bg-green .section-header .section-label { color: var(--gold); }
.bg-green .section-header h2 { color: var(--white); }
.bg-green .section-header p { color: rgba(255,255,255,0.8); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-darker);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--green-darker);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
}
.btn-outline:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-primary);
  transform: translateY(-2px);
}

.btn-emergency {
  background: var(--red-emergency);
  color: var(--white);
  border-color: var(--red-emergency);
  animation: pulse-emergency 2s infinite;
}
.btn-emergency:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

@keyframes pulse-emergency {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* --- Top Bar --- */
.top-bar {
  background: var(--green-darker);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

/* --- Header / Navigation --- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}
.logo:hover .logo-img { opacity: 0.85; }
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--green-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.logo:hover .logo-icon { background: var(--green-dark); }
.logo-icon svg { width: 28px; height: 28px; fill: var(--white); }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
}
.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  position: relative;
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  color: var(--green-primary);
  background: var(--green-pale);
}
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--green-primary);
  border-radius: 1px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-primary);
  white-space: nowrap;
}
.header-phone svg { width: 20px; height: 20px; fill: var(--green-primary); }

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-primary) 50%, #0a7a32 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(232,185,49,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}
.footer-about .logo-img { height: 44px; }
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C360,100 720,0 1080,60 C1260,80 1380,70 1440,60 L1440,120 L0,120Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: cover;
  z-index: 2;
}
/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--white);
}
.hero-shape:nth-child(1) { width: 400px; height: 400px; top: -100px; right: -100px; }
.hero-shape:nth-child(2) { width: 250px; height: 250px; bottom: 50px; left: -80px; }
.hero-shape:nth-child(3) { width: 150px; height: 150px; top: 40%; right: 20%; }

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 140px;
}

.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--gold-light);
}
.hero-badge svg { width: 16px; height: 16px; fill: var(--gold); }
.hero-stars { display: flex; gap: 2px; }
.hero-stars svg { width: 14px; height: 14px; fill: var(--gold); }

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.hero-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-trust-icon svg { width: 20px; height: 20px; fill: var(--gold); }

/* Hero Quote Card */
.hero-quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-quote-card::before {
  content: '';
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  background: linear-gradient(135deg, var(--gold), var(--green-primary));
  border-radius: calc(var(--radius-lg) + 3px);
  z-index: -1;
}
.hero-quote-card h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.hero-quote-card .form-subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(9,106,43,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  font-size: 0.82rem;
  color: var(--text-light);
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green-primary);
  flex-shrink: 0;
}
.form-consent a { color: var(--green-primary); text-decoration: underline; }
.form-submit { width: 100%; justify-content: center; }

/* --- Value Props Strip --- */
.value-strip {
  position: relative;
  z-index: 5;
  margin-top: -50px;
  padding-bottom: 30px;
}
.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-card-icon svg { width: 28px; height: 28px; fill: var(--green-primary); }
.value-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}
.value-card .value-highlight {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-primary);
  display: block;
  margin-bottom: 4px;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-primary);
}
.service-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232,185,49,0.1) 0%, transparent 40%);
}
.service-card-image svg { width: 56px; height: 56px; fill: var(--white); opacity: 0.9; position: relative; z-index: 1; }
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card-body p { font-size: 0.9rem; color: var(--text-light); flex: 1; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-primary);
  margin-top: 12px;
}
.service-card-link svg { width: 16px; height: 16px; fill: var(--green-primary); transition: var(--transition); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  text-align: center;
  padding: 32px 24px;
}
.why-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-card-icon svg { width: 32px; height: 32px; fill: var(--gold); }
.why-card h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* --- Stats Section --- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--gray-200);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--green-pale);
  position: absolute;
  top: 8px;
  left: 24px;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green-primary);
}
.testimonial-author-info .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.testimonial-author-info .location {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* --- Service Areas --- */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.area-tag:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: var(--green-pale);
}
.area-tag svg { width: 14px; height: 14px; fill: var(--green-primary); }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-primary) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,185,49,0.12) 0%, transparent 60%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-content h2 { color: var(--white); margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin: 0; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* --- Footer --- */
.footer {
  background: var(--green-darker);
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-about .logo { margin-bottom: 16px; }
.footer-about .logo-name { color: var(--white); }
.footer-about .logo-tagline { color: rgba(255,255,255,0.6); }
.footer-about .logo-icon { background: var(--green-primary); }
.footer-about p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.8); }
.footer-contact-item a:hover { color: var(--gold); }

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 20px; }

/* --- Floating Mobile CTA --- */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: var(--green-primary);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
  text-decoration: none;
  transition: var(--transition);
  animation: float-bounce 3s ease-in-out infinite;
}
.floating-cta:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: scale(1.1);
}
.floating-cta svg { width: 28px; height: 28px; fill: var(--white); }

@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- Page Heroes (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-primary) 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,30 C360,70 720,0 1080,40 C1260,55 1380,50 1440,40 L1440,80 L0,80Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: cover;
}
.page-hero .hero-shapes { opacity: 0.5; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Content Sections (inner pages) --- */
.content-section { padding: 60px 0; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 350px;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(232,185,49,0.1) 0%, transparent 40%);
}
.content-image svg { width: 80px; height: 80px; fill: rgba(255,255,255,0.3); position: relative; z-index: 1; }
.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--radius-lg);
}

.content-text h2 { margin-bottom: 16px; }
.content-text h3 { margin-bottom: 12px; }
.content-text p { color: var(--text-secondary); }

.check-list { margin: 20px 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.check-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--green-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-list li svg { fill: var(--red-emergency); }

/* --- Feature Cards --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card-icon svg { width: 24px; height: 24px; fill: var(--green-primary); }
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* Emergency card variant */
.feature-card.emergency-card {
  border-left: 4px solid var(--red-emergency);
}
.feature-card.emergency-card .feature-card-icon {
  background: #fef2f2;
}
.feature-card.emergency-card .feature-card-icon svg { fill: var(--red-emergency); }

/* --- Pricing/Offer Card --- */
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.offer-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--green-primary);
  margin: 16px 0 8px;
}
.offer-card .fine-print { font-size: 0.82rem; color: var(--text-light); }

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--green-primary); }
.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--text-light);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); fill: var(--green-primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Brand Logos --- */
.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.brand-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-400);
  opacity: 0.6;
  transition: var(--transition);
}
.brand-logo:hover { opacity: 1; color: var(--green-primary); }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--green-primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 100%, rgba(232,185,49,0.15) 0%, transparent 50%);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; position: relative; }
.contact-info-card > p { color: rgba(255,255,255,0.8); margin-bottom: 28px; position: relative; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.contact-detail-text h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0;
}
.contact-detail-text a { color: rgba(255,255,255,0.9); }
.contact-detail-text a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { margin-bottom: 4px; }
.contact-form-card .form-subtitle { color: var(--text-light); margin-bottom: 24px; font-size: 0.9rem; }

/* --- About Page --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.value-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-item-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-item-icon svg { width: 28px; height: 28px; fill: var(--green-primary); }
.value-item h4 { margin-bottom: 8px; }
.value-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* --- Savings Page Specific --- */
.tip-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  margin-bottom: 16px;
  transition: var(--transition);
}
.tip-card:hover { box-shadow: var(--shadow-md); }
.tip-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.tip-content h4 { margin-bottom: 4px; }
.tip-content p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* --- Cool Club Card --- */
.cool-club-card {
  background: linear-gradient(135deg, var(--green-darker), var(--green-primary));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cool-club-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(232,185,49,0.15) 0%, transparent 50%);
}
.cool-club-card > * { position: relative; z-index: 1; }
.cool-club-card h3 { color: var(--white); margin-bottom: 8px; font-size: 1.6rem; }
.cool-club-card > p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.cool-club-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.cool-club-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.cool-club-benefit svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* --- Wave Divider --- */
.wave-divider {
  height: 80px;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { width: 100%; height: 100%; }
.wave-divider.flip { transform: scaleY(-1); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 0 120px; }
  .hero-quote-card { max-width: 500px; }
  .hero::after { height: 80px; }
  .value-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cool-club-benefits { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  :root { --header-height: 68px; }

  .top-bar { display: none; }

  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }
  .nav.open a { padding: 12px 16px; width: 100%; }

  .mobile-toggle { display: flex; }

  .header-phone .phone-text { display: none; }

  .hero-inner { padding: 40px 0 100px; }
  .hero h1 { font-size: 2rem; }
  .hero-trust { gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-quote-card { padding: 28px; }

  .value-strip-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .feature-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

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

  .section-padding { padding: 50px 0; }
  .section-padding-lg { padding: 60px 0; }

  .floating-cta { display: flex; }

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

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .value-strip-grid { grid-template-columns: 1fr; }
  .brand-logos { gap: 24px; }
  .hero-badge { font-size: 0.75rem; }
}
