/* TRUSTIE SERVICES - HIGH-CONVERSION LANDING PAGE */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --blue-primary: #1e3a5f;
  --blue-dark: #0f172a;
  --blue-light: #2d4a6f;
  --bronze-primary: #b87333;
  --bronze-light: #cd853f;
  --bronze-dark: #8b5a2b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --success: #10b981;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --radius: 12px;
  --radius-xl: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

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

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

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

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

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

/* TOP BAR - URGENCY */
.top-bar {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--white);
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

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

.urgent-text {
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulse 2s infinite;
}

.urgent-text i {
  color: #fbbf24;
}

.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.trust-text {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-text i {
  color: #fbbf24;
}

.divider {
  opacity: 0.5;
}

/* VISITOR COUNTER */
.visitor-counter {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(15, 23, 42, 0.95);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9997;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.1);
}

.visitor-counter i {
  color: #10b981;
  animation: pulse 2s infinite;
}

#visitor-count {
  color: #fbbf24;
  font-weight: 800;
}

/* EXIT INTENT POPUP */
.exit-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.exit-popup.show {
  display: flex;
  animation: fadeInUp 0.3s ease-out;
}

.exit-popup-content {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  border: 3px solid var(--bronze-primary);
}

.exit-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.exit-close:hover {
  background: var(--gray-200);
  transform: rotate(90deg);
}

.exit-header {
  margin-bottom: 24px;
}

.exit-header i {
  font-size: 3rem;
  color: var(--bronze-primary);
  margin-bottom: 16px;
  display: block;
}

.exit-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
}

.exit-text {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

.exit-discount {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.3rem;
}

.exit-countdown {
  background: var(--gray-50);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.exit-countdown span {
  font-size: 0.9rem;
  color: var(--gray-500);
  display: block;
  margin-bottom: 8px;
}

.countdown-timer {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ef4444;
  font-family: 'Courier New', monospace;
}

.btn-exit {
  display: inline-block;
  background: linear-gradient(135deg, var(--bronze-primary), var(--bronze-dark));
  color: var(--white);
  padding: 20px 40px;
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-bronze);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-exit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(184, 115, 51, 0.5);
}

.exit-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* HEADER */
.header {
  position: fixed; top: 46px; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  height: 80px;
}

.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon { width: 52px; height: 52px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 2px solid var(--gray-100); }
.logo-img { width: 100%; height: 100%; object-fit: cover; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-size: 1.5rem; font-weight: 800; color: var(--blue-primary); letter-spacing: -0.02em; }
.logo-sub { font-size: 0.75rem; font-weight: 600; color: var(--bronze-primary); text-transform: uppercase; letter-spacing: 2px; }

.header-center { display: flex; align-items: center; }
.header-badge {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  color: var(--success);
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.875rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-header {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--bronze-primary), var(--bronze-dark));
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(184, 115, 51, 0.3);
  transition: all 0.3s;
}

.btn-header:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl), 0 0 0 1px rgba(184, 115, 51, 0.5); }

.btn-text { display: flex; flex-direction: column; line-height: 1.2; }
.btn-label { font-size: 0.7rem; opacity: 0.9; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-number { font-size: 1rem; font-weight: 700; }

/* HERO */
.hero {
  min-height: 100vh;
  padding: 180px 0 100px;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(105deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 40%, rgba(30, 58, 95, 0.6) 70%, transparent 100%),
    url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { animation: fadeInUp 0.8s ease-out; color: var(--white); }

.badge-pulse {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--bronze-primary), var(--bronze-dark));
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
  animation: pulse 2s infinite;
}

.pulse-dot { width: 8px; height: 8px; background: var(--white); border-radius: 50%; box-shadow: 0 0 10px rgba(255,255,255,0.8); }

.headline-wrapper { margin-bottom: 24px; }

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.subheadline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.subheadline i {
  color: var(--bronze-light);
  margin-right: 6px;
}

