:root {
  --primary: #0A0E27;
  --primary-light: #1a1f3a;
  --secondary: #2d3748;
  --accent: #F7931E;
  --accent-light: #ffb347;
  --success: #00F5FF;
  --warning: #FF4757;
  --dark: #0A0E27;
  --light: #f7fafc;
  --white: #ffffff;
  --text-primary: #0A0E27;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 4px 6px -1px rgba(10, 14, 39, 0.1);
  --shadow-lg: 0 25px 50px -12px rgba(10, 14, 39, 0.25);
  --shadow-glow: 0 0 50px rgba(247, 147, 30, 0.4);
  --shadow-accent: 0 0 30px rgba(247, 147, 30, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(247, 147, 30, 0.3);
  border-top: 3px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

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

.modal-content {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideInUp 0.3s ease;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 2rem;
  border-radius: 20px 20px 0 0;
  text-align: center;
  position: relative;
}

.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

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

/* Order Form Styles */
.order-form {
  padding: 2rem;
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.form-section:last-child {
  border-bottom: none;
}

.form-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  color: var(--text-primary);
}

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

.order-form .form-group {
  margin-bottom: 1.5rem;
}

.order-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
  color: var(--text-primary) !important;
  background-color: #ffffff !important;
  -webkit-text-fill-color: var(--text-primary) !important;
  opacity: 1 !important;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  outline: none;
  border-color: var(--accent);
  color: var(--text-primary) !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.1);
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: var(--text-secondary) !important;
  opacity: 0.7 !important;
  -webkit-text-fill-color: var(--text-secondary) !important;
}

.order-form small {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Radio Group */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-option:hover {
  border-color: var(--accent);
  background: rgba(247, 147, 30, 0.05);
}

.radio-option input[type="radio"] {
  width: auto;
  margin: 0;
  opacity: 1 !important;
}

.radio-option input[type="radio"]:checked + span {
  color: var(--accent);
  font-weight: 600;
}

/* Upload Section */
.upload-section {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.upload-section h4 {
  color: var(--accent);
  margin-top: 0;
}

/* File Input Styling */
input[type="file"] {
  padding: 0.5rem;
  background: white;
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-primary) !important;
  opacity: 1 !important;
}

input[type="file"]:hover {
  border-color: var(--accent);
  background: rgba(247, 147, 30, 0.05);
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.form-actions .btn {
  min-width: 150px;
}

/* Form validation enhancements */
.form-group input.error,
.form-group textarea.error {
  border-color: var(--warning) !important;
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
  color: var(--text-primary) !important;
  background-color: #ffffff !important;
}

/* Autocomplete styling fix */
.order-form input:-webkit-autofill,
.order-form input:-webkit-autofill:hover,
.order-form input:-webkit-autofill:focus,
.order-form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: var(--text-primary) !important;
  color: var(--text-primary) !important;
}

/* Select dropdown styling */
.order-form select option {
  color: var(--text-primary) !important;
  background-color: #ffffff !important;
}

/* Textarea specific fixes */
.order-form textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
  color: var(--text-primary) !important;
  background-color: #ffffff !important;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(247, 147, 30, 0.3);
  border-top: 4px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(ellipse at top, rgba(10, 14, 39, 0.1) 0%, transparent 70%),
              radial-gradient(ellipse at bottom left, rgba(247, 147, 30, 0.1) 0%, transparent 70%),
              radial-gradient(ellipse at bottom right, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 20s infinite linear;
}

.shape:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  top: 60%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 30%;
  animation-delay: -5s;
}

.shape:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--success) 0%, #47d4ff 100%);
  border-radius: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(120deg); }
  66% { transform: translateY(30px) rotate(240deg); }
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--glass-border);
  z-index: 2000;
  transition: all 0.3s ease;
  height: 60px;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  top: 60px;
  margin-top: 0;
  left: 0;
  z-index: 100;
}

.hero-banner-fullscreen {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
  display: flex;
  align-items: center;
}

.hero-banner-bg {
  width: 100%;
  height: calc(100vh - 60px);
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 101;
  object-position: center center;
}

.hero-overlay {
  display: none;
}

