/* ===========================
   LEMEX Website — style.css
   =========================== */

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

:root {
  --blue: #1AABF0;
  --blue-dark: #0d8fd4;
  --blue-deeper: #0a6fa8;
  --white: #ffffff;
  --light-bg: #f4f9fd;
  --dark: #0d1b2a;
  --gray: #6b7280;
  --light-gray: #e5e7eb;
  --gold: #f59e0b;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 171, 240, 0.97);
  backdrop-filter: blur(10px);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(10, 111, 168, 0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo-img {
  height: 48px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.8; }
.btn-nav {
  background: var(--white) !important;
  color: var(--blue) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  opacity: 1 !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(26, 171, 240, 0.75) 0%, rgba(10, 111, 168, 0.75) 100%), url('images/hero-bg.webp') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
}
.hero-content { max-width: 820px; }
.hero-logo {
  width: 280px;
  max-width: 80%;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
  border-radius: 16px;
}
.hero-tagline {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0 auto 14px;
  line-height: 1.8;
}
.hero-organizer {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.hero-organizer strong { color: var(--white); }
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-primary {
  background: var(--white);
  color: var(--blue);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.7);
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(26, 171, 240, 0.12);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: 34px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 16px;
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-header.light .section-tag {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.82); }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--light-bg);
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(26,171,240,0.15);
}
.card-icon { font-size: 38px; margin-bottom: 14px; }
.card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== CONCEPT ===== */
.concept {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deeper) 100%);
}
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.concept-card {
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 36px 32px;
  color: var(--white);
  transition: background 0.2s;
}
.concept-card:hover { background: rgba(255,255,255,0.2); }
.concept-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.concept-card > p { font-size: 14px; color: rgba(255,255,255,0.82); margin-bottom: 20px; line-height: 1.7; }
.concept-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.concept-card ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  padding-left: 20px;
  position: relative;
}
.concept-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.6);
}

/* ===== ACTIVITIES ===== */
.activities {
  padding: 100px 0;
  background: var(--white);
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.activity-card {
  background: var(--light-bg);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}
.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,171,240,0.15);
  border-color: var(--blue);
}
.activity-icon { font-size: 36px; margin-bottom: 12px; }
.activity-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); }

.competition-format {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 48px 40px;
}
.competition-format h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  text-align: center;
}
.competition-format > p {
  font-size: 15px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.format-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.format-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-gray);
}
.format-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.format-col ul li { font-size: 14px; color: var(--dark); }

/* ===== PACKAGES ===== */
.packages {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-deeper) 0%, #063d5e 100%);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.package-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 28px;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.15);
  transition: transform 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.package-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.18);
}
.package-card.featured {
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
  transform: scale(1.03);
}
.package-card.special {
  background: rgba(245,158,11,0.15);
  border-color: var(--gold);
}
.package-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(255,255,255,0.2);
  padding: 4px 14px;
  border-radius: 50px;
  width: fit-content;
}
.package-card.special .package-badge {
  background: rgba(245,158,11,0.3);
  color: var(--gold);
}
.package-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.package-price span { font-size: 18px; font-weight: 600; opacity: 0.8; }
.package-limit {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}
.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.package-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.package-card.special .package-features li::before { color: var(--gold); }
.btn-package {
  display: block;
  text-align: center;
  background: var(--white);
  color: var(--blue-deeper);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: auto;
}
.btn-package:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.package-card.special .btn-package { color: #7c4a00; }

.why-early {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 40px;
  text-align: center;
}
.why-early h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}
.why-early-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.why-early-item {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ===== BENEFITS ===== */
.benefits {
  padding: 100px 0;
  background: var(--light-bg);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon { font-size: 32px; flex-shrink: 0; }
.benefit-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.benefit-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== OBJECTIVES ===== */
.objectives {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deeper) 100%);
}
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.objective-item {
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: background 0.2s;
}
.objective-item:hover { background: rgba(255,255,255,0.2); }
.obj-icon { font-size: 40px; margin-bottom: 14px; }
.objective-item h4 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.objective-item p { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.7; }

/* ===== AWARDS ===== */
.awards {
  padding: 100px 0;
  background: var(--white);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.award-card {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}
.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(26,171,240,0.15);
  border-color: var(--blue);
}
.award-icon { font-size: 40px; margin-bottom: 14px; }
.award-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.award-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== AUDIENCE ===== */
.audience {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-deeper) 0%, #063d5e 100%);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.audience-item {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.2s;
}
.audience-item:hover { background: rgba(255,255,255,0.18); }
.aud-icon { font-size: 32px; flex-shrink: 0; }
.audience-item h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.audience-item p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--light-bg);
}
.contact-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deeper) 100%);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.contact-logo {
  width: 160px;
  margin-bottom: 24px;
  border-radius: 12px;
}
.contact-box h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-box > p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.contact-item:hover { background: rgba(255,255,255,0.25); }
.contact-icon { font-size: 16px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form select {
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  font-family: var(--font);
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  outline: none;
  transition: box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form select:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}
.contact-form .btn-primary {
  margin-top: 8px;
  font-size: 16px;
  padding: 16px;
  border-radius: 10px;
  width: 100%;
}
.success-msg {
  display: none;
  margin-top: 20px;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  width: 140px;
  margin-bottom: 16px;
  opacity: 0.9;
  border-radius: 10px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 280px;
}
.footer-brand strong { color: rgba(255,255,255,0.85); }
.footer-links h4,
.footer-contact h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue); }
.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.social-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover {
  background: var(--blue);
  color: var(--white);
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== TIMELINE ===== */
.timeline {
  background: var(--light-bg);
  padding: 100px 24px 80px;
}
.timeline .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  transform: translateX(-50%);
}
.timeline-item {
  margin-bottom: 50px;
  position: relative;
  display: flex;
  gap: 40px;
}
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.timeline-marker {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}
.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--blue);
  border: 4px solid var(--light-bg);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--blue);
}
.timeline-content {
  flex: 1;
  background: var(--white);
  padding: 28px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left: 4px solid var(--blue);
}
.timeline-item:nth-child(odd) .timeline-content {
  border-left: none;
  border-right: 4px solid var(--blue);
}
.timeline-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.timeline-date {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.timeline-content > p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}
.timeline-subtitle {
  font-weight: 600 !important;
  color: var(--dark) !important;
  margin-top: 16px !important;
}
.timeline-highlight {
  background: rgba(26, 171, 240, 0.08);
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid var(--blue);
  font-weight: 500;
  color: var(--dark);
}
.timeline-list {
  list-style: none;
  margin-top: 12px;
}
.timeline-list li {
  font-size: 14px;
  color: var(--gray);
  padding: 6px 0 6px 24px;
  position: relative;
}
.timeline-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .concept-grid { grid-template-columns: 1fr; }
  .format-columns { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--blue-deeper);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-logo { width: 200px; }
  .hero-tagline { font-size: 16px; }
  .hero-desc { font-size: 15px; }
  .stat-num { font-size: 28px; }
  .hero-stats { gap: 28px; }
  .section-header h2 { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-box { padding: 40px 24px; }
  .competition-format { padding: 32px 24px; }
  .package-card.featured { transform: scale(1); }
  .timeline-container::before { left: 0; }
  .timeline-item { flex-direction: column !important; gap: 20px; }
  .timeline-item:nth-child(odd) { flex-direction: column !important; }
  .timeline-marker { width: 100%; }
  .timeline-content { border-left: 4px solid var(--blue) !important; border-right: none !important; }
  .timeline-dot { margin-left: 0; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
  .contact-box h2 { font-size: 24px; }
  .contact-details { flex-direction: column; align-items: center; }
}