.subheadline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.price-anchor {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.2);
}

.price-from {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--bronze-light);
  line-height: 1;
}

.price-note {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.guarantee-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.95);
  font-size: 0.95rem;
  font-weight: 600;
}

.guarantee-item i {
  color: var(--bronze-light);
  font-size: 1.2rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--bronze-light), var(--bronze-primary), var(--bronze-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-badge i { color: var(--bronze-light); font-size: 1.2rem; }

.hero-subtitle { font-size: 1.35rem; color: rgba(255,255,255,0.9); line-height: 1.6; margin-bottom: 40px; max-width: 90%; }
.hero-subtitle strong { color: var(--bronze-light); font-weight: 700; }

.hero-stats { display: flex; gap: 40px; }
.stat { position: relative; }
.stat-number { display: block; font-size: 2.75rem; font-weight: 800; color: var(--bronze-light); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }
.stat-divider { width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent); }

/* FORM */
.hero-form-container { position: relative; animation: slideInRight 0.8s ease-out 0.2s both; }

.urgency-banner {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  position: relative;
  overflow: hidden;
}

.urgency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2s infinite;
}

.urgency-banner i { font-size: 1.2rem; animation: pulse 1s infinite; }

.form-card {
  background: var(--white);
  padding: 36px 40px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--gray-200);
}

.form-header { text-align: center; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 2px solid var(--gray-100); }
.form-header h2 { font-size: 1.875rem; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; letter-spacing: -0.02em; }
.form-subtitle { color: var(--bronze-primary); font-size: 1rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px; }

.lead-form { display: flex; flex-direction: column; gap: 18px; }
.input-group { position: relative; }
.input-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--gray-400); font-size: 1.1rem; transition: color 0.3s; }
.input-group:focus-within .input-icon { color: var(--bronze-primary); }

.input-group input,
.input-group select {
  width: 100%; padding: 18px 18px 18px 52px;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-size: 1.05rem; font-family: inherit; background: var(--white); appearance: none; transition: all 0.3s;
}

.input-group input:hover,
.input-group select:hover { border-color: var(--gray-300); }

.input-group input:focus,
.input-group select:focus { outline: none; border-color: var(--bronze-primary); box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.1); }

.input-group select {
  cursor: pointer; color: var(--gray-600);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 20px; padding-right: 48px;
}

.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; background: linear-gradient(135deg, var(--bronze-primary), var(--bronze-dark));
  color: var(--white); border: none;
  padding: 20px 32px; font-size: 1.2rem; font-weight: 800;
  border-radius: var(--radius); cursor: pointer;
  box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(184, 115, 51, 0.5); }

.form-trust { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.trust-row { display: flex; justify-content: center; gap: 24px; }
.trust-item-small { display: flex; align-items: center; gap: 8px; color: var(--gray-500); font-size: 0.85rem; font-weight: 600; }
.trust-item-small i { color: var(--success); font-size: 1rem; }

/* ACTIVITY TOAST POPUP */
.activity-toast {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--white);
  padding: 18px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl), 0 10px 40px rgba(0,0,0,0.2);
  border-left: 5px solid var(--success);
  z-index: 9999;
  transform: translateX(-150%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: 380px;
}

.activity-toast.show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}

.toast-content i {
  color: var(--success);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.toast-content strong {
  color: var(--gray-900);
  font-weight: 700;
}

/* TRUST BAR */
.trust-bar { background: var(--gray-900); padding: 28px 0; position: relative; z-index: 2; }
.trust-items { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--white); font-weight: 600; font-size: 1rem; }
.trust-item i { color: var(--success); font-size: 1.3rem; }

/* SERVICES */
.services { padding: 100px 0; background: var(--white); position: relative; }
.services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--gray-200), transparent); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.1), rgba(184, 115, 51, 0.05));
  color: var(--bronze-dark); padding: 10px 24px;
  border-radius: var(--radius-xl); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
  border: 1px solid rgba(184, 115, 51, 0.2);
}

