/* ================================
   ClimClean Nîmes - Styles
   ================================ */

/* Variables */
:root {
  --primary: #0066CC;
  --primary-dark: #0052a3;
  --orange: #FF7A30;
  --orange-hover: #e86a20;
  --green: #22c55e;
  --text: #1a1a2e;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 15px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-icon {
  font-size: 1.8rem;
  width: 120px;  /* ou la taille que tu veux */
  height: 120px;
  object-fit: contain;
}

.logo-text {
  color: white;
  transition: var(--transition);
}

.header.scrolled .logo-text {
  color: var(--text);
}

.logo-highlight {
  color: var(--orange);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

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

.header.scrolled .nav-link {
  color: var(--text);
}

.header.scrolled .nav-link:hover {
  color: var(--orange);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  transition: var(--transition);
}

.header.scrolled .mobile-menu-btn span {
  background: var(--text);
}

/* ================================
   Buttons
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

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

.btn-secondary {
  background: var(--bg-light);
  color: var(--text);
  border-color: var(--border);
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

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

.btn-full {
  width: 100%;
}

/* ================================
   WhatsApp Floating Button
   ================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.whatsapp-btn:active {
  transform: scale(0.95);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  color: white;
}

/* Animation pulse subtile */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-btn {
  animation: whatsapp-pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-btn {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
    z-index: 9999 !important;
  }
  
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

/* ================================
   Hero Section
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a2e;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 20px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
}

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

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 16px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.hero-video-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.video-circle-outer {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-circle-inner {
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-btn {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 122, 48, 0.8), var(--orange));
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 20px 40px rgba(255, 122, 48, 0.3);
  transition: var(--transition);
}

.video-btn:hover {
  transform: scale(1.05);
}

.video-btn:active {
  transform: scale(0.98);
}

.play-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.video-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-left {
  bottom: -20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

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

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.stat-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.hero-stat-right {
  top: -20px;
  right: -20px;
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 32px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 6px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ================================
   Section Common Styles
   ================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 102, 204, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ================================
   Why Section
   ================================ */
.why-section {
  padding: 100px 0;
  background: var(--bg);
}

/* Why Intro */
.why-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.why-intro-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-intro-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.why-intro-content .section-description {
  text-align: left;
  margin: 0 0 24px 0;
  max-width: 100%;
}

.why-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.why-intro-image {
  position: relative;
}

.why-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.why-intro-image video {
  width: 100%;
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  .why-intro-image video {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .why-intro-image video {
    height: 350px;
  }
}

.image-badge {
  height: 80px;    
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: white;
  padding: 8px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.image-badge-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
}

.image-badge-text {
  font-size: 0.675rem;
  color: var(--text-light);
}

/* Before / After Section */
.before-after-section {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 60px;
  margin-bottom: 80px;
}

.before-after-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 40px;
}

.before-after-container {
  display: flex;
  align-items: stretch;
  gap: 24px;
  justify-content: center;
}

.before-after-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1;
  max-width: 400px;
}

.before-after-image-wrapper {
  position: relative;
  height: 220px;
}

.before-after-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--border);
}

.before-after-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.label-before {
  background: #ef4444;
}

.label-after {
  background: var(--green);
}

.before-after-info {
  padding: 24px;
}

.before-after-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.issue-list,
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.issue-list li,
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-light);
}

.issue-icon {
  width: 20px;
  height: 20px;
  background: #fef2f2;
  color: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  flex-shrink: 0;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  background: #f0fdf4;
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  flex-shrink: 0;
}

.before-after-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 300;
}

/* Real Case Card */
.real-case-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 500px; /* Réduire de 600px à 500px */
  margin: 40px auto 0;
  border: 2px solid var(--primary);
}

.real-case-image-wrapper {
  position: relative;
  height: 550px; /* Réduire de 280px à 240px */
  background: var(--bg-light);
}

.real-case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.real-case-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 28px; /* Réduire le padding */
  background: rgba(0, 102, 204, 0.95);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 1.1rem; /* Réduire de 1.25rem */
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  white-space: nowrap; /* Empêche le texte de revenir à la ligne */
}

.real-case-content {
  padding: 28px; /* Réduire de 32px */
}

