/* ==========================================
   ANGKER PROJECT 
/* ===== CSS RESET ===== */
*,
*::before,
*::after{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f8fafc;
  color:#0f172a;
  line-height:1.6;
  overflow-x:hidden;
}

/* ===== ROOT VARIABLES ===== */
:root{
  --primary:#2563eb;
  --primary-dark:#1e40af;
  --primary-soft:#dbeafe;
  --secondary:#0f172a;
  --muted:#64748b;
  --light:#f8fafc;
  --gray:#e5e7eb;
  --dark:#020617;
  --white:#ffffff;
  --radius:14px;
  --radius-lg:22px;
  --shadow-sm:0 4px 12px rgba(0,0,0,.05);
  --shadow-md:0 10px 30px rgba(0,0,0,.08);
  --shadow-lg:0 20px 60px rgba(0,0,0,.12);
  
  --blue:#2563eb;
  --blue-dark:#1e40af;
  --blue-soft:#3b82f6;
  --light-bg:#ffffff;
  --light-text:#1f2937;
  --light-soft:#f1f5f9;
  --light-hover:#e2e8f0;

  --dark-bg:#0f172a;
  --dark-card:#020617;
  --dark-text:#e5e7eb;
  --dark-soft:#1e293b;
  --dark-hover:#0f172a;

  --transition:.3s ease;
}

/* ===== GLOBAL ELEMENT ===== */
a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

img{
  max-width:100%;
  display:block;
}

button{
  border:none;
  outline:none;
  cursor:pointer;
  font-family:'Poppins', sans-serif;
}

/* ===== CONTAINER SYSTEM ===== */
.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* ===== SECTION SYSTEM ===== */
.section{
  width:100%;
  padding:120px 0;
}

.section.light{
  background:#ffffff;
}

.section.soft{
  background:#f8fafc;
}

