/* ================================================
   RESET & BASE
================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; font-size: 16px; color: #555555; line-height: 1.75; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ================================================
   CSS VARIABLES
================================================ */
:root {
  --primary: #1a56db;
  --primary-dark: #1e3a8a;
  --accent: #f59e0b;
  --gradient: linear-gradient(-51deg, #1e3a8a, #1a56db);
  --gradient-accent: linear-gradient(-51deg, #d97706, #f59e0b);
  --dark: #1a1a1a;
  --dark2: #222222;
  --text-dark: #1e293b;
  --text-body: #555555;
  --text-light: #777777;
  --bg-light: #f0f4ff;
  --bg-white: #ffffff;
  --border: #dbeafe;
  --shadow: 0 5px 25px rgba(26,86,219,0.10);
  --shadow-hover: 0 10px 40px rgba(26,86,219,0.18);
}

/* ================================================
   CONTAINER
================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ================================================
   BUTTONS
================================================ */
.btn-primary {
  display: inline-block;
  background: var(--gradient);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary:hover {
  box-shadow: 0 10px 25px rgba(26, 86, 219, 0.45);
  transform: translateY(-2px);
}
.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  padding: 13px 35px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--primary) !important;
  border-color: #fff;
}
.btn-mt { margin-top: 32px; }

/* ================================================
   SECTION TITLES
================================================ */
.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title h2,
.goals-left h2,
.goals-right h2,
.about-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-title p { color: var(--text-body); max-width: 600px; }
.section-title.text-center { text-align: center; }
.section-title.text-center p { margin: 0 auto; }

/* Section heading used as standalone H2 (replaces label + subtitle) */
h2.section-label-h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

/* White variant */
.section-title.white .section-label { color: rgba(255,255,255,0.7); }
.section-title.white h2 { color: #fff; }

/* ================================================
   TOP BAR
================================================ */
.topbar {
  background: #0f1e50;
  padding: 9px 0;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.language-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #aaa;
  cursor: pointer;
  padding: 4px 0;
}
.flag-icon { width: 20px; height: auto; }
.language-selector span { color: #ccc; font-size: 13px; }
.language-selector .fas { font-size: 10px; color: #888; }
.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #2a2a2a;
  min-width: 100px;
  z-index: 200;
  border-top: 2px solid var(--primary);
  padding: 5px 0;
}
.language-selector:hover .lang-dropdown { display: block; }
.lang-dropdown li a {
  display: block;
  padding: 7px 15px;
  color: #ccc;
  font-size: 13px;
  transition: color 0.2s;
}
.lang-dropdown li a:hover { color: var(--primary); }
.topbar-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}
.topbar-tagline .fas {
  color: var(--accent);
}
.topbar-tagline span { color: rgba(255,255,255,0.75); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.topbar-phone, .topbar-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: 13px;
}
.topbar-phone .fas, .topbar-cart .fas { color: var(--primary); font-size: 13px; }
.topbar-phone a { color: #ccc; }
.topbar-phone a:hover, .topbar-cart:hover { color: var(--primary); }

/* ================================================
   HEADER
================================================ */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
}
.logo {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-right: auto;
}
.logo img {
  height: 140px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* NAV */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 16px;
  height: 85px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--primary); }
.nav-arrow { font-size: 10px; margin-left: 2px; transition: transform 0.3s; }
.nav-menu > li:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
  border-top: 3px solid var(--primary);
  z-index: 200;
  padding: 8px 0;
}
.nav-menu > li:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #555;
  transition: all 0.2s;
}
.dropdown li a:hover {
  color: var(--primary);
  padding-left: 26px;
  background: #fafafa;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  width: 100%;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO
================================================ */
.hero-section {
  position: relative;
  height: 760px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.65);
}
.hero-content-wrap {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 680px; }
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 540px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  border: 2px solid rgba(255,255,255,0.3);
}
.hero-arrow:hover { background: var(--primary); border-color: var(--primary); }
.hero-prev { left: 25px; }
.hero-next { right: 25px; }

