/* ========================================
   HEAL HEALTH HUBS - 2026 Modern Design
   Color Theme: Green, Cyan, Pink, Black, White
   Font: Poppins
======================================== */

:root {
  --green: #22C55E;
  --cyan: #06B6D4;
  --pink: #E879F9;
  --black: #09090B;
  --white: #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-300: #D4D4D8;
  --gray-500: #71717A;
  --gray-700: #3F3F46;
  --gradient-primary: linear-gradient(135deg, var(--green) 0%, var(--cyan) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--cyan) 0%, var(--pink) 100%);
  --gradient-accent: linear-gradient(135deg, var(--pink) 0%, var(--green) 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: blobMove 20s infinite ease-in-out;
}

.blob-1 {
  width: 500px; height: 500px;
  background: var(--green);
  top: -100px; left: -100px;
}

.blob-2 {
  width: 400px; height: 400px;
  background: var(--cyan);
  top: 50%; right: -100px;
  animation-delay: 5s;
}

.blob-3 {
  width: 450px; height: 450px;
  background: var(--pink);
  bottom: -100px; left: 30%;
  animation-delay: 10s;
}

@keyframes blobMove {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(80px, -80px) scale(1.1); }
  66% { transform: translate(-60px, 60px) scale(0.9); }
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,250,250,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(250,250,250,0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px; height: 48px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(34,197,94,0.3);
  transition: transform 0.3s;
}

.logo:hover .logo-icon { transform: rotate(-10deg) scale(1.05); }

.logo-text { display: flex; flex-direction: column; }
.logo-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.logo-subtitle {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-menu a:hover,
.nav-menu a.active { color: var(--black); }

.btn-cta-nav {
  background: var(--gradient-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(34,197,94,0.3);
  transition: all 0.3s;
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(34,197,94,0.4);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 20px rgba(34,197,94,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(34,197,94,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-full { width: 100%; justify-content: center; }

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(34,197,94,0.1);
  color: var(--green);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ HERO ============ */
.hero {
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(34,197,94,0.1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.2s backwards;
}

.hero-sub {
  font-weight: 300;
  color: var(--gray-500);
  font-style: italic;
}

.hero-desc {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
  animation: fadeInUp 0.8s 0.4s backwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s 0.6s backwards;
}

.hero-stats {
  display: flex;
  gap: 48px;
  animation: fadeInUp 0.8s 0.8s backwards;
}

.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats strong {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats span {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.hero-visual { position: relative; animation: fadeInRight 1s 0.3s backwards; }

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  animation: float 4s ease-in-out infinite;
}

.floating-card i {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.card-1 { top: 30px; left: -30px; }
.card-1 i { background: var(--green); }

.card-2 { top: 50%; right: -40px; animation-delay: 1s; }
.card-2 i { background: var(--cyan); }

.card-3 { bottom: 30px; left: 30px; animation-delay: 2s; }
.card-3 i { background: var(--pink); }

.floating-card strong { display: block; font-size: 15px; font-weight: 700; }
.floating-card span { font-size: 12px; color: var(--gray-500); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
}

.hero-scroll a {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--green);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ============ ABOUT ============ */
.about { padding: 120px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-badge-exp {
  position: absolute;
  bottom: 30px; right: 30px;
  background: var(--gradient-primary);
  color: white;
  padding: 24px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(34,197,94,0.3);
}

.about-badge-exp span {
  display: block;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.about-badge-exp small {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 52px; height: 52px;
  background: rgba(34,197,94,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 22px;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.value-card:hover .value-icon {
  background: var(--gradient-primary);
  color: white;
  transform: rotate(-10deg);
}

.value-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============ STATS ============ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(34,197,94,0.05), rgba(6,182,212,0.05));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: white;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gradient-primary);
  transition: left 0.5s;
  z-index: 0;
}

.stat-card:hover::before { left: 0; }
.stat-card > * { position: relative; z-index: 1; transition: color 0.3s; }
.stat-card:hover * { color: white !important; }

.stat-icon {
  width: 70px; height: 70px;
  background: rgba(34,197,94,0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 28px;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.stat-card:hover .stat-icon {
  background: rgba(255,255,255,0.2);
  color: white;
}

.stat-card h3 {
  font-size: 48px;
  font-weight: 800;
  display: inline;
}

.stat-suffix {
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
}

.stat-card p {
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 8px;
  font-weight: 500;
}

/* ============ FEATURES ============ */
.features { padding: 120px 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 72px; height: 72px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin-bottom: 24px;
  transition: all 0.4s;
}

.feature-card:hover .feature-icon {
  transform: rotate(-10deg) scale(1.1);
}

.feature-card:nth-child(2) .feature-icon { background: var(--gradient-secondary); }
.feature-card:nth-child(3) .feature-icon { background: var(--gradient-accent); }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, var(--cyan), var(--green)); }
.feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, var(--pink), var(--cyan)); }
.feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, var(--green), var(--pink)); }

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
}

.feature-link a:hover { gap: 14px; }

/* ============ WORK PROCESS ============ */
.work-process {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(6,182,212,0.05), rgba(232,121,249,0.05));
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.step-number {
  font-size: 60px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  position: absolute;
  left: -60px;
  top: -10px;
}

.step-content {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  flex: 1;
  margin-left: 60px;
  transition: all 0.3s;
  border: 1px solid var(--gray-200);
}

.step-content:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 56px; height: 56px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============ SERVICES ============ */
.services { padding: 120px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.service-card:hover .service-image img { transform: scale(1.08); }

.service-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-body { padding: 30px; }

.service-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-body > p {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--gray-700);
  font-size: 14px;
}

.service-features i { color: var(--green); font-size: 14px; }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(34,197,94,0.1);
  border-radius: 50px;
  font-size: 14px;
}

.btn-service:hover {
  background: var(--gradient-primary);
  color: white;
  gap: 14px;
}

/* ============ FINANCE & INSURANCE ============ */
.finance-insurance {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(232,121,249,0.05), rgba(34,197,94,0.05));
}

.fi-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.fi-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.fi-image img {
  width: 100%; height: 500px;
  object-fit: cover;
}

.fi-overlay {
  position: absolute;
  bottom: 20px; left: 20px;
  background: white;
  padding: 14px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-weight: 600;
}

.fi-overlay i { color: var(--green); font-size: 20px; }

.fi-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 32px;
}

.fi-list {
  margin-bottom: 40px;
}

.fi-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-700);
}