.real-case-content h4 {
  font-size: 1.125rem; /* Réduire de 1.25rem */
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px; /* Réduire de 20px */
  text-align: center;
}

.real-case-list {
  display: flex;
  flex-direction: column;
  gap: 11px; /* Réduire de 12px */
}

.real-case-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem; /* Légèrement plus petit */
  color: var(--text-light);
}
/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.stat-card-new {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.stat-card-new:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stat-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-icon-blue {
  background: rgba(0, 102, 204, 0.1);
}

.stat-icon-orange {
  background: rgba(255, 122, 48, 0.1);
}

.stat-icon-green {
  background: rgba(34, 197, 94, 0.1);
}

.stat-icon-purple {
  background: rgba(139, 92, 246, 0.1);
}

.stat-content-new {
  display: flex;
  flex-direction: column;
}

.stat-number-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.stat-label-new {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  padding: 60px;
  color: white;
}

.process-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 48px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.step-number {
  width: 48px;
  height: 48px;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* ================================
   Pricing Section
   ================================ */
.pricing-section {
  padding: 100px 0;
}

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

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

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

.pricing-card-featured {
  border: 2px solid var(--orange);
  transform: scale(1.05);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

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

.pricing-price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.price-period {
  color: var(--text-light);
  font-size: 1rem;
}

.pricing-features {
  margin-bottom: 32px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* ================================
   Gallery Section
   ================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.gallery-swiper-container {
  position: relative;
  padding: 0 50px;
}

.gallery-swiper {
  overflow: hidden;
  padding-bottom: 60px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  background: var(--border);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

/* Swiper Navigation */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  color: var(--primary);
  transition: var(--transition);
}

.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover {
  background: var(--primary);
  color: white;
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
  font-size: 1.25rem;
  font-weight: 700;
}

.gallery-swiper .swiper-button-prev {
  left: 0;
}

.gallery-swiper .swiper-button-next {
  right: 0;
}

/* Swiper Pagination */
.gallery-swiper .swiper-pagination {
  bottom: 10px;
}

.gallery-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--border);
  opacity: 1;
  transition: var(--transition);
}

.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

/* ================================
   Contact Section
   ================================ */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-right: 40px;
}

.contact-info .section-title {
  text-align: left;
}

.contact-info .section-description {
  text-align: left;
  margin: 0 0 32px 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.contact-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
}

.contact-item a {
  color: var(--primary);
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--orange);
}

.contact-form-wrapper {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 500;
  color: var(--text);
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.error-message {
  color: #ef4444;
  font-size: 0.75rem;
  min-height: 16px;
}

/* ================================
   Footer
   ================================ */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ================================
   Video Modal
   ================================ */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: black;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.video-modal video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

/* ================================
   Toast Notification
   ================================ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--text);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.toast.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast.success {
  background: var(--green);
}

.toast.error {
  background: #ef4444;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-description {
    margin: 0 auto;
  }

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

  .hero-video-area {
    display: none;
  }

  /* Why Section Responsive */
  .why-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-intro-content {
    align-items: center;
    text-align: center;
  }

  .why-intro-content .section-title,
  .why-intro-content .section-description {
    text-align: center;
  }

  .why-checklist {
    align-items: flex-start;
  }

  .why-intro-image {
    order: -1;
  }

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

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

  .process-step:not(:last-child)::after {
    display: none;
  }

  .before-after-section {
    padding: 40px 24px;
  }

  .before-after-container {
    flex-direction: column;
    align-items: center;
  }

  .before-after-arrow {
    transform: rotate(90deg);
  }

  .before-after-card {
    max-width: 100%;
  }
  
  @media (max-width: 768px) {
  .real-case-card {
    margin: 32px 16px 0;
  }
  
  .real-case-label {
    font-size: 1rem;
    padding: 10px 24px;
  }
  
  .real-case-content {
    padding: 24px;
  }
}

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

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }

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

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

  .contact-info {
    padding-right: 0;
    text-align: center;
  }

  .contact-info .section-title,
  .contact-info .section-description {
    text-align: center;
  }

  .contact-details {
    align-items: center;
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow);
  }

  .nav.active {
    display: flex;
  }

  .nav-link {
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

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

  .process-section {
    padding: 40px 24px;
  }

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

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

  .footer-brand p {
    margin: 16px auto 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

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