/* ============================================
   GIGAFIBER v2.0 - Modern Premium Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Premium Color Palette */
  --primary-50: #faf5ff;
  --primary-100: #f3e8ff;
  --primary-200: #e9d5ff;
  --primary-300: #d8b4fe;
  --primary-400: #c084fc;
  --primary-500: #a855f7;
  --primary-600: #9333ea;
  --primary-700: #7c3aed;
  --primary-800: #6b21a8;
  --primary-900: #581c87;

  --accent-400: #f472b6;
  --accent-500: #ec4899;
  --accent-600: #db2777;

  --success-400: #4ade80;
  --success-500: #22c55e;
  --success-600: #16a34a;

  --warning-400: #fbbf24;
  --warning-500: #f59e0b;

  /* Neutral Palette */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;

  /* Semantic Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #faf8fc;
  --bg-tertiary: #f3f0f7;
  --text-primary: #1a1625;
  --text-secondary: #5c5470;
  --text-muted: #9490a3;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(107, 33, 168, 0.08);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #9333ea 0%, #ec4899 50%, #f472b6 100%);
  --gradient-accent: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
  --gradient-dark: linear-gradient(135deg, #1a1625 0%, #2d2640 100%);
  --gradient-mesh: radial-gradient(at 40% 20%, hsla(280, 70%, 50%, 0.2) 0px, transparent 50%),
    radial-gradient(at 80% 0%, hsla(320, 70%, 50%, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 50%, hsla(260, 70%, 50%, 0.1) 0px, transparent 50%);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 40px rgba(147, 51, 234, 0.3);
  --shadow-glow-accent: 0 0 40px rgba(236, 72, 153, 0.3);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Container */
  --container-max: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted {
  color: var(--text-muted);
}

.text-secondary {
  color: var(--text-secondary);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ============================================
   HEADER - Modern Floating Pill
   ============================================ */
.header {
  position: fixed;
  top: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  padding: var(--space-3) var(--space-6);
  background: white;
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.header.scrolled {
  width: 95%;
  top: var(--space-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition-base);
}

.logo:hover {
  transform: scale(1.02);
}

.logo span {
  font-weight: 400;
  opacity: 0.8;
}

.logo-img {
  height: 32px;
  width: auto;
  /* Fix for white background on logo */
  mix-blend-mode: multiply;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  padding: var(--space-2) 0;
  transition: var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.nav-link:hover {
  color: var(--text-primary);
}

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

/* ============================================
   BUTTONS - Premium Interactive
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(147, 51, 234, 0.5);
}

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

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--primary-700);
  border: 1px solid var(--primary-200);
}

.btn-secondary:hover {
  background: var(--primary-100);
  border-color: var(--primary-300);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

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

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
}

.btn-twitter {
  background: linear-gradient(135deg, #1DA1F2 0%, #0d8ecf 100%);
  color: white;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
  border-radius: var(--radius-2xl);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-lg);
}

/* ============================================
   CARDS - Glassmorphism & Hover Effects
   ============================================ */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-base);
}

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

.card-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  border-bottom: 1px solid var(--primary-100);
}

.card-body {
  padding: var(--space-6);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.card-icon.success {
  background: linear-gradient(135deg, var(--success-400), var(--success-600));
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.card-icon.accent {
  background: var(--gradient-accent);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Feature Card */
.feature-card {
  padding: var(--space-8);
  text-align: center;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  transition: var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-200);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--bg-tertiary);
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* ============================================
   FORMS - Modern Floating Labels
   ============================================ */
.form-group {
  margin-bottom: var(--space-5);
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-select {
  width: 100%;
  height: 52px;
  padding: 0 var(--space-4);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
  appearance: none;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239490a3' 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;
  padding-right: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.input-icon {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.25rem;
  pointer-events: none;
}

.form-input.has-icon {
  padding-left: 48px;
}

/* Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--bg-tertiary);
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition-base);
}

.checkbox-wrapper:hover {
  background: var(--primary-50);
}

.checkbox-wrapper.active {
  background: var(--primary-100);
  border-color: var(--primary-300);
}

.checkbox-input {
  width: 22px;
  height: 22px;
  accent-color: var(--primary-600);
  cursor: pointer;
}

.checkbox-label {
  font-weight: 500;
  color: var(--text-primary);
}

/* ============================================
   STEPPER - Modern Progress
   ============================================ */
.stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-6) var(--space-8);
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-8);
}

.stepper-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.stepper-circle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition-base);
}

.stepper-item.active .stepper-circle {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
}