.section.blue{
  background:linear-gradient(135deg,#2563eb,#1e40af);
  color:#ffffff;
}

/* ===== SECTION HEADER ===== */
.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-badge{
  display:inline-block;
  padding:8px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  margin-bottom:14px;
}

.section-badge.light{
  background:rgba(37,99,235,.1);
  color:#2563eb;
}

.section-title{
  font-size:42px;
  font-weight:700;
  margin-bottom:14px;
  line-height:1.2;
}

.section-desc{
  font-size:16px;
  color:#64748b;
  max-width:680px;
  margin:0 auto;
}

/* ===== BUTTON SYSTEM ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 28px;
  border-radius:12px;
  font-weight:600;
  transition:var(--transition);
}

.btn-primary{
  background:var(--primary);
  color:#ffffff;
  box-shadow:var(--shadow-sm);
}

.btn-primary:hover{
  background:var(--primary-dark);
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

.btn-outline{
  background:transparent;
  border:2px solid var(--primary);
  color:var(--primary);
}

.btn-outline:hover{
  background:var(--primary);
  color:#ffffff;
}

/* ===== CARD SYSTEM ===== */
.card{
  background:#ffffff;
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}

/* ===== GRID SYSTEM ===== */
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

/* ===== UTILITIES ===== */
.text-center{ text-align:center; }
.text-left{ text-align:left; }
.text-right{ text-align:right; }

.mt-1{ margin-top:10px; }
.mt-2{ margin-top:20px; }
.mt-3{ margin-top:30px; }
.mt-4{ margin-top:40px; }

.mb-1{ margin-bottom:10px; }
.mb-2{ margin-bottom:20px; }
.mb-3{ margin-bottom:30px; }
.mb-4{ margin-bottom:40px; }

.flex{
  display:flex;
}

.flex-center{
  display:flex;
  align-items:center;
  justify-content:center;
}

.flex-between{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.gap-1{ gap:10px; }
.gap-2{ gap:20px; }
.gap-3{ gap:30px; }

/* ===== ANIMATION BASE ===== */
.fade-in{
  animation:fadeIn .8s ease forwards;
}

@keyframes fadeIn{
  from{ opacity:0; transform:translateY(20px); }
  to{ opacity:1; transform:translateY(0); }
}

/* ===== DARK MODE BASE ===== */
body.dark{
  background:var(--dark-bg);
  color:var(--dark-text);
}

body.dark .section.light{
  background:#020617;
}

body.dark .section.soft{
  background:#020617;
}

body.dark .card{
  background:#020617;
  box-shadow:none;
  border:1px solid rgba(255,255,255,.05);
}

body.dark .section-desc{
  color:#cbd5f5;
}

body.dark .btn-outline{
  border-color:#93c5fd;
  color:#93c5fd;
}

body.dark .btn-outline:hover{
  background:#2563eb;
  color:#ffffff;
}

/* ==========================================
   NAVBAR
========================================== */
.navbar{
  position:sticky;
  top:0;
  width:100%;
  background-color:var(--light-bg) !important;
  z-index:9999;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
  transition:0.3s;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}
body.dark .navbar{
  background-color:var(--dark-card) !important;
  box-shadow:0 4px 20px rgba(0,0,0,0.6);
}

.container{max-width:1200px;margin:auto;padding:0 20px;}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
}

.logo{height:42px}
body.dark .logo{filter: grayscale(100%) brightness(1000%);}

/* MENU DESKTOP */
.nav-menu{display:flex;align-items:center;gap:28px}

.nav-menu a,.drop-btn{
  display:flex;align-items:center;gap:8px;
  font-size:15px;font-weight:500;
  color:var(--light-text);
  background:none;border:none;text-decoration:none;cursor:pointer;
  transition:0.25s;
}
body.dark .nav-menu a,body.dark .drop-btn{color:var(--dark-text)}

.nav-menu a:hover,.drop-btn:hover{color:var(--blue)}
body.dark .nav-menu a:hover,body.dark .drop-btn:hover{color:#60a5fa}

/* DROPDOWN */
.dropdown{position:relative}
.dropdown-menu{
  position:absolute;top:120%;left:0;
  min-width:230px;
  background:var(--light-bg);
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  padding:10px 0;
  opacity:0;visibility:hidden;
  transform:translateY(10px);
  transition:0.3s;
}
body.dark .dropdown-menu{
  background:var(--dark-soft);
}

.dropdown:hover .dropdown-menu{
  opacity:1;visibility:visible;transform:translateY(0)
}

.dropdown-menu a{
  padding:10px 16px;
  display:flex;align-items:center;gap:10px;
  color:var(--light-text);
}
body.dark .dropdown-menu a{color:var(--dark-text)}

.dropdown-menu a:hover{
  background:var(--light-soft);color:var(--blue)
}
body.dark .dropdown-menu a:hover{
  background:var(--dark-hover);color:#60a5fa
}

/* RIGHT */
.nav-right{display:flex;align-items:center;gap:12px}

.dark-toggle,.mobile-toggle{
  width:40px;height:40px;border-radius:10px;
  background:var(--light-soft);
  border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
body.dark .dark-toggle,body.dark .mobile-toggle{
  background:var(--dark-soft);color:#fff
}

/* MOBILE */
.mobile-toggle{display:none}

.mobile-overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,0.5);
  opacity:0;visibility:hidden;
  transition:0.3s;
  z-index:9998;
}
.mobile-overlay.active{opacity:1;visibility:visible}

.mobile-nav{
  position:fixed;
  top:0;left:-320px;
  width:300px;height:100%;
  background-color:var(--light-bg) !important;
  z-index:9999;
  transition:0.35s;
  display:flex;flex-direction:column;
}
body.dark .mobile-nav{
  background-color:var(--dark-card) !important;
}

.mobile-nav.active{left:0}

.mobile-header{
  height:72px;
  padding:0 20px;
  display:flex;align-items:center;justify-content:space-between;
  border-bottom:1px solid #e5e7eb;
}
body.dark .mobile-header{border-color:#1e293b}

.mobile-menu{
  padding:20px;
  display:flex;flex-direction:column;gap:10px;
}

.mobile-menu a,.mobile-dropdown-btn{
  padding:10px;
  border-radius:8px;
  display:flex;align-items:center;justify-content:space-between;
  color:var(--light-text);
  text-decoration:none;
  transition:0.3s;
  cursor:pointer;
}
body.dark .mobile-menu a,body.dark .mobile-dropdown-btn{
  color:var(--dark-text)
}
.mobile-menu a:hover{
  background:var(--light-soft);color:var(--blue)
}
body.dark .mobile-menu a:hover{
  background:var(--dark-hover);color:#60a5fa
}

.mobile-dropdown-btn:hover{
  background:var(--light-soft);color:var(--blue)
}
body.dark .mobile-dropdown-btn:hover{
  background:var(--dark-hover);color:#60a5fa
}

.mobile-left{display:flex;align-items:center;gap:10px}

.mobile-submenu{
  max-height:0;
  overflow:hidden;
  transition:0.3s;
  padding-left:28px;
}
.mobile-submenu.open{max-height:300px}

/* RESPONSIVE */
@media(max-width:900px){
  .nav-menu{display:none}
  .mobile-toggle{display:flex}
}

/* ======= SCROLL TO TOP ========= */
#scrollTopBtn{
  position:fixed;
  bottom:28px;
  right:28px;
  width:48px;
  height:48px;
  border-radius:50%;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(37,99,235,0.4);
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:0.3s;
  z-index:9999;
}

/* SHOW */
#scrollTopBtn.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* DARKMODE */
body.dark #scrollTopBtn{
  background:linear-gradient(135deg,#60a5fa,#2563eb);
  box-shadow:0 10px 30px rgba(96,165,250,0.4);
}

/* HOVER */
#scrollTopBtn:hover{
  transform:translateY(-4px);
}

