/* ========================================
   Sicmada - Custom Styles
   Modern & Optimized CSS for Event Venue
   ======================================== */

/* ========================================
   1. ROOT VARIABLES & GLOBAL SETTINGS
   ======================================== */

:root {
  /* Nouvelle palette basée sur le logo Sicmada */
  --primary: #0171bb;              /* Bleu principal du logo */
  --primary-dark: #005a8b;         /* Bleu foncé */
  --primary-light: #4db8e8;        /* Bleu clair */
  --secondary: #28abe3;            /* Bleu secondaire du logo */
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #e6f4fc;               /* Bleu très clair */
  --dark: #212021;                 /* Gris principal du logo */
  --orange: #e35336;
  
  --gradient-primary: linear-gradient(135deg, #0171bb 0%, #005a8b 100%);
  --gradient-secondary: linear-gradient(135deg, #28abe3 0%, #0171bb 100%);
  --gradient-dark: linear-gradient(135deg, #212021 0%, #999999 100%);
  
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  
  --transition: all 0.3s ease-in-out;
  --transition-fast: all 0.2s ease;
  
  --border-radius: 0.25rem;
  --border-radius-lg: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  font-weight: 300;
  overflow-x: hidden;
}

.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

/* ========================================
   2. TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* Animation du texte */
.animated-text {
  position: relative;
  display: block;
  min-height: 1.2em;
  vertical-align: bottom;
  padding-bottom: ;
}

.text-item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
  color: var(--orange);
  font-weight: 700;
  transition: opacity 0.6s ease, transform 0.6s ease;
  white-space: nowrap;
}

.text-item.active {
  opacity: 1;
  transform: translateY(0);
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-family: 'Montserrat', Georgia, 'Times New Roman', serif;
}

.text-primary {
  color: var(--primary) !important;
}

.text-primary-dark {
  color: var(--primary-dark) !important;
}

@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

/* ========================================
   3. NAVIGATION
   ======================================== */

.navbar {
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
  font-family: 'Montserrat', Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  color: var(--dark);
  padding: 0.5rem 1rem;
  transition: var(--transition-fast);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

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

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

@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    box-shadow: var(--shadow);
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
}

/* ========================================
   4. HERO SECTION
   ======================================== */

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f0f7fb 0%, var(--light) 100%);
  overflow: hidden;
  padding-top: 80px;
  min-height: 100vh;
}

.hero-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  border-radius: 0 0 0 50%;
  z-index: 0;
  overflow: hidden;
  background-image: url('assets/img/salle1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-gradient img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-gradient img.active {
  opacity: 1;
}

.hero-gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  border-radius: 0 0 0 50%;
  z-index: 1;
}

.hero-gradient img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 50%;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(1, 113, 187, 0.15);
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(1, 113, 187, 0.1) 0%, rgba(0, 90, 139, 0.2) 100%);
  transition: var(--transition);
}

.hero-image-wrapper:hover {
  transform: scale(1.02);
}


.hero-content {
  position: relative;
  z-index: 1;
  padding-right: 40px;
}

.hero-content h1 {
  text-wrap: balance;
  color: var(--dark);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.6s ease;
}

.feature-list li {
  animation: fadeInLeft 0.6s ease;
  animation-fill-mode: both;
}

.feature-list li:nth-child(1) { animation-delay: 0.1s; }
.feature-list li:nth-child(2) { animation-delay: 0.2s; }
.feature-list li:nth-child(3) { animation-delay: 0.3s; }
.feature-list li:nth-child(4) { animation-delay: 0.4s; }

.icon-check i {
  font-size: 1.25rem;
}

.hero-stats {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
  font-size: 2rem;
}

.hero-card {
  animation: fadeInRight 0.8s ease;
}

.hero-card .card {
  border-radius: var(--border-radius-lg);
  background: white;
  position: relative;
  overflow: hidden;
}

.hero-card .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.25rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
}

.scroll-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
}

/* ========================================
   5. BUTTONS & INTERACTIONS
   ======================================== */

.btn {
  font-family: 'Lato', sans-serif;
  border-radius: var(--border-radius);
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(1, 113, 187, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 113, 187, 0.4);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}

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

.btn-outline-secondary:hover {
  transform: translateY(-2px);
}

.btn-orange {
  background: linear-gradient(135deg, #ff6b35 0%, #e35336 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(227, 83, 54, 0.3);
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background: linear-gradient(135deg, #ff7f50 0%, #ff6b35 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(227, 83, 54, 0.4);
  color: white;
}

.btn-orange:active {
  transform: translateY(-1px);
}

/* ========================================
   6. CARDS & CONTAINERS
   ======================================== */

.card {
  border: none;
  transition: var(--transition);
  border-radius: var(--border-radius-lg);
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg) !important;
}

.icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-header {
  margin-bottom: 2rem;
}

.badge {
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 50px;
}

/* ========================================
   7. ABOUT SECTION
   ======================================== */

.about-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.about-slide.active {
  opacity: 1;
  z-index: 2;
}

.floating-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  animation: float 3s ease-in-out infinite;
  z-index: 9;
}

