/* ============================================================
   SHINY WINDOWS — Main Stylesheet
   Author: Shiny Windows Web Team
   Version: 1.0
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --blue: #2A8DBF;
  --blue-light: #38BDF8;
  --blue-dark: #1A6B96;
  --blue-xdark: #0F4C75;
  --navy: #0F172A;
  --white: #FFFFFF;
  --gray-light: #F5F7FA;
  --gray-mid: #E2E8F0;
  --gray-text: #64748B;
  --gray-dark: #334155;
  --green: #22C55E;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.16);
  --shadow-blue: 0 8px 30px rgba(42, 141, 191, 0.30);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  color: var(--gray-dark);
  line-height: 1.7;
}

/* === LAYOUT UTILITIES === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(42, 141, 191, 0.1);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 14px;
}

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

.text-blue { color: var(--blue); }
.text-center { text-align: center; }
.bg-light { background: var(--gray-light); }
.bg-navy { background: var(--navy); }
.bg-blue { background: var(--blue); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::after {
  left: 150%;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(42, 141, 191, 0.40);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  background: var(--gray-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

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

.btn-lg {
  padding: 17px 36px;
  font-size: 1.05rem;
}

/* === HEADER / NAV === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.10);
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(42, 141, 191, 0.35);
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-logo span.logo-shine {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-dark);
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: rgba(42, 141, 191, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.nav-phone:hover {
  color: var(--blue);
}

.nav-phone svg {
  color: var(--blue);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.hamburger:hover {
  background: var(--gray-light);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  z-index: 999;
  border-top: 1px solid var(--gray-mid);
  animation: slideDown 0.25s ease;
}

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

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

.mobile-nav a {
  display: block;
  padding: 13px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--blue);
  background: var(--gray-light);
}

.mobile-nav .btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0D2137 35%, #0a3755 65%, var(--blue-xdark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 65%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(42, 141, 191, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.3));
  pointer-events: none;
}

/* Floating window shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
}

.hero-shape.s1 {
  width: 180px;
  height: 240px;
  top: 15%;
  right: 8%;
  transform: rotate(6deg);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.hero-shape.s2 {
  width: 120px;
  height: 160px;
  top: 12%;
  right: 22%;
  transform: rotate(-3deg);
  background: rgba(42,141,191,0.12);
  border-color: rgba(42,141,191,0.25);
}

.hero-shape.s3 {
  width: 80px;
  height: 100px;
  bottom: 25%;
  right: 5%;
  transform: rotate(8deg);
  background: rgba(255,255,255,0.04);
}

.hero-shine {
  position: absolute;
  top: 20%;
  right: 16%;
  width: 6px;
  height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  box-shadow: 0 0 20px 8px rgba(56, 189, 248, 0.5);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 1.25rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero-content {
    padding: 80px 0 80px 0;
    margin: 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  color: var(--blue-light);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  align-self: center;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.trust-item svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* === SERVICES OVERVIEW === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card-img {
  display: block;
  width: calc(100% + 56px);
  margin: -32px -28px 24px -28px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(42,141,191,0.12), rgba(56,189,248,0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 20px;
  color: var(--gray-text);
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
}

.service-card .card-link:hover {
  gap: 10px;
  color: var(--blue-dark);
}

/* === WHY CHOOSE US === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.why-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-light);
  box-shadow: var(--shadow-lg);
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.why-window-frame {
  width: 200px;
  height: 240px;
  border: 8px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 8px;
  background: rgba(255,255,255,0.05);
}

.why-window-pane {
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.why-window-pane::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 15%;
  width: 30%;
  height: 60%;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), transparent);
  border-radius: 2px;
  transform: rotate(-10deg);
}

.why-badge-float {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.why-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green), #16a34a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-badge-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
}

.why-badge-text span {
  font-size: 0.78rem;
  color: var(--gray-text);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(42, 141, 191, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-item:hover .why-item-icon {
  background: var(--blue);
  color: var(--white);
}

.why-item-text h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.why-item-text p {
  font-size: 0.9rem;
  color: var(--gray-text);
}

/* === BEFORE/AFTER === */
.before-after-section {
  background: var(--navy);
  padding: 90px 0;
  overflow: hidden;
}

.before-after-section .section-label {
  background: rgba(56, 189, 248, 0.15);
  color: var(--blue-light);
}

.before-after-section h2 {
  color: var(--white);
}

.before-after-section .section-header p {
  color: rgba(255,255,255,0.6);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}

.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.ba-image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.ba-before {
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

.ba-after {
  background: linear-gradient(135deg, #0D2137 0%, var(--blue) 60%, var(--blue-light) 100%);
}

.ba-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-window-dirty {
  width: 160px;
  height: 180px;
  background: rgba(255,255,255,0.07);
  border: 6px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 6px;
}

.ba-pane {
  background: rgba(150, 150, 150, 0.25);
  border-radius: 2px;
  position: relative;
}

.ba-pane.dirty::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 4px,
    rgba(0,0,0,0.15) 4px,
    rgba(0,0,0,0.15) 5px
  );
}