/* MOBILE */
@media(max-width:600px){
  #scrollTopBtn{
    width:44px;
    height:44px;
    bottom:20px;
    right:20px;
    font-size:16px;
  }
}


/* ==========================================
   HERO SECTION
========================================== */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:100px 0 80px;
  position:relative;
  overflow:hidden;
  color:#fff;
  background:#3b82f6; /* LIGHT */
}

body.dark .hero{
  background:#020617; /* DARK */
}

/* CANVAS BG */
#cyber-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
}

/* OVERLAY */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.25), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.15), rgba(0,0,0,0.25));
}

body.dark .hero-overlay{
  background:
    radial-gradient(circle at top, rgba(0,180,255,0.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.85));
}

.hero-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:50px;
  align-items:center;
  position:relative;
  z-index:3;
}

/* LEFT */
.hero-content h1{
  font-size:46px;
  line-height:1.2;
  font-weight:700;
  color:#fff;
  text-shadow:0 0 20px rgba(0,0,0,0.25);
}
.hero-content h1 span{
  color:#e0f2fe;
}
body.dark .hero-content h1 span{
  color:#93c5fd;
}

.hero-content p{
  margin-top:20px;
  font-size:17px;
  line-height:1.7;
  color:#f0f9ff;
}
body.dark .hero-content p{
  color:#c7d2fe;
}

.hero-actions{
  margin-top:30px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn-primary{
  padding:14px 28px;
  border-radius:12px;
  background:#fff;
  color:#2563eb;
  font-weight:600;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:0.25s;
}
.btn-primary:hover{
  transform:translateY(-2px);
  background:#e0e7ff;
}

.btn-outline{
  padding:14px 28px;
  border-radius:12px;
  border:2px solid #fff;
  color:#fff;
  font-weight:600;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:0.25s;
}
.btn-outline:hover{
  background:rgba(255,255,255,0.15);
}

/* RIGHT */
.hero-visual{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}

/* visual card */
.visual-card{
  width:100%;
  max-width:420px;
  background:rgba(255,255,255,0.18);
  backdrop-filter:blur(14px);
  border-radius:20px;
  padding:26px;
  color:#fff; /* FIX PUTIH */
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}
body.dark .visual-card{
  background:rgba(15,23,42,0.8);
  color:#fff;
}

.visual-card h3{
  font-size:20px;
  margin-bottom:14px;
  color:#fff;
}

.visual-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.visual-item{
  background:rgba(255,255,255,0.18);
  border-radius:10px;
  padding:12px;
  font-size:13px;
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff; /* FIX PUTIH */
}
body.dark .visual-item{
  background:rgba(30,41,59,0.8);
  color:#fff;
}

/* LOGO */
.hero-logo{
  width:100%;
  max-width:260px;
}
.hero-logo img{
  width:100%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 10px 25px rgba(0,0,0,0.4));
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-container{
    grid-template-columns:1fr;
    text-align:left;
  }

  .hero-content h1{
    font-size:34px;
  }

  .hero-actions{
    justify-content:flex-start;
  }

  .visual-card{
    max-width:100%;
  }

  .hero-logo{
    max-width:200px;
  }
}

