/* =============================
   GLOBAL ELEGANT THEME (JENS)
   ============================= */

/* --- Font & Warna Dasar --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #002a5c;
  --accent-color: #fca311;
  --text-color: #333;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

/* --- Reset CSS --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* =============================
   FIXED CLEAN NAVBAR
============================= */

.navbar{
  width:100%;
  background:var(--primary-color);
  padding:12px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:sticky;
  top:0;
  z-index:2000;  /* MENU DI DEPAN SEMUA */
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.logo img{
  height:55px;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:22px;
  align-items:center;
}

.nav-links li a{
  color:#fff;
  font-weight:500;
  padding:8px 10px;
  border-radius:6px;
  transition:all .2s;
}

.nav-links li a:hover,
.nav-links li a.active{
  color:var(--accent-color);
}

/* ADMIN BUTTON */
.nav-links .admin-link{
  background:var(--accent-color);
  color:var(--primary-color) !important;
  font-weight:700;
  padding:7px 16px;
  border-radius:20px;
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:30px;
  color:#fff;
  cursor:pointer;
}

/* MOBILE NAV */
@media(max-width:768px){

  .nav-links{
      position:fixed;
      top:70px;
      right:-260px;
      width:240px;
      height:100vh;
      background:#002a5c;
      padding:25px 20px;
      display:flex;
      flex-direction:column;
      gap:18px;
      transition:0.3s ease;
      z-index:5000;
  }

  .nav-links.open{
      right:0;
  }

  .nav-links li {
      width:100%;
  }

  .nav-links li a{
      display:block;
      width:100%;
      color:white;
      padding:12px 14px;
  }

  .hamburger{
      display:block;
  }
}



/* =============================
   HERO SECTION
============================= */
.hero {
  background: linear-gradient(rgba(0, 42, 92, 0.8), rgba(0, 42, 92, 0.8)),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 130px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.hero .btn-primary:hover {
  background-color: #ffb733;
}


/* =============================
   ABOUT SECTION CENTERED
============================= */
#about {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

#about p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-top: 20px;
}

/* =============================
   SECTION TITLES
============================= */
section {
  padding: 80px 20px;
}

.heading {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 50px;
  position: relative;
}

.heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* =============================
   SERVICES
============================= */
.service-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  width: 280px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #003d80;
  color: #fff;
  font-size: 1.8rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #6c757d;
}

/* =============================
   CLIENTS
============================= */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.client-logos img {
  width: 140px;
  height: auto;
  filter: saturate(110%) brightness(1);
  transition: all 0.3s ease;
}

.client-logos img:hover {
  transform: scale(1.08);
  filter: saturate(130%) brightness(1.1);
}

/* =============================
   FIX GALLERY MODERN CLEAN
============================= */

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.gallery-tabs .tab {
    background: #003d80;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.gallery-tabs .tab.active {
    background: var(--accent-color);
    color: #003d80;
}

#galleryContent{
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 10px;
    scroll-behavior: smooth;
}

#galleryContent::-webkit-scrollbar {
    height: 8px;
}

#galleryContent::-webkit-scrollbar-thumb {
    background: #003d80;
    border-radius: 5px;
}

.gallery-photo {
    width: 240px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.gallery-photo:hover {
    transform: scale(1.05);
}

/* Mobile */
@media(max-width:768px){
    .gallery-photo {
        width: 190px;
        height: 130px;
    }
}


/* =============================
   CONTACT
============================= */
.contact-section {
  padding: 60px 20px;
  background: #f0f4f8;
}

.container-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.map-container {
  flex: 1 1 45%;
}

.form-container {
  flex: 1 1 45%;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border-radius: 20px;
  border: 1px solid #ccc;
}

form button {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  background: #003d80;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

form button:hover {
  background: #002a5c;
}

/* =============================
   TEAM
============================= */
#team-wrapper {
  background-color: #003d80;
  padding: 80px 20px;
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.team-title h2,
.team-title p {
  color: #ffffff;
  margin-bottom: 50px;
}

.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.team-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-card h5 {
  font-weight: bold;
  margin-bottom: 5px;
}

.team-card .team-role {
  color: #003d80;
  font-size: 0.9rem;
}

.team-card p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 10px 0;
}

/* =============================
   FAQ
============================= */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.faq-item {
  background: #fff;
  border: 1px solid #cce0ff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #003d80;
  border: none;
  outline: none;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  margin: 15px 0;
  color: #333;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* =============================
   FOOTER
============================= */
footer {
  background-color: #003d80;
  color: #fff;
  padding: 40px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #fca311;
}

.footer-section p,
.footer-section ul li {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 8px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #ffcc00;
}

/* Sosial Media */
.footer-social {
  margin-top: 10px;
}

.footer-social a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 12px;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  color: #ffcc00;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
}

/* =============================
   BACK TO TOP
============================= */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #003d80;
  color: #fff;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 18px;
  display: none;
  z-index: 1000;
  cursor: pointer;
}