.ba-pane.clean {
  background: rgba(255,255,255,0.45);
}

.ba-pane.clean::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 15%;
  width: 25%;
  height: 55%;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), transparent);
  border-radius: 2px;
  transform: rotate(-10deg);
}

.ba-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
}

.ba-label strong {
  font-size: 1rem;
  display: block;
}

.ba-label span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.ba-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.ba-after .ba-tag {
  background: var(--blue);
  color: white;
}

/* === BENEFITS === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.benefit-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(42,141,191,0.2);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(42,141,191,0.12), rgba(56,189,248,0.06));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--blue);
}

.benefit-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--gray-text);
}

/* === SOLAR PANEL SECTION === */
.solar-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3755 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.solar-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -15%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(42, 141, 191, 0.2) 0%, transparent 70%);
}

.solar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .solar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}

.solar-grid h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.solar-grid p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.solar-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.solar-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.solar-stat .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-light);
  display: block;
  margin-bottom: 4px;
}

.solar-stat span:last-child {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.solar-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.solar-photo {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.solar-panel {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #1a3a5c, #0f2840);
  border-radius: 6px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  position: relative;
  overflow: hidden;
}

.solar-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(56, 189, 248, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.1) 1px, transparent 1px);
  background-size: 20px 25px;
}

.solar-panel.clean::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 70%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  transform: rotate(-5deg);
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.reviewer-location {
  font-size: 0.8rem;
  color: var(--gray-text);
}

.google-badge {
  margin-left: auto;
  flex-shrink: 0;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: #FBBF24;
  font-size: 0.95rem;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

.testimonial-card .service-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(42,141,191,0.1);
  padding: 3px 10px;
  border-radius: 100px;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

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

.rating-big .num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.rating-big .stars-lg {
  display: flex;
  gap: 4px;
  justify-content: center;
  color: #FBBF24;
  font-size: 1.3rem;
  margin: 6px 0;
}

.rating-big span {
  font-size: 0.85rem;
  color: var(--gray-text);
}

/* === SERVICE AREAS === */
.areas-section {
  background: var(--gray-light);
  padding: 70px 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-mid);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition-fast);
}

.area-item:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(42,141,191,0.04);
}

.area-item svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.open {
  border-color: rgba(42,141,191,0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-question h4 {
  font-size: 0.97rem;
  color: var(--navy);
  transition: var(--transition-fast);
}

.faq-item.open .faq-question h4 {
  color: var(--blue);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gray-dark);
}

.faq-item.open .faq-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.7;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-xdark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

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

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 50px;
  }
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.footer-contact-item svg {
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.social-link:hover {
  background: var(--blue);
  color: var(--white);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--blue-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links a:hover {
  color: var(--blue-light);
}

/* === LANGUAGE TOGGLE === */
.lang-toggle {
  background: linear-gradient(135deg, #2A8DBF 0%, #1E6FA0 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font);
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(42, 141, 191, 0.6), 0 2px 8px rgba(42, 141, 191, 0.35);
  animation: langPulse 2.4s ease-in-out infinite;
}

.lang-toggle:hover {
  background: linear-gradient(135deg, #34A5DB 0%, #2A8DBF 100%);
  transform: translateY(-1px);
  box-shadow: 0 0 0 6px rgba(42, 141, 191, 0), 0 6px 16px rgba(42, 141, 191, 0.5);
  animation: none;
}

@keyframes langPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(42, 141, 191, 0.55), 0 2px 8px rgba(42, 141, 191, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(42, 141, 191, 0), 0 2px 12px rgba(42, 141, 191, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lang-toggle { animation: none; }
}

/* === WHATSAPP BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 998;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* === FLOATING CTA (Mobile) === */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 998;
  display: none;
}

.float-call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  padding: 13px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.45);
  transition: var(--transition);
}

.float-call-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.55);
}

.float-call-btn .pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 3px solid rgba(34, 197, 94, 0.4);
  animation: ringPulse 2s ease-out infinite;
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}

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

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

.fade-in {
  opacity: 0;
  transition: opacity 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2137 50%, var(--blue-xdark) 100%);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(42, 141, 191, 0.2) 0%, transparent 60%);
}

.page-hero h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
}

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

.breadcrumb span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.breadcrumb .current {
  font-size: 0.82rem;
  color: var(--blue-light);
  font-weight: 600;
}

/* === SERVICES PAGE === */
.service-detail {
  padding: 70px 0;
  border-bottom: 1px solid var(--gray-mid);
}

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

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

@media (min-width: 900px) {
  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }

  .service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
  }

  .service-detail:nth-child(even) .service-detail-content {
    direction: ltr;
  }
}

