/* ========================================
   TerraMind Academy — Global Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary:       #27ae60;
  --primary-dark:  #1e8449;
  --primary-light: #d5f5e3;
  --secondary:     #2c3e50;
  --text:          #333333;
  --text-light:    #666666;
  --bg:            #ffffff;
  --bg-light:      #f8fafb;
  --border:        #e8ecef;
  --shadow:        0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover:  0 8px 32px rgba(39,174,96,0.18);
  --radius:        12px;
  --transition:    all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.3;
}

p { font-weight: 300; color: var(--text); }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

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

/* ====== NAVBAR ====== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand span.brand-accent {
  color: var(--primary);
}

.navbar-brand .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text) !important;
  padding: 0.6rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition);
}

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

.navbar-toggler { border: none; outline: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ====== BUTTONS ====== */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #fff;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

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

.btn-outline-green {
  background: transparent;
  color: var(--primary);
  padding: 11px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

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

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(39,174,96,0.85) 0%, rgba(44,62,80,0.90) 100%),
              url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

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

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.hero h1 span { color: #a9dfbf; }

.hero p {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 580px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-badge i { color: #a9dfbf; }

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

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 3rem;
}

.section-bg { background: var(--bg-light); }

/* ====== CARDS ====== */
.card-custom {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

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

.card-custom h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--secondary);
}

.card-custom p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ====== STATS ====== */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 70px 0;
}

.stat-item { text-align: center; padding: 20px; }

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
  font-weight: 300;
}

.stat-icon {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

/* ====== INFO SECTION ====== */
.info-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.info-img:hover img { transform: scale(1.03); }

.info-text h2 { margin-bottom: 1rem; }

.info-text p { margin-bottom: 1.2rem; font-size: 0.97rem; }

.check-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
}

.check-list li i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ====== CTA SECTION ====== */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 { color: #fff; font-size: 2.2rem; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }

/* ====== BLOG CARDS ====== */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-body h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary);
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.blog-meta i { color: var(--primary); }

/* ====== PAGE HERO ====== */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a3a2a 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero h1 { color: #fff; margin-bottom: 1rem; }

.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb-custom a { color: rgba(255,255,255,0.8); }
.breadcrumb-custom a:hover { color: #fff; }
.breadcrumb-custom span { color: rgba(255,255,255,0.5); }

/* ====== CONTACT ====== */
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 500;
}

.form-custom .form-control {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.93rem;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.form-custom .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(39,174,96,0.12);
  outline: none;
}

.form-custom label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ====== FAQ ====== */
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--secondary);
  transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-question .faq-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-question .faq-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ====== TEAM CARDS ====== */
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

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

.team-card-img {
  height: 240px;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-img img { transform: scale(1.05); }

.team-card-body { padding: 20px; }

.team-card-body h5 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.team-card-body p { font-size: 0.85rem; color: var(--primary); font-weight: 500; }

/* ====== VALUE CARDS ====== */
.value-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.value-card .value-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 14px;
}

/* ====== COURSE CARDS ====== */
.course-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.course-card-img {
  height: 200px;
  overflow: hidden;
}

.course-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-card-img img { transform: scale(1.06); }

.course-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.badge-tech    { background: #dbeafe; color: #1d4ed8; }
.badge-design  { background: #fce7f3; color: #be185d; }
.badge-market  { background: #fef3c7; color: #92400e; }
.badge-dev     { background: #d1fae5; color: #065f46; }
.badge-lang    { background: #ede9fe; color: #5b21b6; }

.course-card-body h5 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }

.course-card-body p { font-size: 0.88rem; color: var(--text-light); flex: 1; margin-bottom: 14px; }

.course-meta {
  display: flex;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.course-meta i { color: var(--primary); }

/* ====== ARTICLE ====== */
.article-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.5rem; }
.article-content h3 { margin-top: 2rem; margin-bottom: 0.8rem; font-size: 1.25rem; }
.article-content p { margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.8; }
.article-content ul, .article-content ol { margin: 1rem 0 1.2rem 1.5rem; }
.article-content li { margin-bottom: 0.6rem; font-size: 0.97rem; line-height: 1.7; }
.article-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  background: var(--primary-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--secondary);
}

.article-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.article-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 2rem 0;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-info h6 { font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.author-info span { font-size: 0.8rem; color: var(--text-light); }

/* ====== COOKIE BANNER ====== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a252f;
  color: #fff;
  z-index: 9999;
  padding: 16px 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  flex: 1;
  min-width: 260px;
}

.cookie-banner a { color: var(--primary); }

.cookie-btn-accept {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}

.cookie-btn-accept:hover { background: var(--primary-dark); }

.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}

.cookie-btn-decline:hover { color: #fff; border-color: #fff; }

/* ====== FOOTER ====== */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-brand .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.footer h5 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.footer ul { list-style: none; padding: 0; }

.footer ul li { margin-bottom: 10px; }

.footer ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer ul li a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

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

/* ====== POLICY PAGES ====== */
.policy-content h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--secondary); }
.policy-content h3 { font-size: 1.15rem; margin-top: 1.8rem; margin-bottom: 0.7rem; }
.policy-content p { margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; color: var(--text); }
.policy-content ul { margin: 0.8rem 0 1rem 1.5rem; }
.policy-content ul li { margin-bottom: 0.5rem; font-size: 0.95rem; color: var(--text); }

/* ====== UTILITIES ====== */
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }

.mb-section { margin-bottom: 3rem; }
.mt-section { margin-top: 3rem; }

.divider {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.divider-left {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 0 1.5rem;
}

/* ====== ABOUT PAGE ====== */
.about-mission {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
  text-align: center;
}

.about-mission h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.8rem; }
.about-mission p { color: rgba(255,255,255,0.9); font-size: 1.05rem; }

.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  opacity: 0.3;
}

.timeline-item { position: relative; margin-bottom: 30px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.timeline-item h5 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.timeline-item p { font-size: 0.88rem; color: var(--text-light); }

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

.fade-in-up { animation: fadeInUp 0.6s ease both; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
  section { padding: 60px 0; }
  .hero { min-height: 75vh; }
  .info-img img { height: 300px; }
}

@media (max-width: 767px) {
  section { padding: 50px 0; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-buttons .btn-primary-custom,
  .hero-buttons .btn-outline-custom { width: 100%; text-align: center; }
  .stats-section { padding: 50px 0; }
  .stat-item { padding: 16px; }
  .cta-section h2 { font-size: 1.7rem; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner p { min-width: auto; }
  .map-container { height: 280px; }
  .article-hero-img img { height: 260px; }
}

@media (max-width: 575px) {
  .container { padding: 0 16px; }
  .card-custom { padding: 24px 20px; }
  .contact-card { padding: 24px 20px; }
}
