/* ========== Global Styles ========== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-image: linear-gradient(to right, #0a1426, #082d5a);
  color: #ecf0f1;
  overflow-x: hidden;
}

/* ========== Navbar ========== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(10, 40, 77, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  border: 1px solid rgba(77, 194, 247, 0.2);
}

.logo img {
  height: 35px;
  filter: brightness(0) invert(1);
}

.navbar nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}

.navbar nav li {
  position: relative;
}

.navbar nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1em;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #4dc2f7, #9b59b6);
  opacity: 0;
  border-radius: 25px;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.navbar nav a:hover::before,
.navbar nav a.active::before {
  opacity: 1;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: white;
  transform: translateY(-2px);
}

/* ========== Hamburger Button ========== */
.open {
  display: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(77, 194, 247, 0.2);
  border: 2px solid rgba(77, 194, 247, 0.3);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
  z-index: 1001;
  position: relative;
  padding: 0;
  margin: 0;
}

/* Burger bars - TIGA GARIS CSS */
.open span {
  display: block;
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hover effect */
.open:hover {
  background: rgba(77, 194, 247, 0.3);
  transform: scale(1.1);
}

/* Ketika menu aktif - berubah menjadi X */
.open.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.open.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.open.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* ========== Hero Section (About) ========== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 100px;
  background-image: linear-gradient(to right, #0a1426, #082d5a);
  min-height: calc(100vh - 80px);
  box-sizing: border-box;
  
  background-size: cover;
   position: relative;
    z-index: 1;
}

.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), /* atur transparansi di sini */
        url("utama.jpg");
pointer-events: none;
opacity: 0.3;
background-size: cover;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 5em;
  font-weight: 900;
  color: #4dc2f7;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content .tagline {
  font-size: 1.5em;
  font-weight: 600;
  color: #bdc3c7;
  margin-bottom: 10px;
}

.hero-content p {
  color: #95a5a6;
  margin-bottom: 25px;
}

.sign-up-btn {
  background-color: #9b59b6;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer !important;
  transition: background-color 0.3s;
  position: relative;
  z-index: 10;
  pointer-events: auto !important;
  display: inline-block;
  text-decoration: none;
}

.sign-up-btn:hover {
  background-color: #8e44ad;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(155, 89, 182, 0.4);
}