.section-title { font-size: 3rem; font-weight: 800; color: var(--gray-900); letter-spacing: -0.02em; line-height: 1.2; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  background: var(--white); padding: 40px 32px;
  border-radius: var(--radius-xl); border: 1px solid var(--gray-200);
  text-align: center; transition: all 0.4s;
  position: relative; overflow: hidden;
}

.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--bronze-primary), var(--bronze-light));
  transform: scaleX(0); transition: transform 0.4s;
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--bronze-primary); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(184, 115, 51, 0.08));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; transition: all 0.3s;
}

.service-card:hover .service-icon { background: linear-gradient(135deg, var(--blue-primary), var(--blue-light)); transform: scale(1.1); }
.service-icon i { font-size: 1.75rem; color: var(--blue-primary); transition: color 0.3s; }
.service-card:hover .service-icon i { color: var(--white); }

.service-card h3 { font-size: 1.35rem; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.service-card p { color: var(--gray-500); font-size: 1rem; line-height: 1.6; }

/* HOW IT WORKS */
.how-it-works { padding: 100px 0; background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark)); position: relative; overflow: hidden; }
.how-it-works::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.section-header.light { color: var(--white); position: relative; }

.steps { display: flex; justify-content: center; gap: 24px; position: relative; }
.step { flex: 1; max-width: 340px; position: relative; }
.step-number { font-size: 3.5rem; font-weight: 900; color: rgba(255,255,255,0.25); line-height: 1; padding-bottom: 10px; position: relative; z-index: 1; text-align: center; }
.step-content {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  padding: 40px 32px; border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  z-index: 2;
  margin-top: 10px;
  transition: all 0.4s;
}

.step-content:hover { background: rgba(255,255,255,0.12); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

.step-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--bronze-primary), var(--bronze-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 10px 30px rgba(184, 115, 51, 0.4); }
.step-icon i { font-size: 1.75rem; color: var(--white); }
.step-content h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.step-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.7; }

.step-connector { display: flex; align-items: center; padding-top: 80px; }
.connector-line { width: 50px; height: 2px; background: linear-gradient(90deg, var(--bronze-primary), var(--bronze-light)); position: relative; }
.connector-line::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 12px solid var(--bronze-light); }

/* REVIEWS */
.reviews { padding: 100px 0; background: linear-gradient(to bottom, var(--gray-50), var(--white)); position: relative; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--white); padding: 40px 32px; border-radius: var(--radius-xl); border: 1px solid var(--gray-200); box-shadow: var(--shadow); transition: all 0.4s; position: relative; }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--bronze-primary); }
.review-card.featured { background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark)); color: var(--white); transform: scale(1.05); border: none; box-shadow: var(--shadow-2xl); z-index: 1; }
.review-card.featured:hover { transform: scale(1.05) translateY(-6px); }

.review-stars { color: var(--bronze-primary); font-size: 1rem; margin-bottom: 20px; letter-spacing: 2px; }
.review-card.featured .review-stars { color: var(--bronze-light); }
.review-text { font-size: 1.1rem; line-height: 1.8; margin-bottom: 28px; color: var(--gray-600); }
.review-card.featured .review-text { color: rgba(255,255,255,0.95); }