.hero-content-overlay {
  position: relative;
  z-index: 150;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  color: white;
  width: 100%;
  max-width: 50%;
  margin-left: 2rem;
  padding-top: 80px;
}

.hero-content-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
  color: white;
  animation: slideInUp 1s ease-out;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
  hyphens: auto;
}

.hero-content-overlay p {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  animation: slideInUp 1s ease-out 0.2s both;
  line-height: 1.5;
  max-width: 90%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 0.4s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-light);
  box-shadow: 0 0 80px rgba(247, 147, 30, 0.6);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
  backdrop-filter: blur(10px);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* Sections */
.section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Pricing Section with Background */
.section#pricing {
  background: white;
}

.section#pricing::before {
  display: none;
}

.section#pricing .section-title {
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.section#pricing .cards-grid {
  position: relative;
  z-index: 2;
}

/* Process Section with Background */
.section#process {
  background: 
    linear-gradient(135deg, rgba(15, 23, 48, 0.85) 0%, rgba(15, 23, 48, 0.75) 100%),
    url('https://images.pexels.com/photos/3184360/pexels-photo-3184360.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.section#process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at top right, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.section#process .process-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(15, 23, 48, 0.2);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(15, 23, 48, 0.3);
  background: rgba(255, 255, 255, 0.98);
}

.process-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: #0F1730;
  border: 2px solid #FFC107;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  z-index: 3;
}

.process-icon {
  width: 64px;
  height: 64px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 1.5rem 0;
  color: #0F1730;
}

.process-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F1730;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.process-teaser {
  color: #0B1226;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.process-details {
  margin-top: 1rem;
}

.process-details summary {
  color: #6B7280;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
  transition: color 0.3s ease;
  list-style: none;
  position: relative;
}

.process-details summary::-webkit-details-marker {
  display: none;
}

.process-details summary::after {
  content: '▼';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.process-details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.process-details summary:hover {
  color: #FFC107;
}

.process-details p {
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 1rem 0 0 0;
  padding-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .section#pricing {
    padding: 3rem 1.5rem;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
  }
  
  .section#process {
    padding: 3rem 1.5rem;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .section#pricing {
    padding: 2.5rem 1rem;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
  }
  
  .section#process {
    padding: 2.5rem 1rem;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
  }
  
  .process-card {
    padding: 1.5rem;
  }
  
  .process-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .process-card {
    padding: 1.25rem;
  }
  
  .process-icon {
    width: 56px;
    height: 56px;
  }
  
  .process-badge {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  .section#pricing,
  .section#process {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
  }
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.98);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-featured {
  position: relative;
  border: 3px solid var(--accent) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 30px 60px rgba(247, 147, 30, 0.3) !important;
}