/* Pastikan form button bisa diklik */
form .sign-up-btn {
  cursor: pointer !important;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* ========== Team Section (About) ========== */
.team-container {
  text-align: center;
  padding: 50px 20px;
  background-image: linear-gradient(to right, #0a1426, #082d5a);
}

.team-container h1 {
  font-size: 3em;
  font-weight: 700;
  color: #34495e;
  margin-bottom: 10px;
}

.team-container .description {
  font-size: 1.2em;
  color: #7f8c8d;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid #eee;
  transition: border-color 0.3s;
}

.team-member:hover img {
  border-color: #007bff;
}

.team-member h3 {
  font-size: 1.5em;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.team-member .role {
  font-size: 1em;
  font-weight: 400;
  color: #7f8c8d;
  margin-bottom: 15px;
}

.team-member .bio {
  font-size: 0.9em;
  color: #95a5a6;
  line-height: 1.6;
}

/* ========== Issues Section ========== */
.issues-container {
  text-align: center;
  padding: 50px 20px;
  background-image: linear-gradient(to right, #0a1426, #082d5a);
  margin-top: 50px;
}

.issues-container h1 {
  font-size: 3em;
  font-weight: 700;
  color: #4dc2f7;
  margin-bottom: 10px;
}

.issues-container .description {
  font-size: 1.2em;
  color: #bdc3c7;
  margin-bottom: 50px;
}

.issues-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.issue-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.issue-card h3 {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;

}

.issue-card p {
  color: #7f8c8d;
  font-size: 0.9em;
  line-height: 1.6;
}
.issue-card:hover{
   transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(77, 194, 247, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);

}

.issue-meta {
  margin-top: 20px;
  font-size: 0.8em;
  color: #bdc3c7;
}

.issue-id,
.issue-date {
  display: inline-block;
  margin-right: 15px;
}

/* Status Badges */
.status {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8em;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.status.in-progress { background-color: #f39c12; }
.status.resolved    { background-color: #2ecc71; }
.status.on-hold     { background-color: #e74c3c; }
.status.planned     { background-color: #3498db; }

/* ========== Diagonal Separator ========== */
.diagonal-separator {
  width: 100%;
  height: 70px;
  background: linear-gradient(to bottom, #ffffff, #f1f1f1);
  transform: skewY(-4deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  position: relative;
}

.separator-text {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* ========== Footer ========== */
.footer {
  background: linear-gradient(135deg, #0a1426 0%, #082d5a 100%);
  color: #ffffff;
  padding: 60px 40px 30px;
 
  border-top: 4px solid #4dc2f7;
}

/* Footer Top */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand h3 {
  font-size: 1.8em;
  font-weight: 700;
  color: #4dc2f7;
  margin: 0 0 5px 0;
}

.footer-brand p {
  color: #bdc3c7;
  font-size: 0.9em;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #4dc2f7;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4dc2f7;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #4dc2f7;
  transform: translateY(-3px);
}

.footer-social a:nth-child(1):hover { background: #E4405F; } /* Instagram */
.footer-social a:nth-child(2):hover { background: #FF0000; } /* YouTube */
.footer-social a:nth-child(3):hover { background: #1877F2; } /* Facebook */

/* Footer Middle */
.footer-middle {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  color: #4dc2f7;
  font-size: 1.3em;
  margin-top: 5px;
}

.contact-item span {
  display: block;
  color: #4dc2f7;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-item p {
  color: #bdc3c7;
  margin: 0;
  font-size: 0.95em;
  line-height: 1.5;
}

.footer-subscribe h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.subscribe-form {
  display: flex;
  gap: 10px;
}

.subscribe-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.95em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-form input:focus {
  outline: none;
  border-color: #4dc2f7;
}

.subscribe-form button {
  padding: 12px 25px;
  background: linear-gradient(45deg, #4dc2f7, #9b59b6);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.subscribe-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(77, 194, 247, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #bdc3c7;
  margin: 0;
  font-size: 0.9em;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #4dc2f7;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #4dc2f7;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(77, 194, 247, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #9b59b6;
  transform: translateY(-5px);
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #0a1426 0%, #082d5a 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #4dc2f7, #9b59b6, #2ecc71);
}

/* Header */
.choose-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.choose-header h2 {
  font-size: 3em;
  color: white;
  margin-bottom: 15px;
  font-weight: 800;
}

.choose-header .highlight {
  color: #4dc2f7;
  text-shadow: 0 0 20px rgba(77, 194, 247, 0.5);
}

.subtitle {
  font-size: 1.3em;
  color: #bdc3c7;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Reasons Container */
.reasons-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Reason Card */
.main-reason {
  background: linear-gradient(135deg, rgba(77, 194, 247, 0.1), rgba(155, 89, 182, 0.1));
  border: 1px solid rgba(77, 194, 247, 0.3);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.main-reason::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #4dc2f7, #9b59b6);
}

.reason-number {
  font-size: 5em;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  position: absolute;
  top: -10px;
  right: 30px;
  z-index: 0;
}

.reason-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.reason-icon {
  width: 70px;
  height: 70px;
  background: rgba(77, 194, 247, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8em;
  color: #4dc2f7;
}

.main-reason h3 {
  color: white;
  font-size: 1.8em;
  margin-bottom: 20px;
  font-weight: 700;
}

.main-reason p {
  color: #bdc3c7;
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
}

.reason-benefits {
  list-style: none;
  padding: 0;
}

.reason-benefits li {
  color: #bdc3c7;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95em;
}

.reason-benefits li i {
  color: #2ecc71;
  font-size: 0.9em;
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;

}

.reason-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reason-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(77, 194, 247, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.reason-card .reason-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.reason-icon.affordable { background: rgba(46, 204, 113, 0.2); color: #2ecc71; }
.reason-icon.easy { background: rgba(155, 89, 182, 0.2); color: #9b59b6; }
.reason-icon.reliable { background: rgba(52, 152, 219, 0.2); color: #3498db; }
.reason-icon.scalable { background: rgba(243, 156, 18, 0.2); color: #f39c12; }

.reason-card h3 {
  color: white;
  font-size: 1.3em;
  margin-bottom: 15px;
  font-weight: 600;
}

.reason-card p {
  color: #bdc3c7;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
}



/* Stats in Reason Cards */
.reason-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 2em;
  font-weight: 800;
  color: #4dc2f7;
  line-height: 1;
}

.stat-label {
  font-size: 0.85em;
  color: #bdc3c7;
  margin-top: 5px;
}

/* Features Tags */
.reason-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85em;
  color: #bdc3c7;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.feature-tag i {
  color: #4dc2f7;
  font-size: 0.9em;
}

/* Reliability Metrics */
.reliability-metrics {
  margin-top: 20px;
}

.metric {
  margin-bottom: 15px;
}

.metric-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, #2ecc71, #3498db);
  border-radius: 3px;
}

.metric-label {
  color: #bdc3c7;
  font-size: 0.85em;
}

/* Scalability Levels */
.scalability-levels {
  margin-top: 20px;
}

.level {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.level-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.level-dot.active {
  background: #f39c12;
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.3);
}

.level-text {
  color: #bdc3c7;
  font-size: 0.9em;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: rgba(77, 194, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4dc2f7;
  font-size: 1.2em;
}

.author-info h4 {
  color: white;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.author-info p {
  color: #7f8c8d;
  font-size: 0.85em;
}

/* CTA Section */
.choose-cta {
  background: linear-gradient(135deg, rgba(77, 194, 247, 0.1), rgba(155, 89, 182, 0.1));
  border: 1px solid rgba(77, 194, 247, 0.3);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
}

.cta-content h3 {
  color: white;
  font-size: 2em;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-content p {
  color: #bdc3c7;
  font-size: 1.1em;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 1.1em;
}

.cta-btn.primary {
  background: linear-gradient(45deg, #4dc2f7, #9b59b6);
  color: white;
  border: none;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(77, 194, 247, 0.4);
}

.cta-btn.secondary {
  background: transparent;
  color: #4dc2f7;
  border: 2px solid #4dc2f7;
}

.cta-btn.secondary:hover {
  background: #4dc2f7;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-choose-section {
      padding: 50px 20px;
  }
  
  .choose-header h2 {
      font-size: 2.2em;
  }
  
  .subtitle {
      font-size: 1.1em;
  }
  
  .main-reason {
      flex-direction: column;
      padding: 30px;
      gap: 20px;
  }
  
  .reason-number {
      font-size: 3.5em;
      right: 15px;
  }
  
  .reasons-grid {
    display: -webkit-box;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;

    gap: 20px;
    -webkit-overflow-scrolling: touch;
}

.reasons-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  scroll-snap-type: x mandatory !important;
  gap: 20px !important;
  padding: 15px 10px 25px !important;
  margin: 0 -10px !important;
  width: calc(100% + 20px) !important;
}

/* Reason card mobile */
.reason-card {
  flex: 0 0 85vw !important;
  min-width: 85vw !important;
  scroll-snap-align: center !important;
  margin: 0 !important;
}

/* Hide scrollbar */
.reasons-grid::-webkit-scrollbar {
  display: none !important;
}

.reasons-grid {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

/* Carousel indicators */
.carousel-indicators {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 20px !important;
  padding-bottom: 10px !important;
}

.carousel-indicators .dot {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.carousel-indicators .dot.active {
  background: #4dc2f7 !important;
  width: 25px !important;
  border-radius: 12px !important;
}
  
  .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .cta-btn {
      width: 100%;
      max-width: 200px;
      justify-content: center;
  }
  
  .cta-stats {
      gap: 30px;
  }
}

@media (max-width: 480px) {
  .choose-header h2 {
      font-size: 1.8em;
  }
  
  .main-reason h3 {
      font-size: 1.5em;
  }
  

  .choose-cta {
      padding: 30px 20px;
  }
  
  .cta-content h3 {
      font-size: 1.6em;
  }
}
/* ========== Mobile Menu Styles ========== */
@media (max-width: 768px) {
  
  .issues-container{
    margin-top: 120px;
  }
  .open {
    display: flex;
}

/* Sembunyikan menu desktop di mobile */
.navbar nav ul {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(10, 40, 77, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 20px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.4s ease;
    border: 1px solid rgba(77, 194, 247, 0.3);
    max-height: 0;
    overflow: hidden;
}

/* When menu is active */
.navbar nav ul.active {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    padding: 30px 20px;
}

/* Menu items */
.navbar nav ul li {
    margin: 0;
    text-align: center;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Staggered animation */
.navbar nav ul.active li {
    opacity: 1;
    transform: translateY(0);
}

.navbar nav ul.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.navbar nav ul.active li:nth-child(2) {
    transition-delay: 0.2s;
}

.navbar nav ul.active li:nth-child(3) {
    transition-delay: 0.3s;
}

/* Menu links */
.navbar nav ul li a {
    display: block;
    padding: 15px 25px;
    font-size: 1.1em;
    margin: 5px 0;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.navbar nav ul li a:hover {
    background: rgba(77, 194, 247, 0.2);
    color: white;
    transform: translateX(5px);
}

/* Navbar mobile adjustments */
.navbar {
    width: 85%;
    padding: 12px 25px;
}
}
/* ========== Animations ========== */
@keyframes slideDown {
  0% {
      opacity: 0;
      transform: translateY(-20px);
      max-height: 0;
  }
  100% {
      opacity: 1;
      transform: translateY(0);
      max-height: 400px;
  }
}

@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(15px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */
@media (max-width: 992px) {
  .footer {
      padding: 50px 30px 25px;
  }
  
  .footer-middle {
      grid-template-columns: 1fr;
      gap: 30px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .navbar {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 20px 20px;
  }
  
  .footer {
      padding: 40px 20px 20px;
  }
  
  .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 25px;
  }
  
  .footer-links {
      justify-content: center;
  }
  
  .footer-contact {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 15px;
  }
  
  .footer-legal {
      justify-content: center;
  }
  
  .back-to-top {
      bottom: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
  }
  
  /* Hero Section Mobile */
  .hero-section {
      margin-top: 100px;
      flex-direction: column;
      padding: 30px 25px;
      min-height: auto;
      gap: 50px;
  }
  
  .hero-content h1 {
      font-size: 5.2em;
  }
  
  .hero-content .tagline {
      font-size: 1.5em;
  }
  
  .hero-content p {
      font-size: 1.2em;
  }
  
  .hero-image {
      margin-bottom: 10px;
  }
  
  /* Issues & Team Mobile */
  
  .issues-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    gap: 20px !important;
    padding: 15px 10px !important;
    margin: 0 -10px !important;
    width: calc(100% + 20px) !important;
}

/* Issue card mobile */
.issue-card {
    flex: 0 0 85vw !important;
    min-width: 85vw !important;
    scroll-snap-align: center !important;
    margin: 0 !important;
}

/* Hide scrollbar but keep functionality */
.issues-list::-webkit-scrollbar {
    display: none !important;
}

.issues-list {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

  /* Diagonal Separator Mobile */
  .diagonal-separator {
      margin-top: 300px;
  }
}

/* Mobile Small (<=480px) */
@media (max-width: 480px) {

  .issues-container{
    margin-top: 450px;
  }
  .hero-content h1 {
      font-size: 1.6em;
  }
  
  .hero-content .tagline {
      font-size: 0.95em;
  }
  
  .sign-up-btn {
      width: 100%;
      font-size: 1em;
      padding: 12px;
  }
  
  .navbar {
      padding: 10px 15px;
  }
  
  .logo img {
      height: 30px;
  }
  
  .footer {
      padding: 30px 15px 15px;
    
  }
  
  .footer-brand {
      flex-direction: column;
      text-align: center;
      gap: 10px;
  }
  
  .footer-links {
      gap: 15px;
  }
  
  .subscribe-form {
      flex-direction: column;
  }
  
  .subscribe-form button {
      width: 100%;
  }
  

  .issue-card h3 {
      font-size: 1.2em;
  }
  
  .issue-card p {
      font-size: 0.85em;
  }
  
  /* Issues horizontal scroll for very small screens */
  .issues-list {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      padding: 10px;
      width: 100%;
      scroll-snap-type: x mandatory;
  }
  
  .issue-card {
      flex: 0 0 300px;
      scroll-snap-align: start;
  }
}