.service-detail-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.sdv-1 { background: linear-gradient(135deg, #e0f2fe, #bae6fd, #7dd3fc); }
.sdv-2 { background: linear-gradient(135deg, #eff6ff, #dbeafe, #93c5fd); }
.sdv-3 { background: linear-gradient(135deg, #f0fdf4, #dcfce7, #86efac); }
.sdv-4 { background: linear-gradient(135deg, #fef9c3, #fef08a, #fde047); }
.sdv-5 { background: linear-gradient(135deg, #fce7f3, #fbcfe8, #f9a8d4); }

.sdv-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sdv-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.5;
}

.service-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(42,141,191,0.1);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.service-detail-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.service-detail-content > p {
  margin-bottom: 24px;
  color: var(--gray-text);
}

.includes-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-dark);
}

.includes-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1.5 5l2.5 2.5L8.5 2' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  background-color: var(--blue);
}

/* === ABOUT PAGE === */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-story {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy), var(--blue-xdark), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.value-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid);
  background: var(--white);
  transition: var(--transition);
  text-align: center;
}

.value-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(42,141,191,0.25);
  transform: translateY(-4px);
}

.value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(42,141,191,0.1), rgba(56,189,248,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 48px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 14px 20px;
  transition: var(--transition-fast);
}

.trust-badge:hover {
  border-color: var(--blue);
}

.trust-badge-icon {
  font-size: 1.6rem;
}

.trust-badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.trust-badge-text span {
  font-size: 0.78rem;
  color: var(--gray-text);
}

/* === BLOG PAGE === */

/* Featured post card */
.featured-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;        /* mobile: stack */
}

@media (min-width: 860px) {
  .featured-card {
    grid-template-columns: 1fr 1fr;  /* desktop: image | text side by side */
  }
}

.featured-card-img {
  position: relative;
  overflow: hidden;
  min-height: 260px;                 /* ensures a decent height on mobile */
  aspect-ratio: auto;
}

@media (min-width: 860px) {
  .featured-card-img {
    aspect-ratio: auto;
    min-height: 320px;
  }
}

.featured-card-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 500px) {
  .featured-card-body {
    padding: 24px 20px;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-6px);
}

.blog-image {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.blog-img-1 { background: linear-gradient(135deg, #e0f2fe 0%, #7dd3fc 100%); }
.blog-img-2 { background: linear-gradient(135deg, #eff6ff 0%, #93c5fd 100%); }
.blog-img-3 { background: linear-gradient(135deg, #f0fdf4 0%, #86efac 100%); }
.blog-img-4 { background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 100%); }
.blog-img-5 { background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%); }
.blog-img-6 { background: linear-gradient(135deg, #fef9c3 0%, #fde047 100%); }

.blog-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  opacity: 0.5;
}

.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.blog-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--gray-text);
}

.blog-read {
  font-size: 0.78rem;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.4;
}

.blog-body h3 a:hover {
  color: var(--blue);
}

.blog-body p {
  font-size: 0.88rem;
  color: var(--gray-text);
  margin-bottom: 18px;
  line-height: 1.65;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
}

.blog-read-link:hover {
  gap: 10px;
}

/* === QUOTE PAGE === */
.quote-page {
  background: var(--gray-light);
  padding: 90px 0;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 900px) {
  .quote-layout {
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
  }
}

.quote-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.quote-info > p {
  color: var(--gray-text);
  margin-bottom: 32px;
}

.quote-reasons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.quote-reason {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.quote-reason-icon {
  width: 40px;
  height: 40px;
  background: rgba(42,141,191,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.quote-reason-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.quote-reason-text span {
  font-size: 0.85rem;
  color: var(--gray-text);
}

.quote-guarantee {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius);
}

.quote-guarantee-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.quote-guarantee strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.quote-guarantee span {
  font-size: 0.82rem;
  color: var(--gray-text);
}

/* Form */
.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
}

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

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

@media (max-width: 580px) {
  .form-row { grid-template-columns: 1fr; }
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

label span.req {
  color: var(--blue);
  margin-left: 2px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 141, 191, 0.12);
}

input::placeholder, textarea::placeholder {
  color: #94a3b8;
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-text);
  margin-top: 14px;
}

.form-privacy a {
  color: var(--blue);
  text-decoration: underline;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

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

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .float-cta { display: block; }

  .section { padding: 60px 0; }

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

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-stat-divider { display: none; }

  .trust-bar-inner {
    gap: 18px 24px;
  }

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

  .quote-form-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .hero-shapes { display: none; }
  .btn-lg { padding: 15px 26px; font-size: 1rem; }
}

/* Animated gradient for CTA section */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== OUR WORK GALLERY ===== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.work-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.work-image {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-video {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--navy);
  border-top: 1px solid var(--gray-mid);
}

.work-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(15, 23, 42, 0.78);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
}

.work-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.work-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(42, 141, 191, 0.12);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
}

.work-card-body h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 14px 0 10px;
  line-height: 1.3;
}

.work-card-body > p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.work-tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
}

.work-tags li {
  background: var(--gray-light);
  color: var(--gray-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid var(--gray-mid);
}
