/* ==========================================================================
   CleanLand Kuru Temizleme · Modern Luxury Design System
   ========================================================================== */

:root {
  /* Brand Palette */
  --color-primary-dark: #07231a;
  --color-primary: #0f3a2c;
  --color-primary-light: #1b5340;
  --color-emerald: #10b981;
  --color-emerald-glow: #2ec486;
  --color-mint: #6ee7b7;
  --color-mint-light: #ecfdf5;
  --color-gold: #d97706;
  --color-gold-light: #fbbf24;
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #1ebd56;

  /* Neutrals */
  --bg-dark: #04120e;
  --bg-card: rgba(11, 46, 35, 0.7);
  --bg-card-hover: rgba(18, 64, 49, 0.85);
  --bg-card-border: rgba(46, 196, 134, 0.15);
  --bg-light: #f8fafc;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  --text-dark-muted: #64748b;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacings & Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(46, 196, 134, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

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

/* Gradient Typography */
.gradient-text {
  background: linear-gradient(135deg, #a7f3d0 0%, #34d399 50%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background: #020c09;
  border-bottom: 1px solid rgba(46, 196, 134, 0.1);
  font-size: 0.85rem;
  padding: 8px 0;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info strong {
  color: var(--color-mint);
}

.top-info .divider {
  margin: 0 10px;
  opacity: 0.3;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-link:hover {
  color: var(--color-emerald-glow);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 18, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46, 196, 134, 0.12);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-emerald-glow);
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-item:hover {
  color: #ffffff;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-emerald-glow);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-item:hover::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
}

/* ==========================================================================
   BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2ec486 0%, #10b981 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-glass {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(46, 196, 134, 0.3);
  color: var(--color-mint);
}

.btn-glass:hover {
  background: rgba(16, 185, 129, 0.25);
  border-color: var(--color-emerald-glow);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.85rem;
}

.full-width {
  width: 100%;
}

.shadow-pulse {
  animation: pulse-shadow 2.5s infinite;
}

@keyframes pulse-shadow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(46, 196, 134, 0.35);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 80px 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -150px;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(4, 18, 14, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(46, 196, 134, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-mint);
  margin-bottom: 20px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-emerald-glow);
  box-shadow: 0 0 10px var(--color-emerald-glow);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-desc strong {
  color: var(--color-mint);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-mint);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Visual wrapper */
.main-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(46, 196, 134, 0.2);
  box-shadow: var(--shadow-md);
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  z-index: 2;
}

.floating-badge strong {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
}

.floating-badge small {
  color: var(--color-mint);
  font-size: 0.75rem;
}

.badge-top-right {
  top: 20px;
  right: -20px;
}

.badge-bottom-left {
  bottom: 20px;
  left: -20px;
}

.badge-icon {
  font-size: 1.5rem;
}

/* ==========================================================================
   SECTIONS COMMON
   ========================================================================== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-emerald-glow);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* ==========================================================================
   GREENEARTH FEATURES SECTION
   ========================================================================== */
.greenearth-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #061e16 100%);
}

.feature-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon.green { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.feature-icon.emerald { background: rgba(5, 150, 105, 0.25); color: #6ee7b7; }
.feature-icon.blue { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-checklist {
  list-style: none;
  font-size: 0.85rem;
  color: var(--color-mint);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight-card {
  border-color: rgba(46, 196, 134, 0.4);
  background: rgba(16, 185, 129, 0.1);
}

/* Split Card */
.split-card {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  align-items: center;
}

.split-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.split-content {
  padding: 40px;
}

.badge-mini {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-mint);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.split-content h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.split-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.split-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.split-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-mint);
}

.split-stats span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SERVICES TABS & GRID
   ========================================================================== */
.services-section {
  background: var(--bg-dark);
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.tab-btn.active {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(46, 196, 134, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 2rem;
  background: rgba(16, 185, 129, 0.1);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-mint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.service-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

.service-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */
.calculator-section {
  background: linear-gradient(180deg, #061e16 0%, var(--bg-dark) 100%);
}

.calculator-wrapper {
  padding: 36px;
  max-width: 1060px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
}

.calc-items-area h3,
.summary-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.calc-category-picker {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.calc-cat-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.calc-cat-btn.active {
  background: var(--color-emerald);
  color: #ffffff;
  border-color: transparent;
}

.calc-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
}

/* Scrollbar */
.calc-items-list::-webkit-scrollbar {
  width: 5px;
}
.calc-items-list::-webkit-scrollbar-thumb {
  background: rgba(46, 196, 134, 0.3);
  border-radius: 4px;
}

.calc-row-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.calc-row-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.calc-item-info strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.calc-item-info small {
  color: var(--color-mint);
  font-weight: 600;
}

.calc-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--color-emerald);
  border-color: transparent;
}

.qty-value {
  font-weight: 700;
  font-size: 1rem;
  width: 24px;
  text-align: center;
}

/* Summary Box */
.summary-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(46, 196, 134, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.badge-tag {
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-mint);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.selected-items-box {
  min-height: 140px;
  max-height: 180px;
  overflow-y: auto;
  padding: 12px 0;
  flex-grow: 1;
}

.empty-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 30px 0;
}

.selected-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.summary-totals {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.total-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-emerald-glow);
}

.perk-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.free-text {
  color: var(--color-mint);
}

/* ==========================================================================
   PROCESS SECTION (HOW IT WORKS)
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.process-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.process-step-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(46, 196, 134, 0.15);
}

.process-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.process-arrow {
  font-size: 1.8rem;
  color: var(--color-emerald-glow);
  opacity: 0.5;
}

/* Courier Banner */
.courier-banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  align-items: center;
}

.courier-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.courier-content {
  padding: 36px 40px;
}

.courier-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.courier-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.courier-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #061e16 100%);
}

.testimonial-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.testimonial-author small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-info-card,
.contact-map-card {
  padding: 36px;
}

.contact-desc {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

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

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.4rem;
  background: rgba(16, 185, 129, 0.12);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.info-item p,
.info-item a {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.info-item a:hover {
  color: var(--color-emerald-glow);
}

.quick-call-box {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
}

.quick-call-box h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.quick-call-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.quick-btns {
  display: flex;
  gap: 10px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #020b08;
  border-top: 1px solid rgba(46, 196, 134, 0.15);
  padding: 70px 0 0 0;
}

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

.footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 16px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-contact-info {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   MODAL / POPUP
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease-out;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  width: 100%;
  max-width: 540px;
  background: #082119;
  border: 1px solid rgba(46, 196, 134, 0.3);
  padding: 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 6px;
}

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

/* Form inputs */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: #ffffff;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-emerald-glow);
  box-shadow: 0 0 0 3px rgba(46, 196, 134, 0.2);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   MOBILE STICKY BOTTOM BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(4, 18, 14, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(46, 196, 134, 0.2);
  padding: 10px 16px;
  gap: 12px;
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.sticky-call {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sticky-order {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
}

/* ==========================================================================
   RESPONSIVENESS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .badge-top-right { right: 10px; }
  .badge-bottom-left { left: 10px; }
  .grid-3, .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process-arrow {
    display: none;
  }
  .split-card, .courier-banner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .desktop-nav { display: none; }
  .header-actions .btn { display: none; }
  .mobile-toggle { display: flex; }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #061e16;
    padding: 24px;
    border-top: 1px solid rgba(46, 196, 134, 0.15);
  }
  .mobile-menu.active {
    display: flex;
  }
  .mobile-menu a {
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }
  .hero-img {
    height: 320px;
  }
  .grid-3, .grid-2, .services-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mobile-sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 60px;
  }
}