/* ================================================
   MINI SERVICES
================================================ */
.mini-services-section {
  background: #fff;
  padding: 0;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-hover);
}
.mini-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mini-service-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 38px 28px;
  border-right: 1px solid #f0f0f0;
  transition: background 0.3s;
}
.mini-service-card:last-child { border-right: none; }
.mini-service-card:hover { background: var(--bg-light); }
.mini-service-icon { flex-shrink: 0; }
.mini-service-icon img { width: 55px; height: auto; }
.mini-service-icon .mini-icon-fa {
  font-size: 48px;
  color: #f59e0b;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-service-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.mini-service-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 12px;
}
.read-more-link {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.read-more-link:hover { gap: 10px; }

/* ================================================
   ABOUT
================================================ */
.about-section {
  background: var(--bg-light);
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img { border-radius: 4px; }
.about-content { }
.about-content h2 { margin-top: 12px; }
.about-content > p { color: var(--text-body); margin-bottom: 6px; }
.about-content .mt-4 { margin-top: 16px; }

/* ================================================
   SUPPORT BANNER
================================================ */
.support-banner {
  background: linear-gradient(rgba(15,15,15,0.82), rgba(15,15,15,0.82)),
    url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  padding: 65px 0;
}
.support-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.support-text .support-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}
.support-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* ================================================
   SERVICES
================================================ */
.services-section {
  background: #fff;
  padding: 100px 0;
}
.services-section .section-title { margin-bottom: 50px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
  border-top: 4px solid var(--primary);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-top-color: var(--accent);
}
.service-img-wrap { position: relative; overflow: hidden; }
.service-img-wrap img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.07); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,86,219,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover .service-img-overlay { opacity: 1; }
.service-img-overlay a {
  color: #fff;
  font-size: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-body { padding: 32px 26px; }
.service-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-body p { font-size: 14px; color: var(--text-body); margin-bottom: 16px; line-height: 1.7; }
.service-detail-link {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-detail-link:hover { gap: 10px; }

/* ================================================
   WHATSAPP CTA SECTION
================================================ */
.whatsapp-section {
  background: linear-gradient(rgba(15,30,80,0.88), rgba(15,30,80,0.88)),
    url('assets/5.jpg') center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
}
.whatsapp-section .section-label { color: var(--accent); }
.whatsapp-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}
.whatsapp-section p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff !important;
  padding: 17px 42px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 30px rgba(37,211,102,0.35);
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37,211,102,0.50);
}
.btn-whatsapp i { font-size: 22px; }
.whatsapp-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.wf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.wf-item i {
  color: var(--accent);
  font-size: 18px;
}

/* ================================================
   TESTIMONIALS
================================================ */
.testimonials-section {
  background: var(--bg-light);
  padding: 100px 0;
}
.testimonials-section .section-title { margin-bottom: 50px; }
.testimonials-wrapper { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.testimonial-card .testimonial-body {
  max-width: 700px;
  width: 100%;
  text-align: center;
}
.testimonial-video { border-radius: 6px; overflow: hidden; }
.yt-placeholder {
  position: relative;
  display: block;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
}
.yt-placeholder img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.yt-placeholder:hover img { opacity: 1; }
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s, background 0.3s;
  padding-left: 4px;
}
.yt-play:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--primary-dark); }
.testimonial-body {
  background: #fff;
  padding: 35px 35px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.testimonial-body p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid #f0f0f0;
}
.testimonial-author strong {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-author span {
  font-size: 13px;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 35px;
}
.testi-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.testi-dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}