#back-to-top:hover {
  background-color: #ffcc00;
  color: #003d80;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 767px) {
  .service-card, .team-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
}

/* ============================= 
   BLOG SECTION (PUBLIC) 
============================= */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card .blog-content {
  padding: 20px;
}

.blog-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.blog-card a.read-more {
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.blog-card a.read-more:hover {
  background-color: #ffb733;
}

/* BLOG DETAIL */
.blog-detail {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.blog-detail img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.blog-detail h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.blog-detail p.date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.blog-detail p.content {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .blog-container {
    flex-direction: column;
    align-items: center;
  }
  .blog-card {
    width: 100%;
    max-width: 350px;
  }
}

.btn-back-home {
  display: inline-block;
  background-color: #002a5c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 20px;
  transition: background-color 0.3s;
}

.btn-back-home:hover {
  background-color: #fca311;
  color: #002a5c;
}

.admin-buttons-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  justify-content: center;
}

.btn-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100px;
  padding: 12px 0;
  background-color: #003d80;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  cursor: pointer;
  border: none;
}

.btn-modern i {
  font-size: 1.5rem;
}

/* Hover effect */
.btn-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

/* Warna spesifik tombol */
.btn-modern.home { background-color: #003d80; }
.btn-modern.home:hover { background-color: #fca311; color: #003d80; }

.btn-modern.refresh { background-color: #6c757d; }
.btn-modern.refresh:hover { background-color: #495057; }

.btn-modern.logout { background-color: #dc3545; }
.btn-modern.logout:hover { background-color: #a71d2a; }

.btn-modern.export { background-color: #28a745; }
.btn-modern.export:hover { background-color: #1e7e34; }

.btn-modern.blog { background-color: #17a2b8; }
.btn-modern.blog:hover { background-color: #117a8b; }

/* Responsive */
@media (max-width: 600px) {
  .btn-modern {
    width: 80px;
    font-size: 0.8rem;
  }
  .btn-modern i {
    font-size: 1.2rem;
  }
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #007BFF; /* Biru modern */
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #0056b3; /* Biru lebih gelap saat hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ================================
   BEAUTIFUL GALLERY TABS (JENS)
================================ */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: 25px;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: var(--primary-color);
  color: white;
}

.tab-btn.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.gallery-photo {
  width: 250px;
  border-radius: 10px;
  margin: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-photo:hover {
  transform: scale(1.05);
}

/* ================================
   GALLERY CATEGORY BUTTONS MODERN
================================ */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.gallery-tabs .tab {
    background: #003d80;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.gallery-tabs .tab:hover {
    background: #0054b3;
    transform: translateY(-3px);
}

.gallery-tabs .tab.active {
    background: #fca311;
    color: #003d80;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* =====================================
   GALLERY IMAGE STYLING MODERN ELEGANT
===================================== */
.gallery-photo {
    width: 260px;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-photo:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* =====================================
   GALLERY GRID – RESPONSIVE & CLEAN
===================================== */
#galleryContent {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px;
    scroll-behavior: smooth;
}

#galleryContent::-webkit-scrollbar {
    height: 10px;
}

#galleryContent::-webkit-scrollbar-thumb {
    background: #003d80;
    border-radius: 6px;
}

#galleryContent::-webkit-scrollbar-track {
    background: #e4e6eb;
}

/* =====================================
   MOBILE RESPONSIVE FIX
===================================== */
@media (max-width: 768px) {
    .gallery-photo {
        width: 200px;
        height: 140px;
    }

    .gallery-tabs .tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

.progress-area {
    width: 100%;
    background: #ddd;
    height: 10px;
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #fca311;
    transition: width 0.2s;
}

.tarif-section {
    text-align: center;
    padding: 50px 20px;
}

.tarif-section .btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 20px;
}

.tarif-section .btn-wa i {
    font-size: 22px;
}

.tarif-section .btn-wa:hover {
    background-color: #1ebe57;
    transform: scale(1.05);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.hero-slider .slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slider .slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

/* Tombol kiri/kanan */
.hero-slider .prev,
.hero-slider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    font-size: 35px;
    padding: 5px 14px;
    cursor: pointer;
    border-radius: 50%;
}

.hero-slider .prev { left: 20px; }
.hero-slider .next { right: 20px; }

.hero-slider button:hover {
    background: rgba(0,0,0,0.7);
}

.heroSwiper {
    width: 100%;
    height: 450px;
}

.heroSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
}

.swiper-pagination-bullet {
    background: white;
}

/* --- Tinggi slider untuk mobile --- */
@media (max-width: 768px) {
    .heroSwiper {
        height: 250px !important;   /* Tinggi lebih kecil */
    }

    .heroSwiper .swiper-slide img {
        object-fit: cover;          /* Sesuaikan proporsi */
        object-position: center;    /* Fokus tengah gambar */
        width: 100%;
        height: 100%;
    }

    /* Kecilkan tombol next/prev */
    .swiper-button-next,
    .swiper-button-prev {
        transform: scale(0.6);
    }
}

.timeline {
    border-left: 3px solid #ffc107;
    padding-left: 20px;
}
.timeline-item {
    margin-bottom: 20px;
}
.timeline-item small {
    color: gray;
}

/* Tetap pakai warna navbar lama */
.custom-navbar {
    background: #002a5c;   /* ganti sesuai warna navbar lama */
    padding: 10px 20px;
}

.custom-navbar .nav-link {
    color: white !important;
    font-weight: 500;
}

.custom-navbar .nav-link:hover {
    color: #ffc107 !important;
}

.logo-img {
    height: 45px;
}

.dropdown-menu {
    background: #111;
    border: 1px solid #333;
}

.dropdown-menu .dropdown-item {
    color: white;
}

.dropdown-menu .dropdown-item:hover {
    background: #222;
}

.tracking-card {
    border-radius: 15px;
}

.tracking-step {
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 25px;
}

.tracking-step:last-child {
    padding-bottom: 0;
}

.tracking-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    position: relative;
    z-index: 2;
}

.tracking-line {
    position: absolute;
    left: 21px;
    top: 45px;
    width: 3px;
    height: 100%;
    background: #cfd3d7;
    z-index: 1;
}

.tracking-step.active .tracking-line {
    background: #0d6efd;
}

.tracking-step.active .tracking-icon {
    background: #0d6efd;
}

.tracking-step.done .tracking-icon {
    background: #28a745;
}

.tracking-step-text {
    margin-left: 15px;
}

.status-title {
    font-size: 20px;
    font-weight: 700;
}

/* ===========================
   NAVBAR MODERN
   =========================== */
.modern-navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 600;
    color: #222;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #0d6efd;
}

/* Hamburger */
.hamburger {
    width: 30px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    background: #111;
    border-radius: 5px;
    transition: .3s;
}

/* Hamburger Animation Active */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Overlay Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    padding: 80px 30px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    transition: .4s ease-in-out;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    color: #222;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
}

.mobile-menu.active {
    right: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

/* ==============================
   DARK MODE GLOBAL
   ============================== */
body.dark {
    background: #0f0f0f;
    color: #f1f1f1;
}

/* Navbar Dark Mode */
body.dark .custom-navbar {
    background: rgba(20,20,20,0.95) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

body.dark .nav-link,
body.dark .dropdown-item {
    color: #e5e5e5 !important;
}

body.dark .nav-link:hover,
body.dark .dropdown-item:hover {
    color: #00c8ff !important;
}

/* Dropdown background */
body.dark .dropdown-menu {
    background: #1c1c1c !important;
    border-color: #333;
}

/* Hero section */
body.dark #home,
body.dark section {
    background-color: #111;
    color: #fff;
}

/* Cards (services, blog, team, gallery) */
body.dark .service-card,
body.dark .blog-card,
body.dark .team-card {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
}

body.dark .blog-card-content h3 {
    color: #fff;
}

/* Footer */
body.dark footer {
    background: #111;
    color: #ccc;
}

body.dark footer a {
    color: #ddd;
}

/* Dark Mode Button */
.darkmode-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #222;
}

body.dark .darkmode-btn {
    color: #fff;
}