@media(max-width:480px){
  .hero-content h1{
    font-size:28px;
  }
  .hero-content p{
    font-size:15px;
  }
}


/* =========================
   TRANSITION SECTION
========================= */
.transition-section{
  position:relative;
  background:#f8fafc;
  z-index:5;
  height:0;
  margin-bottom:160px; /* desktop safe space */
}

/* LINE */
.transition-line{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;
  background:rgba(0,0,0,0.08);
  z-index:1;
}

body.dark .transition-line{
  background:rgba(255,255,255,0.15);
}

/* BOX CONTAINER */
.transition-boxes{
  position:absolute;
  top:-90px;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  max-width:900px;
  width:100%;
  padding:0 24px;
}

/* BOX */
.transition-box{
  background:#fff;
  border-radius:18px;
  padding:34px 30px;
  text-align:center;
  box-shadow:0 20px 50px rgba(0,0,0,0.10);
  transition:0.3s ease;
  font-family:'Poppins', sans-serif;
}

.transition-box i{
  font-size:34px;
  color:#2563eb;
  margin-bottom:14px;
}

.transition-box h3{
  font-size:20px;
  font-weight:600;
  margin-bottom:8px;
  color:#0f172a;
}

.transition-box p{
  font-size:14px;
  color:#475569;
  line-height:1.6;
}

/* HOVER */
.transition-box:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 60px rgba(0,0,0,0.14);
}

/* DARKMODE */
body.dark .transition-section{
  background:#020617;
}

body.dark .transition-box{
  background:#0b1220;
  box-shadow:0 20px 50px rgba(0,0,0,0.7);
}

body.dark .transition-box h3{
  color:#e5e7eb;
}

body.dark .transition-box p{
  color:#94a3b8;
}

body.dark .transition-box i{
  color:#60a5fa;
}

/* ========= RESPONSIVE =========== */
/* Tablet */
@media(max-width:900px){
  .transition-section{
    margin-bottom:220px;
  }

  .transition-boxes{
    top:-80px;
    max-width:720px;
  }
}

/* Mobile */
@media(max-width:768px){
  .transition-section{
    margin-bottom:360px;  /* ruang khusus mobile */
  }

  .transition-boxes{
    grid-template-columns:1fr;
    top:-50px;
    gap:22px;
  }
}

/* Small Mobile */
@media(max-width:480px){
  .transition-section{
    margin-bottom:420px; /* extra space */
  }

  .transition-boxes{
    top:-40px;
  }
}


/* ==========================================
   SERVICES SECTION
========================================== */
.services{
  padding:100px 0;
}

.services-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.services-header{
  text-align:center;
  margin-bottom:60px;
}
.services-header h2{
  font-size:36px;
  font-weight:700;
}
.services-header p{
  margin-top:12px;
  color:#64748b;
}
body.dark .services-header p{
  color:#cbd5e1;
}

/* GRID */
.services-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px 40px;
}

