/* ===== VARIABLES ===== */
:root {
  --primary: #023e7d;
  --secondary: #0096c7;
  --accent: #e87722;
  --dark: #0a1628;
  --light: #f0f5fa;
  --white: #ffffff;
  --gray: #6c757d;
  --text: #2d3748;
  --border: #dee2e6;
}

/* ===== GLOBAL ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
}
a { text-decoration: none; transition: all 0.3s; }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar a { color: rgba(255,255,255,0.65); }
.top-bar a:hover { color: var(--secondary); }
.top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 25px;
}
.top-bar .contact-info li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.top-bar .contact-info i { color: var(--accent); font-size: 0.8rem; }
.top-bar .social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.top-bar .social-icons a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  transition: all 0.3s;
  font-size: 0.75rem;
}
.top-bar .social-icons a:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.main-navbar {
  background: white;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
}
.main-navbar .navbar {
  align-items: center;
}
.main-navbar.scrolled {
  padding: 4px 0;
  box-shadow: 0 4px 25px rgba(0,0,0,0.12);
}
.navbar-brand img {
  max-height: 260px;
  height: auto;
  width: auto;
  transition: max-height 0.3s;
}
.main-navbar.scrolled .navbar-brand img { max-height: 185px; }
.navbar-nav .nav-link {
  color: var(--primary) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 15px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
  border-radius: 2px;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--accent) !important; }
.navbar-toggler {
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(2, 62, 125, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
}
.dropdown-item {
  border-radius: 6px;
  padding: 8px 15px;
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 500;
  transition: all 0.2s;
}
.dropdown-item:hover {
  background: rgba(0,150,199,0.1);
  color: var(--secondary);
}

/* ===== HERO ===== */
.hero-section {
  height: 65vh;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
}
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item { height: 100%; }
.carousel-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.carousel-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,62,125,0.88) 0%, rgba(0,100,170,0.65) 60%, rgba(0,150,199,0.45) 100%);
}
.slide-1-bg {
  background: linear-gradient(135deg, #023e7d 0%, #0353a4 40%, #0096c7 100%);
}
/* Geometric pattern for slide 1 */
.slide-1-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,150,199,0.2) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(232,119,34,0.1) 0%, transparent 40%);
}
.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 860px;
  z-index: 10;
}
.slide-tag {
  display: inline-block;
  background: rgba(232,119,34,0.9);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 6px 22px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.carousel-caption-custom h1,
.carousel-caption-custom h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.carousel-caption-custom p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 35px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero-btn-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--accent);
  color: white;
  padding: 14px 38px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--accent);
  display: inline-block;
  transition: all 0.3s;
}
.btn-hero-primary:hover {
  background: transparent;
  color: var(--accent);
}
.btn-hero-outline {
  background: transparent;
  color: white;
  padding: 14px 38px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.6);
  display: inline-block;
  transition: all 0.3s;
}
.btn-hero-outline:hover {
  background: white;
  border-color: white;
  color: var(--primary);
}
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
}
.carousel-control-prev { left: 25px; }
.carousel-control-next { right: 25px; }
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  margin: 0 5px;
  opacity: 0.6;
  transition: all 0.3s;
}
.carousel-indicators .active {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 1;
  width: 30px;
  border-radius: 5px;
}
.scroll-down {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: floatBounce 2.5s ease-in-out infinite;
}
.scroll-down a {
  color: rgba(255,255,255,0.7);
  font-size: 1.6rem;
  display: block;
}
.scroll-down a:hover { color: var(--accent); }
@keyframes floatBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== SECTIONS GENERAL ===== */
section { padding: 85px 0; }
.section-label {
  display: inline-block;
  background: rgba(0,150,199,0.12);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(0,150,199,0.2);
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-divider {
  width: 55px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 14px 0 18px;
}
.section-divider.center { margin: 14px auto 18px; }
.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section { background: white; }
.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 20px 20px 60px rgba(2,62,125,0.18);
}
.exp-badge {
  position: absolute;
  bottom: -20px;
  left: -25px;
  background: var(--accent);
  color: white;
  padding: 22px 28px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(232,119,34,0.45);
  text-align: center;
  z-index: 5;
}
.exp-badge .num {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}
.exp-badge .lbl {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.9;
}
.about-img-accent {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border: 4px solid var(--secondary);
  border-radius: 16px;
  opacity: 0.3;
  z-index: 0;
}
.about-content { padding-left: 40px; }
.about-list { margin: 20px 0 30px; }
.about-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.about-list li:last-child { border-bottom: none; }
.about-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--secondary);
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 0.95rem;
}

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--secondary) 100%);
  padding: 65px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.stats-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(232,119,34,0.08);
}
.stat-item { text-align: center; padding: 15px 20px; position: relative; z-index: 1; }
.stat-icon-wrap {
  width: 65px;
  height: 65px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--accent);
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}
.stat-lbl {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.stat-sep {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  margin: 15px 0;
}

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--light); }
.service-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.07);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 65px rgba(2,62,125,0.18);
}
.service-card-img {
  height: 230px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img .img-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
}
.service-icon-badge {
  position: absolute;
  bottom: -22px;
  right: 25px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.15rem;
  box-shadow: 0 6px 20px rgba(232,119,34,0.4);
  z-index: 5;
}
.service-card-body {
  padding: 38px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--primary);
}
.service-card-body p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.btn-service-link {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  align-self: flex-start;
}
.btn-service-link:hover { color: var(--accent); gap: 12px; }