.badge-content {
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ========================================
   8. CONFIGURATIONS SECTION
   ======================================== */

.config-card .card {
  height: 100%;
  background: white;
}

.config-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  font-size: 2rem;
}

/* ========================================
   9. PRICING SECTION
   ======================================== */

.pricing-card .card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.pricing-card .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.pricing-card .card.border-primary {
  border-color: var(--primary) !important;
}

.pricing-card .card.border-primary:hover {
  box-shadow: 0 20px 40px rgba(1, 113, 187, 0.25) !important;
}

.pricing-badge {
  animation: pulse 2s ease-in-out infinite;
}

.pricing-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.btn-warning {
  background-color: var(--warning);
  border-color: var(--warning);
  color: var(--dark);
}

.btn-warning:hover {
  background-color: #e0a800;
  border-color: #d39e00;
  color: var(--dark);
  transform: translateY(-2px);
}

.event-type-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

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

.event-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.75rem;
}

.pricing-popular .badge {
  float: right;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: -97px;
  top: -10px;
  position: relative;
  text-align: center;
  width: 200px;
  font-size: 13px;
  margin: 0;
  padding: 7px 10px;
  font-weight: 500;
  color: #ffffff;
  background: #fb7179;
}

/* ========================================
   10. GALLERY SECTION
   ======================================== */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-content {
  color: white;
  transform: translateY(20px);
  transition: var(--transition);
}

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

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

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

/* ========================================
   11. TESTIMONIALS SECTION
   ======================================== */

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.testimonial-card .card {
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.testimonial-card:hover .card {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rating i {
  font-size: 1.1rem;
}

.avatar-circle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ========================================
   12. CONTACT SECTION
   ======================================== */

.info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.social-link,
.social-link-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  color: white;
}

.social-link-footer {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link-footer:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

/* ========================================
   13. FORMS
   ======================================== */

.form-control,
.form-select {
  font-family: 'Lato', sans-serif;
  border-radius: var(--border-radius);
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(1, 113, 187, 0.15);
}

.form-control-lg {
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
}

.form-label {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

/* ========================================
   14. FOOTER
   ======================================== */

footer {
  background: var(--gradient-dark);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

/* ========================================
   15. BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* ========================================
   16. ANIMATIONS
   ======================================== */

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ========================================
   17. UTILITIES
   ======================================== */

.bg-primary-subtle {
  background-color: rgba(1, 113, 187, 0.08) !important;
}

.bg-success-subtle {
  background-color: rgba(25, 135, 84, 0.1) !important;
}

.bg-info-subtle {
  background-color: rgba(13, 202, 240, 0.1) !important;
}

.bg-warning-subtle {
  background-color: rgba(255, 193, 7, 0.1) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.opacity-90 {
  opacity: 0.9;
}

/* ========================================
   18. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
  .display-3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .display-3,
  .display-4 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .hero-section {
    min-height: auto;
  }
  
  .hero-image-wrapper {
    min-height: 300px;
    margin-top: 2rem;
  }
  
  
  .gallery-item img {
    height: 250px;
  }
  
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }

  .hero-gradient {
    display: none;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .display-5 {
    font-size: 2rem;
  }
  
  .config-icon,
  .event-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ========================================
   19. ACCESSIBILITY
   ======================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

a:focus,
button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ========================================
   20. LANGUAGE SWITCHER
   ======================================== */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 0.75rem;
  background: var(--light);
  border-radius: 50px;
  padding: 0.2rem 0.4rem;
}

.lang-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  text-decoration: none;
  color: var(--dark);
  transition: var(--transition-fast);
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn.active {
  background: var(--primary);
  color: white;
  pointer-events: none;
}

.lang-divider {
  color: var(--primary-light);
  font-weight: 300;
  font-size: 0.85rem;
  user-select: none;
}

@media (max-width: 991px) {
  .lang-switcher {
    margin-left: 0;
    margin-top: 0.75rem;
    justify-content: center;
    width: fit-content;
  }
}

/* ========================================
   21. PRINT STYLES
   ======================================== */

@media print {
  .navbar,
  .back-to-top,
  .scroll-indicator,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  a {
    text-decoration: underline;
  }
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-success {
  background-color: var(--success) !important;
}

.bg-info {
  background-color: var(--info) !important;
}

/* ========================================
   PRICING CTA SECTION - AVEC FORMES GÉOMÉTRIQUES
   ======================================== */

.pricing-cta-section {
  position: relative;
  background: linear-gradient(135deg, #0171bb 0%, #005a8b 50%, #28abe3 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.pricing-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.pricing-cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.pricing-cta-content {
  position: relative;
  z-index: 1;
}

.pricing-highlight {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 10px 40px;
  display: inline-block;
  margin-bottom: 1rem;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.5rem;
}

.pricing-factors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.pricing-factor-item {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #ff6b35;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: white;
  transition: all 0.3s ease;
}

.pricing-factor-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.pricing-factor-item i {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  color: #ff6b35;
}

.pricing-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.pricing-reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 1.1rem;
}

.pricing-reassurance-item i {
  font-size: 1.5rem;
  color: #4ade80;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-amount {
    font-size: 2.5rem;
  }

  .pricing-cta-section::before,
  .pricing-cta-section::after {
    display: none;
  }

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