/* CARD */
.service-card{
  background:var(--light-bg);
  border-radius:18px;
  padding:26px 28px;
  display:flex;
  align-items:flex-start;
  gap:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:0.3s;
}
body.dark .service-card{
  background:var(--dark-card);
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* ICON */
.service-icon{
  min-width:60px;
  height:60px;
  border-radius:14px;
  background:rgba(37,99,235,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--blue);
  font-size:26px;
}
body.dark .service-icon{
  background:rgba(96,165,250,0.15);
  color:#60a5fa;
}

/* CONTENT */
.service-content h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:6px;
}
.service-content p{
  font-size:14px;
  line-height:1.6;
  color:#475569;
}
body.dark .service-content p{
  color:#cbd5e1;
}

/* RESPONSIVE */
@media(max-width:900px){
  .services-grid{
    grid-template-columns:1fr;
  }
  .services-header h2{
    font-size:28px;
  }
}


/* ==========================================
   RESPONSIVE SERVICES
========================================== */

@media(max-width:992px){
  .services-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .service-item{
    padding:24px;
  }

  .service-icon{
    min-width:56px;
    height:56px;
    font-size:24px;
  }
}

@media(max-width:576px){
  .service-item{
    flex-direction:row;
    align-items:flex-start;
  }

  .service-text h4{
    font-size:16px;
  }

  .service-text p{
    font-size:13px;
  }
}

/* ==========================================
   ABOUT SECTION
========================================== */
.about{
  padding:110px 0;
}

.about-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* VISUAL */
.about-visual{
  position:relative;
}
.about-card{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  border-radius:28px;
  padding:60px 40px;
  color:#fff;
  box-shadow:0 30px 60px rgba(37,99,235,0.35);
}
.about-card h3{
  font-size:28px;
  margin-bottom:16px;
}
.about-card p{
  line-height:1.7;
  opacity:0.95;
}

/* CONTENT */
.about-content h2{
  font-size:38px;
  font-weight:700;
  margin-bottom:16px;
}
.about-content p{
  color:#475569;
  line-height:1.8;
  margin-bottom:18px;
}
body.dark .about-content p{
  color:#cbd5e1;
}

/* STATS */
.about-stats{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.stat-box{
  background:var(--light-bg);
  border-radius:16px;
  padding:18px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.06);
}
body.dark .stat-box{
  background:var(--dark-card);
  box-shadow:0 10px 25px rgba(0,0,0,0.5);
}

.stat-box h4{
  font-size:22px;
  color:var(--blue);
  font-weight:700;
}
.stat-box span{
  font-size:13px;
  color:#64748b;
}
body.dark .stat-box span{
  color:#cbd5e1;
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-container{
    grid-template-columns:1fr;
    gap:40px;
  }
  .about-content h2{
    font-size:28px;
  }
  .about-card{
    padding:40px 28px;
  }
  .about-stats{
    grid-template-columns:1fr 1fr;
  }
}


/* ==========================================
   WHY ANGKER SECTION
========================================== */
.why{
  padding:120px 0;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  color:var(--light);
  position:relative;
  overflow:hidden;
  transition:0.3s;
}

/* DARKMODE SECTION */
body.dark .why{
  background:var(--dark-blue),var(--dark-blue-soft);
  color:var(--dark-text);
}

/* Container */
.why-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  position:relative;
  z-index:2;
}

/* Header */
.why-header{
  text-align:center;
  margin-bottom:70px;
}
.why-header h2{
  font-size:38px;
  font-weight:700;
}
.why-header p{
  margin-top:14px;
  opacity:0.9;
}

/* Grid */
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* Card */
.why-card{
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(10px);
  border-radius:20px;
  padding:32px 28px;
  transition:0.3s;
  border:1px solid rgba(255,255,255,0.15);
}

/* Dark card */
body.dark .why-card{
  background:rgba(2,6,23,0.6);
  border:1px solid rgba(96,165,250,0.15);
}

.why-card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.18);
}
body.dark .why-card:hover{
  background:rgba(2,6,23,0.85);
}

/* Icon */
.why-icon{
  width:60px;
  height:60px;
  border-radius:16px;
  background:rgba(255,255,255,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:18px;
}
body.dark .why-icon{
  background:rgba(37,99,235,0.25);
}

/* Content */
.why-card h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:8px;
}
.why-card p{
  font-size:14px;
  line-height:1.7;
  opacity:0.9;
}