.stepper-item.completed .stepper-circle {
  background: linear-gradient(135deg, var(--success-400), var(--success-600));
  color: white;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.stepper-item.pending .stepper-circle {
  background: var(--gray-100);
  color: var(--text-muted);
}

.stepper-label {
  font-weight: 600;
  font-size: 0.875rem;
}

.stepper-item.active .stepper-label {
  color: var(--primary-700);
}

.stepper-item.pending .stepper-label {
  color: var(--text-muted);
}

.stepper-line {
  width: 80px;
  height: 3px;
  margin: 0 var(--space-4);
  border-radius: var(--radius-full);
  background: var(--gray-200);
  position: relative;
  overflow: hidden;
}

.stepper-line.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  animation: progress-fill 0.5s ease forwards;
}

@keyframes progress-fill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ============================================
   PROGRESS BAR - Animated Gradient
   ============================================ */
.progress-container {
  margin: var(--space-4) 0;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}

.progress-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.progress-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-600);
}

.progress-bar {
  height: 12px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  position: relative;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ============================================
   TIMELINE - Vertical Modern
   ============================================ */
/* ============================================
   TIMELINE - Modern Flow Visualization
   ============================================ */
.timeline {
  display: flex;
  justify-content: space-between;
  padding: 0;
  background: transparent;
  box-shadow: none;
  margin-bottom: var(--space-12);
  position: relative;
  width: 100%;
}

/* Remove old single line */
.timeline::before {
  display: none;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

/* Connectors (The lines between steps) */
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  /* (Icon height 72px / 2) */
  left: 50%;
  width: 100%;
  height: 4px;
  background: var(--gray-200);
  z-index: -1;
  transition: background 0.4s ease;
}

/* Active or Completed steps color the specific connector segment AFTER them? 
   Actually, standard logic: 
   If step 1 is done, line 1->2 is done.
   If step 2 is active, line 1->2 is done. 
   So if this item is .completed or .active, its connector (to the right) should be colored?
   Wait, if I am active, the line TO me is dragging progress. The line FROM me is pending.
   Let's stick to: Completed items have filled lines to the right. 
*/
.timeline-item.completed::after {
  background: var(--gradient-primary);
}

/* If item is active, the line starting from it is still pending (gray), 
   but the line leading TO it (from previous) is handled by the previous .completed sibling. 
   So no special rule for .active::after needed unless we want a partial fill.
*/

.timeline-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: white;
  border: 4px solid var(--gray-100);
  position: relative;
  z-index: 2;
}

/* States */
.timeline-item.completed .timeline-icon {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(147, 51, 234, 0.3);
}

.timeline-item.active .timeline-icon {
  background: white;
  border-color: var(--primary-500);
  color: var(--primary-600);
  box-shadow: 0 0 0 8px rgba(147, 51, 234, 0.15);
  transform: scale(1.1);
}

.timeline-item.pending .timeline-icon {
  background: var(--gray-50);
  color: var(--text-muted);
  border-color: var(--gray-200);
}

/* Labels */
.timeline-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  max-width: 120px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.timeline-item.active .timeline-label {
  color: var(--primary-700);
  font-weight: 700;
}

/* Badge (Şu An) */
.timeline-badge {
  position: absolute;
  top: -12px;
  right: -24px;
  background: var(--accent-500);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 6px -1px rgba(236, 72, 153, 0.4);
  animation: bounce 2s infinite;
  white-space: nowrap;
  z-index: 3;
}

.timeline-badge::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent-500);
  transform: rotate(45deg);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ============================================
   STATS - Animated Counters
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.stat-card {
  text-align: center;
  padding: var(--space-5);
  background: var(--bg-tertiary);
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
}

.stat-card:hover {
  background: var(--primary-50);
  transform: translateY(-2px);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-value.positive {
  background: linear-gradient(135deg, var(--success-400), var(--success-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-1);
}

/* ============================================
   LEADERBOARD - Gamification
   ============================================ */
.leaderboard-list {
  list-style: none;
}

.leaderboard-item {
  display: flex;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
  margin-bottom: var(--space-2);
}

.leaderboard-item:hover {
  background: var(--bg-tertiary);
}

.leaderboard-item.top-3 {
  background: var(--bg-tertiary);
  border: 1px solid var(--primary-100);
}

.leaderboard-rank {
  width: 28px;
  font-weight: 700;
  font-size: 1.125rem;
}

.leaderboard-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  margin-right: var(--space-3);
}

.leaderboard-name {
  flex: 1;
  font-weight: 600;
}

.leaderboard-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-right: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #78350f;
}

