/* =========================================
   GLOBAL
========================================= */

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1e293b;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.section {
  padding: 90px 0;
  position: relative;
}

/* SUBTLE DIVIDER */

.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 92%;
  height: 1px;

  background: rgba(15,23,42,0.05);
}

.section:last-of-type::after {
  display: none;
}

.container.narrow {
  max-width: 820px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0f172a;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #475569;
}

/* =========================================
   NAVBAR
========================================= */

.navbar {
  background: #1e3a8a;
  padding: 8px 0;
  transition: 0.3s ease;
  z-index: 999;
}

.navbar.scrolled {
  background: rgba(30,58,138,0.95);
  backdrop-filter: blur(10px);
}

.logo-img {
  height: 60px;
}

/* NAV LINKS */

.nav-link {
  color: white !important;
  font-weight: 500;
  margin-left: 20px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #fbbf24 !important;
}

.nav-link.active {
  color: #fbbf24 !important;
}

/* LANGUAGE SWITCH */

.lang-switch {
  display: flex;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch a {
  color: white;
  padding: 8px 16px;
  font-weight: 600;
  transition: 0.3s;
}

.lang-switch a.active {
  background: #fbbf24;
  color: #1e3a8a;
}

/* HAMBURGER */

.custom-toggler {
  border: none;
  background: transparent;
  padding: 0;
}

.custom-toggler:focus {
  box-shadow: none;
}

.custom-toggler span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  margin: 6px 0;
  border-radius: 999px;
  transition: 0.3s;
}

/* =========================================
   HERO
========================================= */

.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  height: 100%;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* CONTENT */

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;
}

.hero-title {
  max-width: 920px;
  margin: 0 auto 18px;

  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero-sub {
  max-width: 760px;
  margin: 0 auto 24px;

  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-note {
  margin-top: 14px;
  font-size: 0.92rem;
  opacity: 0.82;
}

/* =========================================
   BUTTONS
========================================= */

.btn-primary-custom {
  background: #2563eb;
  color: white;

  padding: 13px 30px;
  border-radius: 10px;

  font-weight: 600;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background: #1d4ed8;
  color: white;

  transform: translateY(-2px);
}

.btn-light {
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
}

/* =========================================
   LIGHT SECTION
========================================= */

.bg-light {
  background: #f8fafc !important;
}

/* =========================================
   CARDS
========================================= */

.card-clean {
  background: white;

  padding: 42px 30px;
  border-radius: 18px;

  border: 1px solid rgba(15,23,42,0.06);

  transition: 0.3s;
  height: 100%;
}

.card-clean:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15,23,42,0.08);
}

.card-clean h5 {
  font-weight: 700;
  margin-bottom: 16px;
}

.card-clean p {
  color: #64748b;
  line-height: 1.8;
}

/* =========================================
   WHY GRID
========================================= */

.why-grid {
  gap: 28px;
}

#why .col-lg-3 {
  flex: 0 0 auto;
  width: 280px;
}

#why .col-lg-3 > div,
#why .col-lg-3 {
  background: #f8fafc;

  padding: 34px 24px;
  border-radius: 18px;

  border: 1px solid rgba(15,23,42,0.05);

  font-weight: 600;
  text-align: center;
}

/* =========================================
   PORTFOLIO
========================================= */

.portfolio-card {
  background: white;

  border-radius: 18px;
  overflow: hidden;
  position: relative;

  border: 1px solid rgba(15,23,42,0.06);

  transition: 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15,23,42,0.08);
}

.portfolio-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-content h6 {
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-content p {
  color: #64748b;
  margin: 0;
}

.portfolio-badge {
  position: absolute;
  top: 16px;
  right: 16px;

  background: rgba(15,23,42,0.8);
  color: white;

  padding: 6px 12px;
  border-radius: 999px;

  font-size: 0.8rem;
}

/* =========================================
   CONTACT
========================================= */

.contact-card,
.map-card {
  background: white;

  border-radius: 20px;
  padding: 36px;

  border: 1px solid rgba(15,23,42,0.06);

  height: 100%;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item span {
  font-size: 1.2rem;
}

.contact-item a {
  color: #2563eb;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;

  border: 0;
  border-radius: 14px;
}

/* =========================================
   FOOTER
========================================= */

.footer-minimal {
  background: #f1f5f9;
  padding: 26px 0 22px;

  border-top: 1px solid rgba(15,23,42,0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.footer-brand {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: white;
  border: 1px solid rgba(15,23,42,0.06);

  color: #1e3a8a;

  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #1e3a8a;
  color: white;

  transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 768px) {

  .footer-minimal {
    padding: 36px 0 30px;
  }

}

/* =========================================
   WHATSAPP FLOAT
========================================= */

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
}

.wa-float a {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #25D366;

  color: white;

  font-size: 30px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.18);

  transition: 0.3s ease;
}

.wa-float a:hover {
  transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 768px) {

  .wa-float {
    right: 18px;
    bottom: 18px;
  }

  .wa-float a {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }

}



/* MOBILE HERO FIX */
@media (max-width: 768px){

  .hero{
    min-height: auto;
    padding: 40px 0 55px;
    background-position: center center;
  }

  .hero-title{
font-size: 20px !important;
    line-height: 1.35;
    padding: 0 14px;
    margin-bottom: 22px;
  }

  .hero-sub{
    font-size: 15px;
    line-height: 1.7;
    padding: 0 18px;
    margin-bottom: 24px;
  }

  .hero-buttons{
    margin-top: 10px;
  }


.hero-buttons .btn{
    width: auto;
    min-width: 240px;
    padding: 13px 26px;
    border-radius: 10px;
}


}