/* ================================================
   GOALS + SKILLS
================================================ */
.goals-section {
  background: #fff;
  padding: 100px 0;
}
.goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.goals-left .section-label, .goals-right .section-label { margin-bottom: 10px; }
.goals-left p, .goals-right p {
  color: var(--text-body);
  margin-top: 14px;
  margin-bottom: 30px;
  font-size: 15px;
}
.goal-items { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.goal-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.goal-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.goal-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.goal-info p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* Skills */
.skills-wrapper { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.skill-item {}
.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.skill-header h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.skill-header span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.skill-bar {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  width: 0;
  background: var(--gradient);
  border-radius: 10px;
  transition: width 1.5s ease;
}

/* ================================================
   PROJECTS
================================================ */
.projects-section {
  background: var(--bg-light);
  padding: 100px 0;
}
.projects-section .section-title { margin-bottom: 50px; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.project-card { border-radius: 6px; overflow: hidden; }
.project-img-wrap { position: relative; overflow: hidden; }
.project-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.project-card:hover .project-img-wrap img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,86,219,0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.4s;
  padding: 20px;
  text-align: center;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-tags {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.project-overlay h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.project-ext-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  margin-top: 6px;
  transition: background 0.3s;
}
.project-ext-link:hover { background: rgba(255,255,255,0.2); }
.section-cta-center { text-align: center; margin-top: 50px; }

/* ================================================
   STATISTICS
================================================ */
.stats-section {
  background: linear-gradient(rgba(20,20,20,0.9), rgba(20,20,20,0.9)),
    url('https://images.unsplash.com/photo-1567427017947-545c5f8d16ad?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
  padding: 90px 0;
}
.stats-section .section-title { margin-bottom: 55px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-item { text-align: center; }
.stat-num-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 10px;
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-plus {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ================================================
   NEWSLETTER
================================================ */
.newsletter-section {
  background: var(--bg-light);
  padding: 90px 0;
}
.newsletter-section .section-title { margin-bottom: 35px; }
.newsletter-form {
  display: flex;
  max-width: 580px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  height: 56px;
  padding: 0 22px;
  border: 2px solid #e0e0e0;
  border-right: none;
  border-radius: 50px 0 0 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #555;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form .btn-primary {
  border-radius: 0 50px 50px 0;
  padding: 0 35px;
  height: 56px;
}

/* ================================================
   BLOG
================================================ */
.blog-section {
  background: #fff;
  padding: 100px 0;
}
.blog-section .section-title { margin-bottom: 50px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.blog-img-wrap { position: relative; overflow: hidden; }
.blog-img-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-date {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  text-align: center;
  line-height: 1.2;
}
.blog-date span { display: block; font-family: 'Poppins', sans-serif; }
.blog-date span:first-child { font-size: 22px; font-weight: 700; }
.blog-date span:last-child { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.blog-body { padding: 24px 22px; }
.blog-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
}
.blog-meta span {
  font-size: 12px;
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-meta .fas { color: var(--primary); font-size: 11px; }
.blog-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 12px;
}
.blog-body h3 a { color: inherit; }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body > p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 18px; }
.blog-read-more {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-read-more:hover { gap: 10px; }

/* ================================================
   MAP SECTION
================================================ */
.map-section {
  padding: 80px 0;
  background: #f8faff;
}
.map-section .section-title { margin-bottom: 48px; }
.map-wrapper {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Image + label overlay */
.map-img-wrapper {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,86,219,0.14);
}
.europe-map-img {
  width: 100%;
  height: auto;
  display: block;
}
.map-labels-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ml {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  color: #facc15;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(5px, 0.8vw, 10px);
  font-weight: 700;
  text-shadow:
    0 0 3px rgba(0,0,0,1),
    0 0 6px rgba(0,0,0,0.9),
    1px 1px 2px rgba(0,0,0,1);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.02em;
}
/* Highlighted service countries — slightly larger & brighter */
.ml.ml-highlight {
  color: #fbbf24;
  font-size: clamp(6px, 0.95vw, 12px);
  text-shadow:
    0 0 4px rgba(0,0,0,1),
    0 0 8px rgba(0,0,0,0.9),
    0 0 12px rgba(251,191,36,0.4),
    1px 1px 3px rgba(0,0,0,1);
}

.map-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-body);
  font-family: 'Poppins', sans-serif;
}
.map-legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}
.map-legend-dot.active {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.25);
}
.map-legend-dot.inactive { background: #1e3a8a; }
.map-countries {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.map-country-tag {
  background: rgba(245,158,11,0.10);
  color: #78350f;
  border: 1.5px solid var(--accent);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.map-country-tag:hover { background: rgba(245,158,11,0.20); }
.map-country-tag .fas { color: var(--accent); font-size: 11px; }

/* ================================================
   PARTNERS
================================================ */
.partners-section {
  background: var(--bg-light);
  padding: 55px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.partners-overflow {
  overflow: hidden;
  width: 100%;
}
.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partnersScroll 18s linear infinite;
}
.partner-logo {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.3s;
  /* margin-right instead of gap so last item also gets space → seamless loop */
  margin-right: 60px;
}
.partner-logo:hover { opacity: 1; }
.partner-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.partner-logo:hover img { filter: none; }
@keyframes partnersScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ================================================
   FOOTER PRE
================================================ */
.footer-pre {
  background: #0f1e50;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-pre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.footer-pre-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.footer-pre-item:first-child { padding-left: 0; }
.footer-pre-item:last-child { border-right: none; padding-right: 0; }
.fp-center { }
.fp-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.fp-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.fp-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 14px;
}
.fp-link {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fp-link:hover { gap: 10px; }
.fp-btn { padding: 10px 24px; font-size: 12px; }

/* ================================================
   FOOTER MAIN
================================================ */
.footer-main {
  background: #111111;
  padding: 80px 0 50px;
}
.footer-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.footer-col {
  min-width: 160px;
}
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  padding-bottom: 12px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.footer-col ul li a .fas {
  font-size: 11px;
  color: var(--primary);
}
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}
.contact-list li .fas {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-list li a { color: inherit; }
.contact-list li a:hover { color: var(--primary); }
.footer-logo { margin-bottom: 18px; }
.footer-logo img { height: 50px; width: auto; filter: brightness(0) invert(1); }
.footer-about-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--gradient);
  color: #fff;
  transform: translateY(-2px);
}

/* ================================================
   FOOTER BOTTOM
================================================ */
.footer-bottom {
  background: #0a0a0a;
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ================================================
   SCROLL ANIMATIONS
================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1100px) {
  .nav-menu > li > a { padding: 0 11px; font-size: 13px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .goals-grid { grid-template-columns: 1fr; gap: 50px; }
  .mini-services-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-service-card:nth-child(2) { border-right: none; }
  .mini-service-card:nth-child(3) { border-right: 1px solid #f0f0f0; border-top: 1px solid #f0f0f0; }
  .mini-service-card:nth-child(4) { border-top: 1px solid #f0f0f0; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-pre-grid { grid-template-columns: 1fr; }
  .footer-pre-item { border-right: none; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-pre-item:last-child { border-bottom: none; }
  .testimonial-card { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* Header */
  .header-inner { height: 80px; }
  .logo img { height: 70px; }
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 998;
    max-height: 80vh;
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .nav-menu { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-menu > li > a { height: auto; padding: 13px 20px; border-bottom: 1px solid #f0f0f0; }
  .dropdown { display: none !important; position: static; box-shadow: none; border-top: none; background: #f9f9f9; padding: 0; }
  .dropdown.open { display: block !important; }
  .dropdown li a { padding-left: 35px; }
  .has-dropdown.active-mobile > .dropdown { display: block !important; }
  /* Topbar */
  .topbar-right { gap: 14px; }
  .topbar-cart span { display: none; }
  .topbar-email { display: none; }
  /* Hero */
  .hero-content h1 { font-size: 32px; }
  .hero-section { height: 560px; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-btns a { width: 100%; text-align: center; justify-content: center; }
  /* Sections */
  .section-title h2, .goals-left h2, .goals-right h2, .about-content h2 { font-size: 26px; }
  .support-text h2 { font-size: 22px; }
  .support-inner { flex-direction: column; gap: 24px; text-align: center; }
  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-image img { width: 100%; height: 280px; object-fit: cover; border-radius: 10px; }
  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-number { font-size: 36px; }
  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  /* Portfolio */
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  /* Whatsapp */
  .whatsapp-section { padding: 70px 0; }
  .whatsapp-section h2 { font-size: 26px; }
  .whatsapp-features { gap: 20px; flex-wrap: wrap; justify-content: center; }
  /* Footer */
  .footer-grid { flex-direction: column; align-items: center; gap: 40px; text-align: center; }
  .footer-col { width: 100%; max-width: 280px; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-col ul li a { justify-content: center; }
  .contact-list li { justify-content: center; }
  .footer-col ul li a:hover { padding-left: 0; }
  /* Map */
  .map-wrapper { max-width: 100%; }
  .map-countries { gap: 8px; }
  .map-country-tag { font-size: 12px; padding: 4px 12px; }
}

@media (max-width: 576px) {
  /* Header */
  .header-inner { height: 70px; }
  .logo img { height: 60px; }
  .main-nav { top: 70px; }
  /* Topbar */
  .topbar-phone { display: none; }
  .topbar-tagline span { display: none; }
  /* Hero */
  .hero-content h1 { font-size: 26px; }
  .hero-section { height: 520px; }
  /* Mini services */
  .mini-services-grid { grid-template-columns: 1fr; }
  .mini-service-card { border-right: none; border-bottom: 1px solid #f0f0f0; }
  .mini-service-card:last-child { border-bottom: none; }
  /* Portfolio */
  .projects-grid { grid-template-columns: 1fr; }
  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-number { font-size: 32px; }
  .stats-section { padding: 60px 0; }
  /* Newsletter */
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 2px solid #e0e0e0; border-radius: 50px; margin-bottom: 10px; }
  .newsletter-form .btn-primary { border-radius: 50px; width: 100%; justify-content: center; display: flex; }
  /* Whatsapp */
  .whatsapp-section h2 { font-size: 22px; }
  .whatsapp-section p { font-size: 14px; }
  .whatsapp-features { flex-direction: column; align-items: center; gap: 14px; }
  .btn-whatsapp { padding: 14px 28px; font-size: 14px; width: 100%; justify-content: center; }
  /* Map legend */
  .map-legend { flex-direction: column; gap: 10px; align-items: flex-start; padding-left: 10px; }
  /* Depoimentos */
  .testi-dots { margin-top: 20px; }
  /* Footer */
  .footer-main { padding: 50px 0 30px; }
  .footer-grid { gap: 30px; }
  .footer-bottom p { font-size: 12px; text-align: center; }
}

/* ================================================
   LIGHTBOX
================================================ */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lbFadeIn 0.25s ease;
}
.lightbox-overlay.active { display: flex; }
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
  max-height: 92vh;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6);
  display: block;
  animation: lbZoomIn 0.25s ease;
}
@keyframes lbZoomIn {
  from { transform: scale(0.93); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  margin-top: 14px;
  text-align: center;
  letter-spacing: 0.5px;
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10000;
  font-family: sans-serif;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

/* zoom cursor on portfolio images */
[data-lightbox] { cursor: zoom-in; }
