/* ============================================
   WÊGNON E.D.C - Feuille de style principale
   ============================================ */

:root {
  --primary: #0d47a1;
  --primary-dark: #082d6b;
  --primary-light: #1976d2;
  --primary-lighter: #e3f2fd;
  --accent: #ffc107;
  --dark: #0a1929;
  --gray-light: #f5f7fa;
  --text-muted: #6c757d;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(13, 71, 161, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 71, 161, 0.12);
  --shadow-lg: 0 20px 50px rgba(13, 71, 161, 0.18);
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2c3e50;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--dark);
}

.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom { background-color: var(--primary) !important; }
.bg-primary-light { background-color: var(--primary-lighter) !important; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 4px 25px rgba(13, 71, 161, 0.12);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary) !important;
}

.navbar-brand img,
.navbar-brand .logo-placeholder {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.navbar-brand .brand-text {
  line-height: 1.1;
}

.navbar-brand .brand-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--dark) !important;
  margin: 0 0.5rem;
  position: relative;
  transition: var(--transition);
}

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

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.btn-devis-nav {
  background: var(--primary);
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px;
  margin-left: 1rem;
}

.btn-devis-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-devis-nav::after { display: none !important; }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(10, 25, 41, 0.85), rgba(13, 71, 161, 0.75)),
              url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1920&q=80') center/cover;
  color: white;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(25, 118, 210, 0.3) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), #ffeb3b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.lead {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge i { color: var(--accent); }

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Page header (inner pages) */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, rgba(8, 45, 107, 0.9), rgba(25, 118, 210, 0.85)),
              url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?w=1920&q=80') center/cover;
  color: white;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.page-header .breadcrumb {
  justify-content: center;
  background: transparent;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.page-header .breadcrumb a { color: var(--accent); text-decoration: none; }
.page-header .breadcrumb-item.active { color: rgba(255, 255, 255, 0.85); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.5); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary-custom {
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.35);
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(13, 71, 161, 0.5);
}

.btn-outline-light-custom {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-light-custom:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
}

.btn-accent:hover {
  background: #ffb300;
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title .subtitle {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  position: relative;
  padding: 0 2rem;
}

.section-title .subtitle::before,
.section-title .subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1.5rem;
  height: 2px;
  background: var(--primary);
}

.section-title .subtitle::before { left: 0; }
.section-title .subtitle::after { right: 0; }

.section-title h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================
   STATS / COUNTERS
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=1920&q=80') center/cover;
  opacity: 0.1;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.stat-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.stat-item .counter {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: white;
}

.stat-item .stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 71, 161, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

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

.service-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, var(--primary-lighter), #bbdefb);
  color: var(--primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  transform: rotateY(180deg);
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.service-price {
  display: inline-block;
  background: var(--primary-lighter);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.service-card .link-arrow {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.service-card .link-arrow:hover {
  gap: 0.85rem;
}

/* ============================================
   ABOUT / FEATURES
   ============================================ */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-image-wrapper .experience-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--primary);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-image-wrapper .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-image-wrapper .experience-badge .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border-radius: 12px;
  transition: var(--transition);
}

.feature-item:hover {
  background: var(--primary-lighter);
  transform: translateX(10px);
}

.feature-item .icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: var(--primary-lighter);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-item h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-card {
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.team-card .avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--primary-lighter);
}

.team-card h5 { margin-bottom: 0.25rem; }
.team-card .role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.team-card .bio { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================
   EQUIPMENT GALLERY
   ============================================ */
.equipment-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  background: white;
}

.equipment-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.equipment-card:hover img {
  transform: scale(1.1);
}

.equipment-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 41, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: white;
}

.equipment-card .overlay h5 { color: white; margin: 0; }
.equipment-card .overlay p { margin: 0; opacity: 0.9; font-size: 0.9rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 25px;
  font-size: 6rem;
  color: var(--primary-lighter);
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonial-card .content {
  position: relative;
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
}

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

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

.testimonial-card .author h6 { margin: 0; font-weight: 700; }
.testimonial-card .author small { color: var(--text-muted); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=80') center/cover;
  opacity: 0.15;
}

.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: white; font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.cta-section p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 2rem; }

/* ============================================
   CONTACT / FORMS
   ============================================ */
.contact-info-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.contact-info-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: var(--primary-lighter);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.contact-info-card h5 { margin-bottom: 0.75rem; }
.contact-info-card p { color: var(--text-muted); margin: 0; }
.contact-info-card a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.contact-info-card a:hover { color: var(--primary); }

.form-control, .form-select {
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 2px solid #e0e7f0;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(13, 71, 161, 0.12);
}

.form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  color: #b0bec5;
  padding: 70px 0 0;
}

footer h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-light);
  border-radius: 2px;
}

footer p, footer a { color: #b0bec5; text-decoration: none; font-size: 0.95rem; }
footer a { transition: var(--transition); }
footer a:hover { color: var(--accent); padding-left: 5px; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 0.75rem; }
footer ul li i { color: var(--primary-light); margin-right: 0.5rem; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
}

.social-icons { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
  padding-left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  text-decoration: none;
  animation: pulse 2s infinite;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  color: white;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.15); }
}

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

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

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

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.from-left {
  transform: translateX(-40px);
}

.animate-on-scroll.from-left.visible {
  transform: translateX(0);
}

.animate-on-scroll.from-right {
  transform: translateX(40px);
}

.animate-on-scroll.from-right.visible {
  transform: translateX(0);
}

/* ============================================
   VALUES / MISSION
   ============================================ */
.value-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.value-card:hover {
  border-bottom-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.value-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

.value-card:hover .icon {
  transform: rotate(-8deg) scale(1.05);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  width: 3px;
  height: 100%;
  background: var(--primary-lighter);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--primary-lighter);
}

.timeline-item .year {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.timeline-item h5 { margin-bottom: 0.5rem; }
.timeline-item p { color: var(--text-muted); margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .navbar-collapse {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    box-shadow: var(--shadow-md);
  }
  .navbar-nav .nav-link { margin: 0.25rem 0; }
  .btn-devis-nav { margin: 1rem 0 0; text-align: center; }
  .hero { min-height: 80vh; padding: 100px 0 60px; }
  .about-image-wrapper { margin-bottom: 4rem; }
  .about-image-wrapper .experience-badge { right: 20px; }
  section { padding: 60px 0; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p.lead { font-size: 1rem; }
  .stat-item .counter { font-size: 2.2rem; }
  .page-header { padding: 130px 0 60px; }
  .timeline::before { left: 15px; }
  .timeline-item { padding-left: 55px; }
  .timeline-item::before { left: 6px; }
}

/* Utility */
.bg-light-blue { background-color: var(--primary-lighter); }
.rounded-xl { border-radius: 20px; }