.fi-list i {
  color: var(--green);
  font-size: 18px;
}

/* ============ WARRANTY ============ */
.warranty { padding: 120px 0; }

.warranty-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--gradient-primary);
  padding: 80px 60px;
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(34,197,94,0.3);
}

.warranty-box::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.warranty-icon {
  width: 90px; height: 90px;
  background: white;
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.warranty-box h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.warranty-box > p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.warranty-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.wf-item i {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.wf-item h4 {
  font-size: 16px;
  font-weight: 600;
}

.warranty-box .btn {
  background: white;
  color: var(--green);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.warranty-box .btn:hover { background: var(--black); color: white; }

/* ============ BOOKING FORM ============ */
.booking { padding: 120px 0; }

.booking-form {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ============ FAQ ============ */
.faq {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(6,182,212,0.03), rgba(34,197,94,0.03));
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
}

.faq-question h3 {
  font-size: 17px;
  font-weight: 600;
  flex: 1;
}

.faq-question i {
  width: 36px; height: 36px;
  background: rgba(34,197,94,0.1);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  background: var(--gradient-primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: var(--gray-500);
  line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 300px; }

/* ============ REVIEWS ============ */
.reviews { padding: 120px 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: white;
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.4s;
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 30px;
  font-size: 80px;
  color: var(--gray-200);
  line-height: 1;
  font-family: Georgia;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: #FBBF24;
  font-size: 16px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.review-author span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============ CONTACT ============ */
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(34,197,94,0.05), rgba(232,121,249,0.05));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.info-card:hover {
  transform: translateX(8px);
  border-color: var(--green);
}

.info-icon {
  width: 56px; height: 56px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-card p,
.info-card a {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

.info-card a:hover { color: var(--green); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
}

.contact-form {
  background: white;
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: white;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  width: 44px; height: 44px;
  font-size: 20px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 700;
}

.footer-col p {
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a {
  color: var(--gray-300);
  font-size: 14px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul a::before {
  content: '\203A';
  color: var(--green);
  transition: all 0.3s;
}

.footer-col ul a:hover {
  color: var(--green);
  padding-left: 6px;
}

.subscribe-form {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 20px;
}

.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 18px;
  color: white;
  font-family: inherit;
  font-size: 14px;
}

.subscribe-form input::placeholder { color: var(--gray-300); }
.subscribe-form input:focus { outline: none; }

.subscribe-form button {
  width: 42px; height: 42px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.subscribe-form button:hover { transform: scale(1.1); }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-contact i { color: var(--green); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: var(--gray-300);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--gray-300);
  font-size: 14px;
}

.footer-legal a:hover { color: var(--green); }

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 180px 0 80px;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.breadcrumb a:hover { color: var(--pink); }
.breadcrumb i { font-size: 10px; opacity: 0.7; }

/* ============ LEGAL PAGE ============ */
.legal-page { padding: 80px 0 120px; }

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.last-updated {
  padding: 16px 24px;
  background: rgba(34,197,94,0.08);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--black);
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 12px;
}

.legal-content p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0 24px 24px;
  list-style: disc;
}

.legal-content ul li {
  padding: 6px 0;
  color: var(--gray-700);
}

.legal-content a {
  color: var(--green);
  text-decoration: underline;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-container,
  .about-grid,
  .fi-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual { order: -1; }
  .hero-image-wrap img,
  .about-image img,
  .fi-image img { height: 400px; }
  .features-grid,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-menu, .btn-cta-nav { display: none; }
  .mobile-toggle { display: flex; }
  
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    padding: 30px;
    box-shadow: var(--shadow-md);
    gap: 20px;
  }
  
  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: 42px; letter-spacing: -1px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  
  .floating-card { padding: 12px 16px; }
  .floating-card i { width: 38px; height: 38px; font-size: 16px; }
  
  .values-grid,
  .features-grid,
  .services-grid,
  .reviews-grid,
  .stats-grid { grid-template-columns: 1fr; }
  
  .warranty-box { padding: 50px 30px; }
  .warranty-features { grid-template-columns: 1fr; gap: 20px; }
  
  .booking-form,
  .contact-form,
  .legal-content { padding: 30px 24px; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .process-timeline::before { left: 20px; }
  .step-number { font-size: 40px; left: -30px; }
  .step-content { margin-left: 40px; padding: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .section-title { font-size: 32px; }
  .about-title { font-size: 26px; }
  .container { padding: 0 16px; }
  .floating-card.card-1,
  .floating-card.card-2 { display: none; }
}

/* Utility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}