.review-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--gray-100); }
.review-card.featured .review-author { border-top-color: rgba(255,255,255,0.15); }
.author-avatar { width: 52px; height: 52px; background: linear-gradient(135deg, var(--bronze-primary), var(--bronze-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: 0.95rem; box-shadow: var(--shadow); }
.review-card.featured .author-avatar { background: var(--white); color: var(--blue-primary); }
.author-info strong { font-weight: 700; color: var(--gray-900); font-size: 1.05rem; display: block; margin-bottom: 2px; }
.review-card.featured .author-info strong { color: var(--white); }
.author-info span { color: var(--gray-400); font-size: 0.9rem; }

/* CTA */
.simple-cta { padding: 80px 0; background: var(--gray-900); text-align: center; }
.btn-cta-large { display: inline-flex; align-items: center; gap: 16px; background: linear-gradient(135deg, var(--bronze-primary), var(--bronze-dark)); color: var(--white); padding: 24px 48px; border-radius: var(--radius); font-size: 1.35rem; font-weight: 800; text-decoration: none; box-shadow: var(--shadow-bronze); transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-cta-large:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(184, 115, 51, 0.5); }

/* FOOTER */
.footer { background: var(--gray-900); color: var(--white); padding: 40px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-badges { display: flex; gap: 24px; }
.footer-badges span { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--gray-400); }
.footer-badges i { color: var(--bronze-primary); }

/* CHATBOT WIDGET */
.chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 420px;
  height: 650px;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl), 0 25px 50px -12px rgba(0,0,0,0.35);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  opacity: 1;
}

.chatbot-widget.minimized {
  transform: translateY(calc(100% - 80px));
  opacity: 0;
  pointer-events: none;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.chatbot-title i {
  font-size: 1.3rem;
  color: var(--bronze-light);
}

.chatbot-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s infinite;
}

.chatbot-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.chatbot-widget.minimized .chatbot-toggle {
  transform: rotate(180deg);
}

.chatbot-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: calc(100% - 70px);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 400px;
}

.message {
  display: flex;
  gap: 12px;
  animation: fadeInUp 0.3s ease-out;
}

.message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.bot-message .message-avatar {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white);
}

.user-message .message-avatar {
  background: var(--bronze-primary);
  color: var(--white);
}

.message-content {
  background: var(--gray-50);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  max-width: 85%;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.user-message {
  flex-direction: row-reverse;
}

.user-message .message-content {
  background: linear-gradient(135deg, var(--bronze-primary), var(--bronze-dark));
  color: var(--white);
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quick-replies button {
  background: var(--white);
  border: 2px solid var(--gray-200);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-primary);
  cursor: pointer;
  transition: all 0.2s;
}

.quick-replies button:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--white);
}

.chat-input-area {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: 12px;
}

#chat-input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s;
}

#chat-input:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.chat-send-btn {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--bronze-primary), var(--bronze-dark));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}

.chat-send-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.chat-send-btn i {
  font-size: 1.1rem;
}

/* Floating Chat Button */
.chatbot-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-2xl);
  z-index: 9997;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-float-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 20px 40px rgba(30, 58, 95, 0.4);
}

.chatbot-float-btn i {
  font-size: 1.75rem;
}

.chatbot-float-btn.hidden {
  transform: scale(0);
  opacity: 0;
}

.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: var(--bronze-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* Booking Form in Chat */
.booking-form {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  margin-top: 12px;
}

.booking-form h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-form h4 i {
  color: var(--bronze-primary);
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--bronze-primary);
}

.booking-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--bronze-primary), var(--bronze-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.booking-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Chat Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 20px;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: var(--gray-400);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-title { font-size: 3.5rem; }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
}

/* GALLERY SECTION */
.gallery { padding: 100px 0; background: var(--gray-50); }

.section-subtitle { text-align: center; color: var(--gray-500); font-size: 1.15rem; margin-top: 12px; }

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

.gallery-item { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); transition: all 0.4s; }

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

/* COMPARISON SLIDER */
.slider-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.slider-item {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.comparison-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.comparison-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.comparison-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  draggable: false;
}

.after-image {
  z-index: 1;
}