/* RESPONSIVE */
@media(max-width:900px){
  .why-grid{
    grid-template-columns:1fr;
  }
  .why-header h2{
    font-size:28px;
  }
}


/* ==========================================
   PROJECTS SECTION
========================================== */
.projects{
  padding:120px 0;
}

.projects-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* HEADER */
.projects-header{
  text-align:center;
  margin-bottom:60px;
}
.projects-header h2{
  font-size:38px;
  font-weight:700;
}
.projects-header p{
  margin-top:12px;
  color:#64748b;
}
body.dark .projects-header p{
  color:#cbd5e1;
}

/* GRID */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* CARD */
.project-card{
  background:var(--light-bg);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:0.35s;
  display:flex;
  flex-direction:column;
}
body.dark .project-card{
  background:var(--dark-card);
  box-shadow:0 15px 40px rgba(0,0,0,0.6);
}

.project-card:hover{
  transform:translateY(-10px);
}

/* IMAGE */
.project-image{
  height:200px;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:48px;
}

/* CONTENT */
.project-content{
  padding:22px;
}
.project-content h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:8px;
}
.project-content p{
  font-size:14px;
  line-height:1.6;
  color:#475569;
}
body.dark .project-content p{
  color:#cbd5e1;
}

/* TAGS */
.project-tags{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.project-tags span{
  background:rgba(37,99,235,0.1);
  color:var(--blue);
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:500;
}
body.dark .project-tags span{
  background:rgba(96,165,250,0.15);
  color:#60a5fa;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .projects-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:650px){
  .projects-grid{
    grid-template-columns:1fr;
  }
  .projects-header h2{
    font-size:28px;
  }
}


/* ==========================================
   TEAM SECTION
========================================== */
.team{
  padding:120px 0;
}

.team-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* HEADER */
.team-header{
  text-align:center;
  margin-bottom:60px;
}
.team-header h2{
  font-size:38px;
  font-weight:700;
}
.team-header p{
  margin-top:12px;
  color:#64748b;
}
body.dark .team-header p{
  color:#cbd5e1;
}

/* GRID */
.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

/* CARD */
.team-card{
  background:var(--light-bg);
  border-radius:22px;
  padding:26px 22px 30px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:0.35s;
}
body.dark .team-card{
  background:var(--dark-card);
  box-shadow:0 15px 40px rgba(0,0,0,0.6);
}
.team-card:hover{
  transform:translateY(-10px);
}

/* AVATAR */
.team-avatar{
  width:110px;
  height:110px;
  border-radius:50%;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:44px;
  color:#fff;
}

/* NAME */
.team-card h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:4px;
}
.team-card span{
  font-size:13px;
  color:#64748b;
}
body.dark .team-card span{
  color:#cbd5e1;
}

/* DESC */
.team-desc{
  font-size:13px;
  line-height:1.6;
  color:#475569;
  margin-top:10px;
}
body.dark .team-desc{
  color:#cbd5e1;
}

/* SOCIAL */
.team-social{
  margin-top:16px;
  display:flex;
  justify-content:center;
  gap:14px;
}
.team-social a{
  width:36px;
  height:36px;
  border-radius:50%;
  background:rgba(37,99,235,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--blue);
  font-size:15px;
  transition:0.3s;
}
.team-social a:hover{
  background:var(--blue);
  color:#fff;
}
body.dark .team-social a{
  background:rgba(96,165,250,0.15);
  color:#60a5fa;
}
body.dark .team-social a:hover{
  background:#60a5fa;
  color:#020617;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .team-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:600px){
  .team-grid{
    grid-template-columns:1fr;
  }
  .team-header h2{
    font-size:28px;
  }
}


/* ==========================================
   CLIENTS SECTION
========================================== */
.clients{
  padding:110px 0;
  background:var(--light-soft);
}
body.dark .clients{
  background:var(--dark-soft);
}