.badge-silver {
  background: linear-gradient(135deg, #d1d5db, #9ca3af);
  color: #374151;
}

.badge-bronze {
  background: linear-gradient(135deg, #fdba74, #fb923c);
  color: #7c2d12;
}

.leaderboard-score {
  font-weight: 800;
  font-size: 1.125rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   ALERT BANNER - Modern Notification
   ============================================ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-6);
}

.alert-warning {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #fbbf24;
}

.alert-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.alert-content {
  flex: 1;
}

.alert-title {
  font-weight: 700;
  color: #92400e;
  margin-bottom: var(--space-1);
}

.alert-text {
  color: #a16207;
  font-size: 0.9375rem;
}

/* ============================================
   HERO SECTION - Immersive Grid
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
  padding: 140px 0 var(--space-24);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.8;
}

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

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 10s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-500);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-500);
  bottom: -50px;
  left: -50px;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--primary-400);
  top: 50%;
  left: 50%;
  animation-delay: -6s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  color: white;
  text-align: left;
}

.hero-media {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(5deg);
  transition: transform 0.5s ease;
}

.hero-media:hover .hero-img {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.hero h1 {
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.hero-text {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--space-20) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

.section-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: var(--primary-100);
  color: var(--primary-700);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

/* Grid Layouts */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

/* Counter Section */
.counter-section {
  background: var(--bg-secondary);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.counter-card {
  text-align: center;
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

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

.counter-value {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.counter-label {
  color: var(--text-secondary);
  font-weight: 500;
}

/* City Tabs */
.city-tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
}

.city-tab {
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-200);
  background: white;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.city-tab:hover {
  border-color: var(--primary-300);
  color: var(--primary-700);
}

.city-tab.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
}

/* Neighborhood Table */
.neighborhood-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 var(--space-3);
}

.neighborhood-table th {
  text-align: left;
  padding: var(--space-4);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.neighborhood-table td {
  padding: var(--space-4);
  background: white;
  border: 1px solid var(--gray-100);
}

.neighborhood-table td:first-child {
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.neighborhood-table td:last-child {
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.neighborhood-table tr:hover td {
  background: var(--primary-50);
  border-color: var(--primary-200);
}

.rank-badge {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.rank-1 {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
}

.rank-2 {
  background: linear-gradient(135deg, #d1d5db, #9ca3af);
  color: white;
}

.rank-3 {
  background: linear-gradient(135deg, #fdba74, #fb923c);
  color: white;
}

/* Video Section */
.video-section {
  background: var(--gradient-dark);
  color: white;
}

.video-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.video-player {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: var(--shadow-xl);
}

.video-player iframe {
  width: 100%;
  height: 100%;
}

.video-content h2 {
  margin-bottom: var(--space-4);
}

.video-content p {
  opacity: 0.8;
  margin-bottom: var(--space-6);
}

/* Steps/How it works */
.steps-section {
  background: var(--bg-secondary);
}

.step-card {
  text-align: center;
  padding: var(--space-8);
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(147, 51, 234, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius-2xl);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-spring);
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-xl);
}

.step-title {
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.step-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ============================================
   FOOTER - Modern Minimalist
   ============================================ */
.footer {
  background: var(--gray-950);
  color: white;
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand p {
  color: var(--gray-400);
  margin-top: var(--space-4);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  margin-bottom: var(--space-5);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-800);
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ============================================
   PAGE LAYOUTS
   ============================================ */
.page {
  display: none;
}

.page.active {
  display: block;
}

.page-container {
  min-height: calc(100vh - 80px);
  padding: var(--space-24) 0 var(--space-12);
}

.form-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
}

.form-card {
  width: 100%;
  max-width: 560px;
  padding: var(--space-10);
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.form-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.form-illustration {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

/* ============================================
   SUCCESS/CELEBRATION STATES
   ============================================ */
.success-card {
  text-align: center;
  padding: var(--space-12);
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-6);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--success-400), var(--success-600));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
  animation: success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes success-pop {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* Confetti */
.confetti-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1000;
}

.confetti {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  animation: confetti-fall 4s ease-out forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(100vh) rotate(1440deg);
    opacity: 0;
  }
}

/* ============================================
   REFERRAL CARD
   ============================================ */
.referral-card {
  text-align: center;
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--primary-50), var(--accent-500)/5);
  border: 2px solid var(--primary-200);
}

.referral-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.referral-desc {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.referral-input-group {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.referral-input {
  flex: 1;
  padding: var(--space-4);
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-family: 'Monaco', monospace;
  color: var(--text-secondary);
}

.share-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: var(--space-4) var(--space-6);
  background: var(--gray-900);
  color: white;
  border-radius: var(--radius-xl);
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transition: var(--transition-spring);
  z-index: 1001;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .header {
    width: 95%;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-container {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {

  /* Mobile Header */
  .header {
    width: 95%;
    padding: var(--space-3) var(--space-4);
  }

  .nav-link {
    display: none;
    /* Hide navigation links on mobile for simplicity */
  }

  /* Grid Stack */
  .grid-4,
  .grid-3,
  .grid-2,
  .counter-grid,
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  /* Hero Section */
  .hero {
    padding: 120px 0 var(--space-12);
    min-height: auto;
  }

  .hero-grid {
    display: flex;
    /* Use Flexbox to reorder easily */
    flex-direction: column-reverse;
    /* Image ON TOP? Or Text? Usually Content first on mobile for SEO, but visual flow -> Image first. Let's stick to Grid or Flex Column */
    flex-direction: column;
  }

  /* Actually, user wanted Image Left (Top), Text Right (Bottom).
     So default column stacking puts Image (Left) on Top, Content (Right) on Bottom. 
     This is correct. 
  */

  .hero-content {
    text-align: center;
    /* Center text on mobile */
  }

  .hero-badge {
    margin: 0 auto var(--space-4);
  }

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

  .hero-img {
    transform: none;
    /* Remove 3D effect on mobile */
  }

  .hero-media:hover .hero-img {
    transform: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  /* Stepper */
  .stepper {
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-6);
  }

  .stepper-line {
    width: 3px;
    height: 32px;
    margin: 0;
  }

  /* Timeline */
  .timeline {
    flex-direction: column;
    gap: var(--space-8);
  }

  .timeline::before {
    display: block;
    /* Restore vertical line */
    top: 0;
    bottom: 0;
    left: 36px;
    /* Half of 72px icon */
    width: 4px;
    height: 100%;
    background: var(--gray-200);
    z-index: 0;
  }

  .timeline-item {
    flex-direction: row;
    text-align: left;
    gap: var(--space-4);
    align-items: flex-start;
    width: 100%;
  }

  /* Disable horizontal connectors */
  .timeline-item:not(:last-child)::after {
    display: none;
  }

  .timeline-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .timeline-label {
    max-width: none;
    padding-top: var(--space-2);
    font-size: 1rem;
  }

  .timeline-badge {
    position: static;
    display: inline-block;
    vertical-align: middle;
    margin-left: var(--space-2);
    margin-top: 0;
    transform: none !important;
    /* Stop bouncing which might look weird inline */
    animation: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

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

  .form-card {
    padding: var(--space-6);
  }
}

/* ============================================
   TURKNET LOGO STYLES
   ============================================ */
.logo-img {
  height: 36px;
  width: auto;
  transition: var(--transition-base);
}

.logo:hover .logo-img {
  transform: scale(1.02);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-4);
}

/* ============================================
   ENHANCED HERO - Premium Gradient Background
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-24) 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-gradient-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      #2d1b4e 0%,
      #4a1d6a 25%,
      #6b2d8e 50%,
      #8b3da8 75%,
      #4a1d6a 100%);
}

.hero-gradient-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 100% at 0% 0%, rgba(236, 72, 153, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 80% 80% at 100% 20%, rgba(147, 51, 234, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(244, 114, 182, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 20% 90%, rgba(124, 58, 237, 0.4) 0%, transparent 50%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, transparent 70%);
  filter: blur(60px);
  animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #ec4899, #f472b6);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #9333ea, #a855f7);
  bottom: 10%;
  left: 5%;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  top: 40%;
  left: 40%;
  animation-delay: -8s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(20px, -30px) scale(1.05);
  }

  50% {
    transform: translate(-10px, 20px) scale(0.98);
  }

  75% {
    transform: translate(-20px, -10px) scale(1.02);
  }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  color: white;
}

.hero-highlight {
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, rgba(244, 114, 182, 0.6), rgba(236, 72, 153, 0.8));
  border-radius: var(--radius-full);
  transform: skewX(-5deg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.hero h1 {
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   CTA SECTION - Enhanced
   ============================================ */
.cta-section {
  background:
    linear-gradient(135deg,
      #6b21a8 0%,
      #9333ea 40%,
      #c026d3 70%,
      #ec4899 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* ============================================
   BLOG / NEWS CAROUSEL
   ============================================ */
.news-section {
  background: var(--bg-secondary);
}

.news-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.news-carousel {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--space-4) 0;
  flex: 1;
}

.news-carousel::-webkit-scrollbar {
  display: none;
}

.news-card {
  flex: 0 0 350px;
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

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

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  padding: var(--space-5);
}

.news-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-content h4 {
  margin: var(--space-2) 0;
  font-size: 1rem;
  line-height: 1.4;
}

.news-content p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-200);
  background: white;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: white;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.carousel-dot.active {
  background: var(--primary-600);
  width: 32px;
}

/* ============================================
   CONSTRUCTION PHOTOS
   ============================================ */
.construction-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.construction-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.construction-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS FOR NEW COMPONENTS
   ============================================ */
@media (max-width: 768px) {
  .construction-photos {
    grid-template-columns: 1fr;
  }

  .news-card {
    flex: 0 0 280px;
  }

  .carousel-btn {
    display: none;
  }

  .hero-orb {
    opacity: 0.3;
  }
}