.before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.before-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.handle-line {
  flex: 1;
  width: 4px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.handle-circle {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  color: var(--bronze-primary);
  font-size: 1.2rem;
}

.slider-labels {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}

.label-before, .label-after {
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.label-before { background: #ef4444; }
.label-after { background: #10b981; }

.slider-caption {
  padding: 24px;
  text-align: center;
}

.slider-caption h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.slider-caption p {
  color: var(--gray-500);
  font-size: 0.95rem;
  font-style: italic;
}

.slider-hint {
  text-align: center;
  margin-top: 30px;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.slider-hint i {
  margin-right: 8px;
  color: var(--bronze-primary);
}

@media (max-width: 1024px) {
  .slider-gallery { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

/* OLD GALLERY STYLES - DEPRECATED */
.gallery-image { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.gallery-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
}

.gallery-placeholder.before { background: linear-gradient(135deg, var(--gray-200), var(--gray-300)); }
.gallery-placeholder.after { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }

.gallery-placeholder i { font-size: 2.5rem; margin-bottom: 12px; }
.gallery-placeholder.before i { color: var(--gray-500); }
.gallery-placeholder.after i { color: var(--success); }

.gallery-placeholder p { font-size: 0.9rem; font-weight: 600; color: var(--gray-600); }

/* Real Gallery Photos */
.gallery-photo {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

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

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

.gallery-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-placeholder.before .gallery-label { background: var(--gray-600); color: var(--white); }
.gallery-placeholder.after .gallery-label { background: var(--success); color: var(--white); }

.gallery-caption { padding: 24px; }
.gallery-caption h4 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.gallery-caption p { color: var(--gray-500); font-size: 0.95rem; font-style: italic; }

/* FAQ SECTION */
.faq { padding: 100px 0; background: var(--white); }

.faq-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.faq-item { background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; transition: all 0.3s; }

.faq-item:hover { border-color: var(--bronze-primary); box-shadow: var(--shadow); }

.faq-item.active { border-color: var(--bronze-primary); box-shadow: var(--shadow-lg); }

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s;
}

.faq-question:hover { color: var(--bronze-primary); }

.faq-question i { transition: transform 0.3s; color: var(--bronze-primary); }

.faq-item.active .faq-question i { transform: rotate(180deg); }

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

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

.faq-answer p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.7; }
.faq-answer ul, .faq-answer ol { margin-left: 20px; margin-bottom: 16px; color: var(--gray-600); }
.faq-answer li { margin-bottom: 8px; }
.faq-answer strong { color: var(--gray-900); }

.faq-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 16px 0; }
.faq-columns strong { display: block; margin-bottom: 12px; color: var(--gray-800); }

.faq-locations { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.faq-locations span {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
}

/* STICKY CTA BUTTON FOR MOBILE */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
}

.sticky-cta .btn-sticky {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--bronze-primary), var(--bronze-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .header { top: 0; padding: 6px 0; }
  .header-inner { padding: 0 12px; height: 64px; }
  .header-center { display: none; }
  .logo-icon { width: 40px; height: 40px; }
  .logo-img { width: 40px; height: 40px; }
  .logo-main { font-size: 1.05rem; }
  .logo-sub { font-size: 0.6rem; letter-spacing: 1px; }
  .btn-header { padding: 8px 10px; font-size: 0.85rem; min-height: 44px; }
  .btn-header .btn-number { font-size: 0.9rem; }
  .btn-header .btn-label { display: none; }
  .hero { padding: 96px 0 48px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-content { text-align: center; padding: 0 6px; }
  .hero-title { font-size: 2.05rem; line-height: 1.15; margin-bottom: 14px; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 22px; max-width: 100%; }
  .badge-pulse { margin-bottom: 18px; padding: 10px 18px; font-size: 0.8rem; }
  .subheadline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    font-size: 0.8rem;
    margin-bottom: 16px;
  }
  .subheadline span { 
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
  }
  .subheadline i { font-size: 0.75rem; }
  .price-anchor { justify-content: center; margin-bottom: 16px; }
  .price-amount { font-size: 1.85rem; }
  .hero-stats { flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 16px; }
  .stat { min-width: 90px; }
  .stat-number { font-size: 1.2rem; }
  .stat-divider { display: none; }
  .form-card { padding: 20px 14px; margin: 0 6px; }
  .form-header h2 { font-size: 1.2rem; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; padding: 12px; }
  .btn-submit { padding: 14px; font-size: 1rem; min-height: 48px; }
  .container { padding: 0 16px; }
  .section-title { font-size: 1.5rem; }
  .section-header { margin-bottom: 32px; }
  .services-grid, .reviews-grid, .gallery-grid { grid-template-columns: 1fr; gap: 18px; }
  .gallery-grid { gap: 20px; }
  .review-card.featured { transform: none; }
  .review-card { padding: 18px; }
  .btn-cta-large { padding: 16px 20px; font-size: 1rem; width: 100%; min-height: 48px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .faq-columns { grid-template-columns: 1fr; }
  .faq-locations span { font-size: 0.75rem; padding: 5px 10px; }
  .guarantee-row { flex-direction: row; flex-wrap: wrap; gap: 10px; justify-content: center; }
  .guarantee-item { padding: 8px 12px; background: rgba(255,255,255,0.08); border-radius: 999px; }
  .trust-items { gap: 16px; }
  .visitor-counter { bottom: 80px; right: 10px; font-size: 0.7rem; padding: 8px 12px; }
  .exit-popup-content { padding: 25px 15px; width: 95%; }
  .sticky-cta { display: block; padding: 10px 15px; }
  .sticky-cta .btn-cta { font-size: 0.9rem; padding: 12px 20px; }
  .chatbot-widget { bottom: 70px; }
  .chatbot-float-btn { bottom: 70px; }
  /* Fix horizontal overflow */
  html, body { overflow-x: hidden; }
  * { max-width: 100%; }
  img { height: auto; }
}

/* Extra small phones */
@media (max-width: 375px) {
  .hero-title { font-size: 1.5rem; }
  .hero-subtitle { font-size: 0.85rem; }
  .price-amount { font-size: 1.75rem; }
  .form-card { padding: 15px 12px; }
  .btn-header { padding: 6px 10px; }
  .btn-header .btn-label { display: none; }
}

/* ===== MOBILE NAV - HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--blue-primary);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE NAV - Full Screen Navy Overlay ===== */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1e3a5f 100%);
  padding: 80px 24px 100px;
  padding-top: calc(80px + env(safe-area-inset-top, 0px));
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  z-index: 10000;
}
.nav-mobile.open { display: flex; }

.nav-close {
  position: absolute;
  top: 20px;
  top: calc(20px + env(safe-area-inset-top, 0px));
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-mobile .nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile .nav-item i {
  width: 28px;
  color: #cd853f;
  font-size: 1.2rem;
}

.nav-dropdown {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 0;
  cursor: pointer;
}
.nav-dropdown-toggle span {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-dropdown-toggle span i {
  width: 28px;
  color: #cd853f;
  font-size: 1.2rem;
}
.nav-arrow {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  opacity: 0.7;
}
.nav-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 44px;
  padding-bottom: 8px;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-dropdown-menu a:last-child {
  border-bottom: none;
}
.nav-dropdown-menu a i {
  width: 24px;
  color: #cd853f;
  font-size: 1rem;
  opacity: 0.8;
}

.nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 16px 0;
}

.nav-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #b87333;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  padding: 18px 24px;
  margin-top: 8px;
  font-weight: 700;
  font-size: 1.1rem;
}
.nav-call i {
  color: white;
}

.nav-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  padding: 16px 24px;
  margin-top: 8px;
  font-weight: 600;
  font-size: 1rem;
}

.nav-tagline {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-top: auto;
  padding-top: 24px;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .header-center { display: none; }
  .btn-header .btn-text { display: none; }
  .btn-header .btn-label { display: none; }
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--blue-dark);
  padding: 12px;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.mobile-sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}
.sticky-call {
  background: var(--bronze);
  color: white;
}
.sticky-call:hover {
  background: #a06830;
}
.sticky-quote {
  background: white;
  color: var(--blue-dark);
  border: 2px solid white;
}
.sticky-quote:hover {
  background: var(--gray-100);
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }
  body {
    padding-bottom: 80px;
  }
}

/* ===== CROSS-SELL SECTION ===== */
.cross-sell {
  padding: 60px 0;
  background: var(--gray-50);
}
.cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.cross-sell-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: var(--gray-800);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.2s;
}
.cross-sell-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.cross-sell-card i {
  font-size: 2.5rem;
  color: var(--bronze);
  margin-bottom: 16px;
}
.cross-sell-card h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--blue);
}
.cross-sell-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .cross-sell-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 80px 0;
  background: white;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.pricing-card {
  background: var(--gray-50);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.pricing-card.featured {
  background: white;
  border-color: var(--bronze);
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(184,115,51,0.15);
}
.pricing-card h3 {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 12px;
}
.pricing-card .price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--bronze);
  margin-bottom: 4px;
}
.pricing-card .price-note {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.pricing-card ul {
  list-style: none;
  text-align: left;
}
.pricing-card ul li {
  padding: 8px 0;
  color: var(--gray-600);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card ul li i {
  color: var(--success);
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing-card.featured {
    transform: none;
  }
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 80px 0;
  background: var(--gray-50);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.process-step {
  text-align: center;
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--bronze);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
}
.process-step h3 {
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== WHY SECTION (Remodeling) ===== */
.why-section {
  padding: 80px 0;
  background: white;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.why-card {
  padding: 32px;
  border-radius: 16px;
  background: var(--gray-50);
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 16px;
}
.why-list {
  list-style: none;
}
.why-list li {
  padding: 8px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-list li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.why-list.bad li::before {
  content: "\f00d";
  color: #ef4444;
}
.why-list.good li::before {
  content: "\f00c";
  color: #10b981;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-cta-secondary:hover {
  background: white;
  color: var(--blue);
}

/* ===== MOBILE HERO FIX ===== */
@media (max-width: 768px) {
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }
  
  .hero-content {
    order: 1 !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .hero-form {
    order: 2 !important;
    width: 100% !important;
  }
  
  .hero-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }
  
  .hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }
  
  .subheadline {
    justify-content: center !important;
    gap: 8px 12px !important;
  }
  
  .guarantee-row {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  
  .guarantee-item {
    font-size: 0.75rem !important;
    padding: 6px 10px !important;
  }
  
  .hero-stats {
    justify-content: center !important;
  }
  
  .price-anchor {
    justify-content: center !important;
  }
  
  .form-card {
    margin: 0 auto !important;
    max-width: 100% !important;
  }
  
  /* Ensure dropdown is full width */
  .form-group select {
    width: 100% !important;
  }
}

/* ===== FORM ALIGNMENT FIX ===== */
.form-card {
  width: 100%;
  box-sizing: border-box;
}

.form-card form {
  width: 100%;
}

.form-group {
  width: 100%;
  box-sizing: border-box;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
}

/* Ensure all form elements have same padding/border */
.form-group input,
.form-group select {
  padding: 14px 16px !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-family: inherit !important;
  background: white !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* Custom dropdown arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 40px !important;
}

.btn-submit {
  width: 100% !important;
  box-sizing: border-box !important;
}

.trust-row {
  width: 100%;
  justify-content: center;
}

/* ===== BBB BADGE ===== */
.bbb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #005a78;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}
.bbb-badge img {
  height: 20px;
  width: auto;
}
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}
.trust-badge i {
  color: var(--bronze-light);
}

/* Mobile nav styles moved to individual page <style> blocks for homepage fullscreen overlay */

/* Better hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-desktop {
    display: none;
  }
}