.clients-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* HEADER */
.clients-header{
  text-align:center;
  margin-bottom:40px;
}
.clients-header h2{
  font-size:36px;
  font-weight:700;
}
.clients-header p{
  margin-top:10px;
  color:#64748b;
}
body.dark .clients-header p{
  color:#cbd5e1;
}

/* SLIDER */
.slider-wrapper{
  overflow:hidden;
  position:relative;
}

.slider-track{
  display:flex;
  gap:60px;
  animation:scroll 30s linear infinite;
  width:max-content;
}

.logo-item{
  min-width:160px;
  height:80px;
  background:var(--light-bg);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 20px rgba(0,0,0,0.05);
  font-size:28px;
  color:#2563eb;
  transition:0.3s;
}
body.dark .logo-item{
  background:var(--dark-card);
  box-shadow:0 10px 25px rgba(0,0,0,0.6);
  color:#60a5fa;
}

.logo-item:hover{
  transform:scale(1.08);
}

/* LOOP ANIMATION */
@keyframes scroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* RESPONSIVE */
@media(max-width:700px){
  .logo-item{
    min-width:120px;
    height:70px;
    font-size:22px;
  }
}


/* ==========================================
   FAQ SECTION
========================================== */
.faq{
  padding:120px 0;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  color:var(--light);
  position:relative;
  overflow:hidden;
  transition:0.3s;
}

/* DARKMODE */
body.dark .faq{
  background:linear-gradient(135deg,var(--dark-blue),var(--dark-blue-soft));
  color:var(--dark-text);
}

/* Glow */
.faq::before{
  content:'';
  position:absolute;
  width:600px;
  height:600px;
  background:rgba(255,255,255,0.08);
  border-radius:50%;
  top:-200px;
  left:-200px;
  filter:blur(120px);
}
body.dark .faq::before{
  background:rgba(37,99,235,0.15);
}

/* Container */
.faq-container{
  max-width:900px;
  margin:auto;
  padding:0 20px;
  position:relative;
  z-index:2;
}

/* Header */
.faq-header{
  text-align:center;
  margin-bottom:60px;
}
.faq-header h2{
  font-size:38px;
  font-weight:700;
}
.faq-header p{
  margin-top:12px;
  opacity:0.9;
}

/* Accordion */
.faq-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.faq-item{
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(10px);
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.15);
}
body.dark .faq-item{
  background:rgba(2,6,23,0.6);
  border:1px solid rgba(96,165,250,0.15);
}

/* Question */
.faq-question{
  padding:20px 22px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.faq-question h3{
  font-size:16px;
  font-weight:500;
}
.faq-icon{
  width:32px;
  height:32px;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
}
body.dark .faq-icon{
  background:rgba(37,99,235,0.25);
}

/* Answer */
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
}
.faq-answer p{
  padding:0 22px 22px;
  font-size:14px;
  line-height:1.7;
  opacity:0.95;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:300px;
}
.faq-item.active .faq-icon{
  transform:rotate(180deg);
  background:rgba(255,255,255,0.3);
}
body.dark .faq-item.active .faq-icon{
  background:rgba(37,99,235,0.45);
}

/* RESPONSIVE */
@media(max-width:700px){
  .faq-header h2{
    font-size:28px;
  }
}


/* ==========================================
   CTA SECTION
========================================== */
.cta{
  padding:120px 0;
  background:var(--light-soft);
}
body.dark .cta{
  background:var(--dark-soft);
}

.cta-container{
  max-width:900px;
  margin:auto;
  padding:0 20px;
}

/* HEADER */
.cta-header{
  text-align:center;
  margin-bottom:50px;
}
.cta-header h2{
  font-size:38px;
  font-weight:700;
}
.cta-header p{
  margin-top:12px;
  color:#64748b;
}
body.dark .cta-header p{
  color:#cbd5e1;
}

/* FORM CARD */
.cta-card{
  background:var(--light-bg);
  border-radius:24px;
  padding:40px 36px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}
body.dark .cta-card{
  background:var(--dark-card);
  box-shadow:0 25px 60px rgba(0,0,0,0.6);
}