/* ===== WHY US ===== */
.why-section { background: white; }
.why-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 15px 15px 50px rgba(2,62,125,0.15);
  position: relative;
}
.why-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.why-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,62,125,0.6) 0%, transparent 50%);
}
.why-img-stat {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255,255,255,0.95);
  padding: 18px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
}
.why-img-stat .num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}
.why-img-stat .lbl {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.why-content { padding-left: 30px; }
.why-feature {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s;
}
.why-feature:hover { background: var(--light); }
.why-feat-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,150,199,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.why-feature:hover .why-feat-icon {
  background: var(--secondary);
  color: white;
}
.why-feat-text h5 {
  font-size: 0.98rem;
  margin-bottom: 4px;
  color: var(--primary);
}
.why-feat-text p {
  color: var(--gray);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-section { background: var(--light); }
.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-filter .btn-filter {
  background: white;
  color: var(--primary);
  border: 2px solid var(--border);
  padding: 8px 22px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-filter .btn-filter:hover,
.gallery-filter .btn-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  grid-auto-rows: 1fr;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,62,125,0.85) 0%, rgba(2,62,125,0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: 2.2rem; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 60%, #005f8c 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='110' viewBox='0 0 90 110'%3E%3Cpath d='M45 8 C45 8,12 50,12 68 C12 88 27 102 45 102 C63 102 78 88 78 68 C78 50 45 8 45 8Z' fill='rgba(255,255,255,0.04)' /%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 90px 110px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='110' viewBox='0 0 90 110'%3E%3Cpath d='M45 8 C45 8,12 50,12 68 C12 88 27 102 45 102 C63 102 78 88 78 68 C78 50 45 8 45 8Z' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1.5' /%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 90px 110px;
  background-position: 45px 55px;
  pointer-events: none;
}
.cta-section h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 35px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.cta-btns { position: relative; z-index: 1; }
.btn-cta {
  background: var(--accent);
  color: white;
  padding: 15px 42px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--accent);
  display: inline-block;
  transition: all 0.3s;
  margin: 6px;
}
.btn-cta:hover { background: transparent; color: var(--accent); }
.btn-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-cta-outline:hover { background: white; border-color: white; color: var(--primary); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 65px 0 0;
}
.footer-logo {
  display: block;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.6);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
  transform: translateY(-3px);
}
.footer-heading {
  color: white;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 2px;
  background: var(--accent);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }
.footer-links a i { font-size: 0.65rem; color: var(--accent); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  align-items: flex-start;
}
.footer-contact-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; font-size: 0.9rem; }
.footer-contact-item a { color: rgba(255,255,255,0.58); }
.footer-contact-item a:hover { color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--secondary); }
.footer-bottom a:hover { color: var(--accent); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--secondary) 100%);
  padding: 55px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(255,255,255,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(232,119,34,0.12) 0%, transparent 50%);
}
.page-header h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.page-header .breadcrumb {
  background: none;
  justify-content: center;
  margin: 0;
  position: relative;
  z-index: 1;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}
.page-header .breadcrumb-item.active { color: var(--accent); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* ===== ABOUT PAGE ===== */
.mission-card {
  background: white;
  border-radius: 14px;
  padding: 38px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.07);
  border-top: 4px solid var(--secondary);
  height: 100%;
  transition: transform 0.3s;
}
.mission-card:hover { transform: translateY(-6px); }
.mission-card .mc-icon {
  width: 58px;
  height: 58px;
  background: rgba(0,150,199,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}
.mission-card h4 { margin-bottom: 12px; font-size: 1.15rem; }
.mission-card p { color: var(--gray); font-size: 0.93rem; line-height: 1.75; margin: 0; }
.value-card {
  text-align: center;
  padding: 42px 28px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.35s;
  height: 100%;
}
.value-card:hover {
  background: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(2,62,125,0.28);
}
.value-card .vc-icon {
  width: 68px;
  height: 68px;
  background: rgba(0,150,199,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--secondary);
  margin: 0 auto 20px;
  transition: all 0.35s;
}
.value-card:hover .vc-icon { background: var(--accent); color: white; }
.value-card h5 { color: var(--primary); margin-bottom: 10px; transition: color 0.35s; font-size: 1.05rem; }
.value-card p { color: var(--gray); font-size: 0.88rem; transition: color 0.35s; margin: 0; line-height: 1.65; }
.value-card:hover h5,
.value-card:hover p { color: rgba(255,255,255,0.9); }
.team-card {
  text-align: center;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(2,62,125,0.15); }
.team-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.3);
}
.team-card-body { padding: 24px; }
.team-card-body h5 { margin-bottom: 4px; font-size: 1rem; }
.team-card-body span { color: var(--secondary); font-size: 0.85rem; font-weight: 500; }