.card-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.features-list li {
  padding: 0.25rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Pricing Accordion */
.pricing-header {
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-header h3 {
  margin-bottom: 0.75rem;
}

.pricing-header .price {
  margin-bottom: 0.75rem;
}

.pricing-header p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-header .btn {
  width: 100%;
  justify-content: center;
}

.pricing-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

.pricing-toggle:hover {
  background: var(--gray-200);
}

.toggle-arrow {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}

.pricing-toggle.active .toggle-arrow {
  transform: rotate(180deg);
}

.pricing-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.pricing-details.active {
  max-height: 200px;
}

.pricing-details .features-list {
  padding: 1rem 0;
  margin: 0;
}
/* Stats Section */
.stats {
  background: var(--dark);
  color: white;
  padding: 3rem 2rem;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0;
  clear: both;
  margin: 0;
  z-index: 100;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="25" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="25" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--success);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials {
  padding: 3rem 2rem;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(45deg, #f8fafc 0%, #e2e8f0 100%);
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1rem;
  position: relative;
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 6rem;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  max-height: 350px;
}

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

.blog-card:nth-child(4n+1) .blog-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.blog-card:nth-child(4n+2) .blog-header {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

.blog-card:nth-child(4n+3) .blog-header {
  background: linear-gradient(135deg, var(--success) 0%, #47d4ff 100%);
}

.blog-card:nth-child(4n+4) .blog-header {
  background: linear-gradient(135deg, var(--warning) 0%, #ff7675 100%);
}

.blog-header {
  padding: 1rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-category {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.blog-date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.blog-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

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

/* Portfolio Section */
.portfolio-section {
  background: linear-gradient(45deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 3rem 2rem;
  min-height: 680px;
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.portfolio-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  max-height: 400px;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-image {
  height: 150px;
  background: var(--primary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-placeholder {
  font-size: 4rem;
  color: white;
  opacity: 0.3;
  font-weight: 700;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(247, 147, 30, 0.9);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.portfolio-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(247, 147, 30, 0.1);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* FAQ Section */
.faq {
  padding: 3rem 2rem;
  min-height: 680px;
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  font-size: 0.875rem;
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--light);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1rem;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.5;
}

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

/* Contact Form */
.contact {
  padding: 3rem 2rem;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
  color: white;
  margin: 2rem 0 0 0;
  position: relative;
  z-index: 1;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

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

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 3rem 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand .logo {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.footer-brand p {
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.6;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop Optimizations for 1920x1080 */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
  
  /* Pricing section desktop enhancements */
  .section#pricing {
    padding: 8rem 2rem;
  }
  
  .section#pricing .cards-grid {
    gap: 4rem;
  }
  
  .section#pricing .card {
    padding: 3.5rem;
  }
  
  header {
    height: 60px;
  }
  
  .header-content {
    padding: 0.75rem 2rem;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .hero {
    height: 100vh;
    min-height: 700px;
    top: 60px;
  }
  
  .hero-content-overlay {
    margin-left: 6rem;
    max-width: 45%;
    padding-top: 160px;
  }
  
  .hero-content-overlay h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.2rem;
  }
  
  .hero-content-overlay p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    margin-bottom: 2rem;
    max-width: 85%;
  }
  
  .section {
    padding: 6rem 2rem;
    margin: 3rem 0;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
  
  .section-subtitle {
    font-size: 1.3rem;
  }
  
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .card {
    padding: 3rem;
  }
  
  .card h3 {
    font-size: 1.75rem;
  }
  
  .price {
    font-size: 3.5rem;
  }
  
  .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
  }
  
  .stat-number {
    font-size: 5rem;
  }
  
  .stat-label {
    font-size: 1.2rem;
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .blog-card {
    min-height: 400px;
  }
  
  .blog-content {
    padding: 2.5rem;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .portfolio-image {
    height: 250px;
  }
  
  .portfolio-content {
    padding: 2.5rem;
  }
  
  .testimonial {
    padding: 4rem;
  }
  
  .testimonial-text {
    font-size: 1.4rem;
  }
  
  .contact-form {
    padding: 4rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 1.2rem;
    font-size: 1.1rem;
  }

  .stats {
    margin: 4rem 0;
  }

  .testimonials {
    margin: 4rem 0;
  }

  .portfolio-section {
    margin: 4rem 0;
  }

  .faq {
    margin: 4rem 0;
  }

  .contact {
    margin: 4rem 0 0 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
  }
  
  .hero-banner-bg {
    height: 100vh;
    object-fit: cover;
  }
  
  .hero-overlay {
    height: 100vh;
  }
  
  .nav-links {
    display: none;
  }

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

  /* Pricing section mobile adjustments */
  .section#pricing {
    padding: 2rem 1rem;
    background-attachment: scroll;
    min-height: auto;
    height: auto;
  }

  /* Process section mobile adjustments */
  .section#process {
    padding: 2rem 1rem;
    background-attachment: scroll;
    min-height: auto;
    height: auto;
  }
  .hero {
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    margin-top: 60px;
  }

  .hero-content-overlay {
    margin-left: 1rem;
    padding: 0 1rem;
    max-width: 95%;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
  }

  .hero-content-overlay h1 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: center;
  }

  .hero-content-overlay p {
    font-size: clamp(1rem, 4vw, 1.1rem);
    margin-bottom: 1.5rem;
    max-width: 100%;
    text-align: center;
    line-height: 1.6;
  }

  .cta-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    width: 100%;
  }

  .cta-buttons .btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    text-align: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .card {
    padding: 2rem 1.5rem;
    margin: 0 auto;
    max-width: 100%;
  }

  .card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .price {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .pricing-header .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1rem;
  }
  .contact-form {
    margin: 0 1rem;
    padding: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .section {
    padding: 3rem 1rem;
    min-height: auto;
    height: auto;
    margin: 1rem 0;
  }

  .testimonials {
    padding: 3rem 1rem;
    min-height: auto;
    height: auto;
    margin: 1rem 0;
  }

  .stats {
    padding: 3rem 1rem;
    min-height: auto;
    height: auto;
    margin: 1rem 0;
  }

  .contact {
    padding: 3rem 1rem;
    min-height: auto;
    height: auto;
    margin: 1rem 0 0 0;
  }

  .portfolio-section {
    padding: 3rem 1rem;
    min-height: auto;
    height: auto;
    margin: 1rem 0;
  }

  .faq {
    padding: 3rem 1rem;
    min-height: auto;
    height: auto;
    margin: 1rem 0;
  }

  /* Process section mobile specific */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  .process-card {
    padding: 2rem 1.5rem;
    margin: 0 auto;
    max-width: 100%;
  }

  .process-card-title {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .process-teaser {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .process-details summary {
    font-size: 0.95rem;
    padding: 0.75rem 0;
  }

  .process-details p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 1rem 0 0 0;
    padding-top: 0.75rem;
  }

  .modal-content {
    margin: 1rem;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-header {
    padding: 1.5rem;
  }

  .order-form {
    padding: 1.5rem;
  }

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

  .radio-group {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  /* Section titles mobile */
  .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    padding: 0 1rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 0 1rem;
  }

  /* Testimonials mobile */
  .testimonial {
    padding: 2rem 1.5rem;
    margin: 0 1rem 1rem 1rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  /* Blog cards mobile */
  .blog-card {
    margin: 0 0.5rem;
    max-height: none;
  }

  .blog-content {
    padding: 1.5rem;
  }

  .blog-content h3 {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  /* Portfolio mobile */
  .portfolio-card {
    margin: 0 0.5rem;
    max-height: none;
  }

  .portfolio-content {
    padding: 1.5rem;
  }

  /* FAQ mobile */
  .faq-item {
    margin: 0 0.5rem 0.75rem 0.5rem;
  }

  .faq-question {
    padding: 1.2rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 1.2rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  /* Header mobile très petit */
  .header-content {
    padding: 0.5rem 1rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  /* Hero très petit mobile */
  .hero-content-overlay h1 {
    font-size: clamp(1.6rem, 7vw, 2rem);
    margin-bottom: 0.8rem;
    line-height: 1.1;
  }

  .hero-content-overlay p {
    font-size: clamp(0.9rem, 4vw, 1rem);
    margin-bottom: 1.2rem;
    max-width: 100%;
  }

  .hero-content-overlay {
    margin-left: 0.5rem;
    max-width: 95%;
    padding: 0 0.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 1.2rem 2rem;
    font-size: 1rem;
  }

  /* Sections très petit mobile */
  .section-title {
    font-size: 1.8rem;
    padding: 0 0.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .section {
    padding: 2.5rem 0.5rem;
  }

  /* Cards très petit mobile */
  .card {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
  }

  .card h3 {
    font-size: 1.2rem;
  }

  .price {
    font-size: 2rem;
  }

  /* Process cards très petit mobile */
  .process-card {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
  }

  .process-card-title {
    font-size: 1.1rem;
  }

  .process-teaser {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    bottom: 1rem;
    right: 1rem;
  }

  /* Contact form très petit mobile */
  .contact-form {
    margin: 0 0.5rem;
    padding: 1.2rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 1rem;
    font-size: 1rem;
  }

  /* Modal très petit mobile */
  .modal-overlay {
    padding: 0.5rem;
  }

  .modal-content {
    margin: 0.5rem;
    border-radius: 15px;
  }

  .modal-header {
    padding: 1.2rem;
  }

  .order-form {
    padding: 1.2rem;
  }

  /* Footer très petit mobile */
  .footer {
    padding: 2rem 1rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}