/* FORM */
.cta-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

/* FULL WIDTH */
.full{
  grid-column:1 / -1;
}

/* INPUT */
.cta-form input,
.cta-form textarea,
.cta-form select{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #e2e8f0;
  outline:none;
  font-size:14px;
  transition:0.3s;
  background:var(--light-bg);
}
body.dark .cta-form input,
body.dark .cta-form textarea,
body.dark .cta-form select{
  background:var(--dark-soft);
  border:1px solid #1e293b;
  color:var(--dark-text);
}

/* REMOVE DEFAULT SELECT ARROW */
.cta-form select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
}

/* SELECT BEAUTY */
.select-wrap{
  position:relative;
}
.select-wrap::after{
  content:'\f107';
  font-family:'Font Awesome 6 Free';
  font-weight:900;
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  color:#64748b;
  pointer-events:none;
}

/* BUTTON */
.cta-btn{
  width:100%;
  padding:16px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  color:#fff;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}
.cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(37,99,235,0.4);
}

/* RESPONSIVE */
@media(max-width:700px){
  .cta-form{
    grid-template-columns:1fr;
  }
  .cta-header h2{
    font-size:28px;
  }
}


/* ==========================================
   FOOTER SECTION
========================================== */
.footer-main{
  max-width:1200px;
  margin:auto;
  padding:70px 20px 40px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:40px;
}

/* LEFT */
.footer-brand{
  max-width:420px;
}
.footer-brand h3{
  font-size:22px;
  font-weight:700;
  margin-bottom:12px;
}
.footer-brand p{
  font-size:14px;
  line-height:1.7;
  color:#64748b;
}
body.dark .footer-brand p{
  color:#cbd5e1;
}

/* RIGHT */
.footer-links{
  display:flex;
  gap:60px;
  flex-wrap:wrap;
}

.footer-col h4{
  font-size:15px;
  margin-bottom:14px;
  font-weight:600;
}
.footer-col ul{
  list-style:none;
}
.footer-col ul li{
  margin-bottom:10px;
}
.footer-col ul li a{
  text-decoration:none;
  color:#64748b;
  font-size:14px;
  transition:0.3s;
}
.footer-col ul li a:hover{
  color:var(--blue);
}
body.dark .footer-col ul li a{
  color:#cbd5e1;
}
body.dark .footer-col ul li a:hover{
  color:#60a5fa;
}

/* COPYRIGHT BAR */
.footer-bottom{
  background:var(--light-soft);
  padding:18px 20px;
}
body.dark .footer-bottom{
  background:var(--dark-soft);
}

.footer-bottom-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

/* COPYRIGHT TEXT */
.footer-copy{
  font-size:13px;
  color:#64748b;
}
body.dark .footer-copy{
  color:#cbd5e1;
}

/* SOCIAL */
.footer-social{
  display:flex;
  gap:14px;
}
.footer-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(37,99,235,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--blue);
  font-size:16px;
  transition:0.3s;
}
.footer-social a:hover{
  background:var(--blue);
  color:#fff;
}
body.dark .footer-social a{
  background:rgba(96,165,250,0.15);
  color:#60a5fa;
}
body.dark .footer-social a:hover{
  background:#60a5fa;
  color:#020617;
}

/* RESPONSIVE */
@media(max-width:700px){
  .footer-main{
    flex-direction:column;
  }
  .footer-bottom-inner{
    flex-direction:column;
    text-align:center;
  }
}


/* ==========================================
   GLOBAL RESPONSIVE FINE-TUNING
========================================== */

@media(max-width:1200px){
  .section-title{
    font-size:36px;
  }
}

@media(max-width:992px){
  .section{
    padding:90px 0;
  }

  .section-title{
    font-size:32px;
  }
}

@media(max-width:768px){
  .section-title{
    font-size:28px;
  }

  .section-desc{
    font-size:14px;
  }
}

@media(max-width:576px){
  .section{
    padding:70px 0;
  }

  .container{
    padding:0 16px;
  }

  .btn{
    width:100%;
  }
}