/* ===== SERVICES PAGE ===== */
.service-detail {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 35px rgba(0,0,0,0.08);
  margin-bottom: 35px;
  transition: box-shadow 0.3s;
}
.service-detail:hover { box-shadow: 0 15px 55px rgba(2,62,125,0.15); }
.service-detail-img {
  height: 360px;
  overflow: hidden;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-detail:hover .service-detail-img img { transform: scale(1.04); }
.service-detail-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.25);
}
.service-detail-content { padding: 45px 40px; }
.service-detail-content .badge-num {
  background: var(--accent);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 18px;
}
.service-detail-content h3 { margin-bottom: 15px; font-size: 1.5rem; }
.service-detail-content p { color: var(--gray); margin-bottom: 22px; font-size: 0.95rem; }
.service-checklist { columns: 2; gap: 20px; }
.service-checklist li {
  padding: 6px 0 6px 26px;
  position: relative;
  color: var(--text);
  font-size: 0.9rem;
  break-inside: avoid;
}
.service-checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--secondary);
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.75rem;
}
.process-step {
  text-align: center;
  padding: 35px 20px;
  position: relative;
}
.process-num {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(2,62,125,0.3);
}
.process-step::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: rgba(2,62,125,0.15);
  z-index: 0;
}
.process-step:last-child::before { display: none; }
.process-step h5 { color: var(--primary); margin-bottom: 8px; font-size: 0.95rem; }
.process-step p { color: var(--gray); font-size: 0.85rem; margin: 0; }

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  background: white;
  border-radius: 14px;
  padding: 32px 25px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.07);
  text-align: center;
  height: 100%;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}
.contact-info-card:hover {
  border-bottom-color: var(--secondary);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(2,62,125,0.15);
}
.ci-icon {
  width: 62px;
  height: 62px;
  background: rgba(0,150,199,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  margin: 0 auto 20px;
}
.contact-info-card h5 { color: var(--primary); margin-bottom: 8px; font-size: 0.95rem; }
.contact-info-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.65; margin: 0; }
.contact-info-card a { color: var(--gray); }
.contact-info-card a:hover { color: var(--secondary); }
.contact-form-box {
  background: white;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 10px 45px rgba(0,0,0,0.1);
}
.contact-form-box .form-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.88rem;
  margin-bottom: 7px;
}
.contact-form-box .form-control,
.contact-form-box .form-select {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.93rem;
  color: var(--text);
  transition: all 0.3s;
}
.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0,150,199,0.12);
  outline: none;
}
.btn-submit {
  background: var(--primary);
  color: white;
  padding: 14px 45px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.btn-submit:hover { background: var(--accent); border-color: var(--accent); }
.map-placeholder {
  background: var(--light);
  border-radius: 14px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  color: var(--gray);
  border: 2px dashed var(--border);
}
.map-placeholder i { font-size: 3rem; color: var(--secondary); opacity: 0.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-content { padding-left: 0; margin-top: 40px; }
  .why-content { padding-left: 0; margin-top: 35px; }
  .service-checklist { columns: 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-box { padding: 35px 25px; }
  .main-navbar { background: var(--primary); }
  .main-navbar.scrolled { background: var(--primary); }
  .navbar-nav .nav-link { color: rgba(255,255,255,0.85) !important; }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active { color: white !important; }
  .navbar-toggler { border-color: rgba(255,255,255,0.6); }
  .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
  .navbar-collapse { background: var(--primary); padding: 10px 0; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero-section { height: 70vh; min-height: 520px; padding: 0; }
  .carousel-caption-custom { top: 58%; width: 92%; }
  .navbar-brand img { max-height: 160px; }
  .main-navbar.scrolled .navbar-brand img { max-height: 125px; }
  .carousel-control-prev { left: 10px; }
  .carousel-control-next { right: 10px; }
  .about-img-wrap img { height: 320px; }
  .exp-badge { left: 0; bottom: -15px; padding: 15px 20px; }
  .service-detail-content { padding: 30px 25px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-sep { display: none; }
  .top-bar .contact-info { display: none !important; }
  .process-step::before { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-btn-group { flex-direction: column; align-items: center; }
  .cta-btns .btn-cta { display: block; margin: 8px auto; max-width: 280px; }
}
