:root {
  --cream: #f5ede0;
  --espresso: #1a2b3c;
  --caramel: #d4a84b;
  --caramel-light: #e6b85c;
  --milk: #f8f9fc;
  --foam: #eef0f5;
  --charcoal: #1c1c1c;
  --muted: #5a6a7a;
  --border: rgba(180, 150, 80, 0.18);
  --shadow-warm: 0 20px 60px rgba(26,43,60,0.12);
  --shadow-card: 0 8px 32px rgba(26,43,60,0.10);
  --r: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  --primary-blue: #1a56db;
  --primary-blue-dark: #1e3a5f;
  --primary-blue-light: #3b82f6;
  --primary-gold: #f59e0b;
  --primary-gold-light: #fbbf24;
  --primary-gold-dark: #d97706;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-light: #e2e8f0;
  --gray-text: #475569;
  --dark-text: #0f172a;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; overflow-x:hidden; }

body {
  font-family: 'Inter', 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--dark-text);
  cursor: auto;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NOISE TEXTURE ── */
body::before {
  content:'';
  position: fixed;
  inset:0;
  pointer-events:none;
  z-index:9997;
  opacity:0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:256px;
}

/* ── PRELOADER ── */
#preloader {
  position:fixed;
  inset:0;
  background: var(--primary-blue-dark);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:99990;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { 
  opacity:0; 
  visibility:hidden; 
  pointer-events:none;
}

.preloader-container {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:32px;
  padding:20px;
}

.preloader-logo {
  font-family:'Inter', sans-serif;
  font-size:28px;
  font-weight:800;
  color:var(--white);
  letter-spacing:-0.5px;
  display:flex;
  align-items:center;
  gap:12px;
}
.preloader-logo img {
  height:45px;
  width:auto;
  object-fit:contain;
}

.building-loader {
  display:flex;
  align-items:flex-end;
  gap:8px;
  height:80px;
  padding:0 10px;
}
.building-block {
  background:var(--primary-gold);
  border-radius:2px 2px 0 0;
  animation: buildUp 1.4s ease-in-out infinite;
  position:relative;
  min-width:12px;
}
.building-block:nth-child(1) { height:30px; animation-delay:0s; background:var(--primary-gold); }
.building-block:nth-child(2) { height:50px; animation-delay:0.15s; background:var(--primary-gold-light); }
.building-block:nth-child(3) { height:65px; animation-delay:0.3s; background:var(--primary-gold); }
.building-block:nth-child(4) { height:75px; animation-delay:0.45s; background:var(--primary-gold-light); }
.building-block:nth-child(5) { height:45px; animation-delay:0.2s; background:var(--primary-gold); }
.building-block:nth-child(6) { height:55px; animation-delay:0.35s; background:var(--primary-gold-light); }
.building-block:nth-child(7) { height:35px; animation-delay:0.1s; background:var(--primary-gold); }
.building-block:nth-child(8) { height:60px; animation-delay:0.4s; background:var(--primary-gold-light); }
.building-block:nth-child(9) { height:40px; animation-delay:0.25s; background:var(--primary-gold); }
.building-block:nth-child(10) { height:70px; animation-delay:0.5s; background:var(--primary-gold-light); }

.building-block::after {
  content:'';
  position:absolute;
  top:4px;
  left:50%;
  transform:translateX(-50%);
  width:4px;
  height:4px;
  background:rgba(255,255,255,0.3);
  border-radius:1px;
  box-shadow: 0 8px 0 rgba(255,255,255,0.2), 0 16px 0 rgba(255,255,255,0.15);
  animation: windowGlow 1.4s ease-in-out infinite;
}
.building-block:nth-child(1)::after { animation-delay:0s; }
.building-block:nth-child(2)::after { animation-delay:0.15s; }
.building-block:nth-child(3)::after { animation-delay:0.3s; }
.building-block:nth-child(4)::after { animation-delay:0.45s; }
.building-block:nth-child(5)::after { animation-delay:0.2s; }
.building-block:nth-child(6)::after { animation-delay:0.35s; }
.building-block:nth-child(7)::after { animation-delay:0.1s; }
.building-block:nth-child(8)::after { animation-delay:0.4s; }
.building-block:nth-child(9)::after { animation-delay:0.25s; }
.building-block:nth-child(10)::after { animation-delay:0.5s; }

@keyframes buildUp {
  0%, 100% { transform:scaleY(1); opacity:0.7; }
  50% { transform:scaleY(1.15); opacity:1; }
}

@keyframes windowGlow {
  0%, 100% { opacity:0.3; }
  50% { opacity:0.9; }
}

.preloader-text {
  font-family:'Inter', sans-serif;
  font-size:13px;
  font-weight:400;
  color:rgba(255,255,255,0.5);
  letter-spacing:4px;
  text-transform:uppercase;
  animation: pulseText 1.6s ease-in-out infinite;
}

@keyframes pulseText {
  0%, 100% { opacity:0.3; }
  50% { opacity:1; }
}

.preloader-progress {
  width:200px;
  height:3px;
  background:rgba(255,255,255,0.15);
  border-radius:4px;
  overflow:hidden;
  position:relative;
}
.preloader-progress-bar {
  height:100%;
  width:0%;
  background:linear-gradient(to right, var(--primary-gold), var(--primary-gold-light));
  border-radius:4px;
  transition: width 0.1s linear;
}

/* ── NAV ── */
nav {
  position:fixed; top:0; width:100%;
  z-index:1000;
  padding:24px 0;
  transition:var(--r);
}
nav.solid {
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(20px);
  padding:16px 0;
  border-bottom:1px solid var(--gray-light);
}
.nav-wrap {
  max-width:1240px; margin:0 auto;
  padding:0 40px;
  display:flex; align-items:center;
  justify-content:space-between;
}
.nav-logo {
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  transition:color 0.3s;
}
.nav-logo-stack {
  position:relative;
  display:inline-block;
  height:32px;
}
.nav-logo-img {
  height:32px;
  width:auto;
  object-fit:contain;
  transition:opacity 0.3s ease;
}
.nav-logo-color {
  position:absolute;
  top:0; left:0;
  opacity:0;
}
.nav-logo-white { opacity:1; }
nav.solid .nav-logo-white { opacity:0; }
nav.solid .nav-logo-color { opacity:1; }
.nav-links {
  display:flex;
  gap:24px;
  list-style:none;
  align-items:center;
}
.nav-links a {
  font-size:13px; font-weight:600;
  letter-spacing:1px; text-transform:uppercase;
  color:rgba(255,255,255,0.9);
  text-decoration:none;
  position:relative;
  transition:color 0.3s;
}
nav.solid .nav-links a { color:var(--gray-text); }
.nav-links a::after {
  content:'';
  position:absolute;
  bottom:-4px; left:0;
  width:0; height:2px;
  background:var(--primary-gold);
  transition:width 0.35s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width:100%; }
.nav-links a:hover,
.nav-links a.active { color:var(--primary-gold) !important; }

/* ── DROPDOWN ── */
.dropdown {
  position:relative;
  display:inline-block;
}
.dropdown-btn {
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.9);
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
  transition:color 0.3s;
  display:flex;
  align-items:center;
  gap:6px;
  font-family:'Inter', sans-serif;
}
nav.solid .dropdown-btn { color:var(--gray-text); }
.dropdown-btn:hover { color:var(--primary-gold) !important; }
.dropdown-btn i.fa-chevron-down {
  font-size:10px;
  transition:transform 0.3s ease;
}
.dropdown:hover .dropdown-btn i.fa-chevron-down {
  transform:rotate(180deg);
}
.dropdown-menu {
  position:absolute;
  top:calc(100% + 16px);
  left:50%;
  transform:translateX(-50%) translateY(10px);
  background:var(--white);
  border-radius:8px;
  min-width:200px;
  padding:8px 0;
  box-shadow:0 20px 60px rgba(0,0,0,0.15);
  opacity:0;
  visibility:hidden;
  transition:all 0.3s ease;
  border:1px solid var(--gray-light);
}
.dropdown:hover .dropdown-menu {
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content:'';
  position:absolute;
  top:-8px;
  left:50%;
  transform:translateX(-50%) rotate(45deg);
  width:16px;
  height:16px;
  background:var(--white);
  border-top:1px solid var(--gray-light);
  border-left:1px solid var(--gray-light);
}
.dropdown-menu a {
  display:block;
  padding:10px 20px;
  font-size:13px;
  font-weight:500;
  color:var(--dark-text);
  text-decoration:none;
  transition:background 0.2s, color 0.2s;
  text-transform:none;
  letter-spacing:0;
}
.dropdown-menu a:hover {
  background:rgba(26,86,219,0.06);
  color:var(--primary-blue);
}
.dropdown-menu a i {
  margin-right:10px;
  color:var(--primary-gold);
  font-size:14px;
  width:18px;
}
.dropdown-menu a.active-drop {
  background:rgba(26,86,219,0.08);
  color:var(--primary-blue);
  font-weight:600;
}
.dropdown-menu a.active-drop i {
  color:var(--primary-blue);
}

.nav-burger {
  display:none;
  flex-direction:column; gap:5px;
  cursor:pointer; background:none; border:none;
  padding:4px;
}
.nav-burger span {
  display:block; width:24px; height:2px;
  background:var(--white);
  transition:var(--r);
  transform-origin:left;
}
nav.solid .nav-burger span { background:var(--primary-blue-dark); }
.nav-burger.open span:nth-child(1) { transform:rotate(42deg) translateY(-1px); }
.nav-burger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav-burger.open span:nth-child(3) { transform:rotate(-42deg) translateY(1px); }

.nav-mobile {
  position:fixed; top:0; right:-100%;
  width:min(320px,90vw); height:100vh;
  background:var(--white);
  border-left:1px solid var(--gray-light);
  z-index:999;
  transition:right 0.45s cubic-bezier(0.77,0,0.175,1);
  display:flex; flex-direction:column;
  justify-content:center; padding:40px;
  gap:28px;
  overflow-y:auto;
}
.nav-mobile.open { right:0; }
.nav-mobile .mobile-logo {
  margin-bottom:20px;
}
.nav-mobile .mobile-logo img {
  height:40px;
  width:auto;
  object-fit:contain;
}
.nav-mobile a {
  font-family:'Inter', sans-serif;
  font-size:24px; font-weight:600;
  color:var(--primary-blue-dark);
  text-decoration:none;
  transition:color 0.3s, transform 0.3s;
  display:block;
}
.nav-mobile a:hover { color:var(--primary-gold); transform:translateX(8px); }
.nav-mobile .mobile-dropdown-title {
  font-family:'Inter', sans-serif;
  font-size:24px; font-weight:600;
  color:var(--primary-blue-dark);
  margin-bottom:8px;
  display:flex;
  align-items:center;
  gap:8px;
}
.nav-mobile .mobile-dropdown-title i {
  font-size:18px;
  color:var(--primary-gold);
}
.nav-mobile .mobile-sub-links {
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-left:16px;
  border-left:2px solid var(--primary-gold);
  margin-bottom:8px;
}
.nav-mobile .mobile-sub-links a {
  font-size:16px;
  font-weight:500;
  color:var(--gray-text);
}
.nav-mobile .mobile-sub-links a:hover {
  color:var(--primary-blue);
  transform:translateX(8px);
}
.nav-mobile .mobile-sub-links a i {
  margin-right:10px;
  color:var(--primary-gold);
  width:20px;
}

/* ── HERO ── */
.hero {
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  padding:0 60px;
}

/* Hero Slider */
.hero-slider {
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-slide {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  z-index:0;
  transition:opacity 0.8s ease;
}
.hero-slide.active {
  opacity:1;
  z-index:1;
}

/* Overlay gelap agar teks terbaca */
.hero-overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:1;
}

/* Hero Content - sembunyikan semua kecuali yang active */
.hero-content {
  display:none;
  z-index:2;
  text-align:left;
  max-width:720px;
  padding:0;
  margin-right:auto;
  margin-left:60px;
}
.hero-content.active {
  display:block;
  animation:fadeUp 0.8s ease both;
}

.hero-tag {
  display:inline-block;
  font-size:11px;
  font-weight:600;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--primary-gold-light);
  border:1px solid rgba(245,158,11,0.4);
  padding:7px 20px;
  border-radius:40px;
  margin-bottom:24px;
  animation:fadeUp 1s ease both;
}
.hero-title {
  font-family:'Inter', sans-serif;
  font-size:clamp(2.8rem,5.5vw,5rem);
  font-weight:700;
  color:var(--white);
  line-height:1.1;
  letter-spacing:-1.5px;
  margin-bottom:20px;
  animation:fadeUp 1s 0.15s ease both;
}
.hero-title em {
  font-style:italic;
  color:var(--primary-gold-light);
  font-weight:700;
}
.hero-sub {
  font-size:18px;
  color:rgba(255,255,255,0.85);
  max-width:520px;
  margin:0 0 36px 0;
  line-height:1.8;
  font-weight:400;
  animation:fadeUp 1s 0.3s ease both;
}
.hero-sub strong {
  color:var(--primary-gold-light);
  font-weight:600;
}
.hero-btns {
  display:flex;
  gap:16px;
  justify-content:flex-start;
  flex-wrap:wrap;
  animation:fadeUp 1s 0.45s ease both;
}

.btn-solid {
  background:var(--primary-gold);
  color:var(--white);
  padding:14px 34px;
  border-radius:6px;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.5px;
  text-transform:uppercase;
  text-decoration:none;
  border:none;
  cursor:pointer;
  transition:background 0.3s, transform 0.3s, box-shadow 0.3s;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.btn-solid:hover {
  background:var(--primary-gold-light);
  transform:translateY(-3px);
  box-shadow:0 12px 32px rgba(245,158,11,0.4);
}
.btn-ghost {
  background:transparent;
  color:var(--white);
  padding:14px 34px;
  border-radius:6px;
  border:2px solid rgba(255,255,255,0.4);
  font-size:14px;
  font-weight:600;
  letter-spacing:0.5px;
  text-transform:uppercase;
  text-decoration:none;
  cursor:pointer;
  transition:background 0.3s, border-color 0.3s, transform 0.3s;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.btn-ghost:hover {
  background:rgba(255,255,255,0.1);
  border-color:var(--primary-gold);
  color:var(--primary-gold);
  transform:translateY(-3px);
}

.hero-arrow {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px; height:46px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.3);
  background:rgba(255,255,255,0.08);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  z-index:3;
  transition:background 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter:blur(4px);
}
.hero-arrow:hover {
  background:var(--primary-gold);
  border-color:var(--primary-gold);
  color:var(--primary-blue-dark);
}
.hero-arrow-prev { left:24px; }
.hero-arrow-next { right:24px; }

.hero-dots {
  position:absolute;
  bottom:90px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}
.hero-dot {
  width:10px; height:10px;
  border-radius:50%;
  background:rgba(255,255,255,0.35);
  cursor:pointer;
  transition:background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background:var(--primary-gold);
  transform:scale(1.25);
}

.hero-scroll-cue {
  position:absolute; bottom:32px; left:50%;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:rgba(255,255,255,0.5);
  font-size:10px; letter-spacing:4px; text-transform:uppercase;
  z-index:2;
}
.scroll-line {
  width:1px; height:50px;
  background:linear-gradient(to bottom, var(--primary-gold), transparent);
  animation:scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.4; transform:scaleY(1); }
  50% { opacity:1; transform:scaleY(1.1); }
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}

@media (max-width:768px) {
  .hero-arrow { display:none; }
  .hero { padding:0 30px; }
  .hero-content { margin-left:0; margin-right:0; }
  .hero-title { font-size:2.8rem; }
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--primary-blue-dark);
  padding:18px 0;
  overflow:hidden;
  border-top:2px solid var(--primary-gold);
  border-bottom:2px solid var(--primary-gold);
  position:relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content:'✦';
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  color:var(--primary-gold);
  font-size:14px;
  z-index:2;
  animation:pulseStar 2s ease-in-out infinite;
}
.marquee-strip::before { left:20px; }
.marquee-strip::after { right:20px; }
@keyframes pulseStar {
  0%,100% { opacity:0.3; transform:translateY(-50%) scale(1); }
  50% { opacity:1; transform:translateY(-50%) scale(1.3); }
}
.marquee-inner {
  display:flex;
  gap:0;
  animation:marquee 35s linear infinite;
  width:max-content;
}
.marquee-item {
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 20px;
  color:var(--white);
  font-size:14px;
  font-weight:500;
  letter-spacing:1px;
  text-transform:uppercase;
  white-space:nowrap;
}
.marquee-item i {
  font-size:18px;
  opacity:0.9;
  color:var(--primary-gold-light);
}
.marquee-item .dot {
  display:inline-block;
  width:5px;
  height:5px;
  background:var(--primary-gold);
  border-radius:50%;
  margin-left:4px;
  flex-shrink:0;
  vertical-align:middle;
}
@keyframes marquee {
  from { transform:translateX(0); }
  to { transform:translateX(-50%); }
}

@media (max-width:768px) {
  .marquee-item { padding:0 15px; font-size:12px; }
  .marquee-item i { font-size:15px; }
  .marquee-strip::before, .marquee-strip::after { display:none; }
}
@media (max-width:480px) {
  .marquee-item { padding:0 12px; font-size:10px; gap:6px; }
  .marquee-item i { font-size:13px; }
  .marquee-item .dot { width:4px; height:4px; margin-left:3px; }
}

/* ── ABOUT ── */
.about {
  padding:120px 0 80px 0;
  background:var(--white);
}
.about-wrap {
  max-width:1240px; margin:0 auto; padding:0 40px;
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.label {
  font-size:12px; letter-spacing:4px; text-transform:uppercase;
  color:var(--primary-blue); font-weight:600;
  margin-bottom:20px; display:block;
}
.section-h {
  font-family:'Inter', sans-serif;
  font-size:clamp(2rem,3.5vw,3.2rem);
  font-weight:700; line-height:1.2;
  margin-bottom:24px; color:var(--primary-blue-dark);
  letter-spacing:-0.5px;
}
.section-h span { font-style:italic; color:var(--primary-gold-dark); font-weight:700; }
.about-text { color:var(--gray-text); line-height:1.9; margin-bottom:18px; font-size:16px; }

.stats-row {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:0; margin-top:48px;
  border-top:1px solid var(--gray-light);
  border-left:1px solid var(--gray-light);
}
.stat-box {
  padding:28px 20px;
  border-right:1px solid var(--gray-light);
  border-bottom:1px solid var(--gray-light);
  text-align:center;
}
.stat-num {
  font-family:'Inter', sans-serif;
  font-size:2.8rem; font-weight:700;
  color:var(--primary-blue); display:block;
  line-height:1;
}
.stat-label { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--gray-text); margin-top:6px; display:block; font-weight:500; }

.about-img-wrap {
  position:relative;
}
.about-img-wrap img {
  width:100%; height:560px; object-fit:cover;
  display:block;
  border-radius:8px;
  filter:sepia(0%) saturate(100%);
  transition:filter 0.5s;
}
.about-img-wrap:hover img { filter:sepia(0%) saturate(110%); }
.award-pill {
  position:absolute; bottom:-20px; right:30px;
  background:var(--primary-blue-dark);
  color:var(--primary-gold-light);
  padding:14px 24px;
  border-radius:6px;
  display:flex; align-items:center; gap:12px;
  font-size:12px; letter-spacing:2px; text-transform:uppercase;
  font-weight:600;
  box-shadow:var(--shadow-warm);
}
.award-pill i { font-size:18px; color:var(--primary-gold); }

@media (max-width:768px) {
  .about-wrap { grid-template-columns:1fr; gap:50px; }
  .about-img-wrap img { height:380px; }
  .stats-row { grid-template-columns:1fr 1fr; }
}
@media (max-width:480px) {
  .about { padding:80px 0 60px 0; }
  .about-wrap { padding:0 20px; }
}

/* ── PERIZINAN SERVICES ── */
.perizinan-services {
  padding: 80px 0 60px 0;
  background: var(--off-white);
}
.perizinan-services .section-center {
  text-align: center;
  margin-bottom: 60px;
}
.perizinan-services .section-center p {
  color: var(--gray-text);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.perizinan-row {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.perizinan-card-flat {
  text-align: center;
}
.perizinan-flat-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 190px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(30,58,95,0.1);
}
.perizinan-flat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.perizinan-flat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 24px;
  margin-bottom: 12px;
  border: 3px solid var(--white);
  box-shadow: 0 4px 15px rgba(26,86,219,0.25);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.perizinan-card-flat:hover .perizinan-flat-icon {
  background: var(--primary-gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.perizinan-card-flat h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue-dark);
  margin-bottom: 6px;
}
.perizinan-card-flat p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
  padding: 0 4px;
}

@media (max-width:768px) {
  .perizinan-row { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; padding: 0 24px; }
  .perizinan-flat-icon { width: 54px; height: 54px; font-size: 20px; }
}
@media (max-width:480px) {
  .perizinan-services { padding:60px 0 40px 0; }
  .perizinan-row { grid-template-columns: 1fr; padding: 0 20px; max-width: 380px; }
  .perizinan-flat-icon { width: 50px; height: 50px; font-size: 18px; }
}

/* ── WHY CHOOSE US ── */
.why-choose {
  padding:60px 0 60px 0;
  background:var(--white);
  position:relative;
  overflow:hidden;
}
.why-choose::before {
  content:'';
  position:absolute;
  top:-50%;
  right:-20%;
  width:600px;
  height:600px;
  background:radial-gradient(circle, rgba(26,86,219,0.04) 0%, transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.why-choose .section-center {
  text-align:center;
  margin-bottom:60px;
  position:relative;
  z-index:1;
}
.why-choose .section-center p {
  color:var(--gray-text);
  font-size:16px;
  max-width:650px;
  margin:0 auto;
  line-height:1.8;
}
.why-choose .section-center .highlight {
  color:var(--primary-gold-dark);
  font-weight:700;
}
.why-grid {
  max-width:1240px;
  margin:0 auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  position:relative;
  z-index:1;
}
.why-card {
  background:var(--off-white);
  border-radius:8px;
  padding:28px 20px 30px;
  text-align:center;
  border:1px solid var(--gray-light);
  transition:transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position:relative;
  overflow:hidden;
}
.why-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-warm);
  background:var(--white);
}
.why-card .icon-box {
  width:50px;
  height:50px;
  background:var(--primary-blue);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 12px;
  color:var(--white);
  font-size:20px;
  transition:background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.why-card:hover .icon-box {
  background:var(--primary-gold);
  color:var(--white);
  transform:scale(1.1);
}
.why-card h4 {
  font-family:'Inter', sans-serif;
  font-size:15px;
  font-weight:700;
  color:var(--primary-blue-dark);
  margin-bottom:4px;
}
.why-card p {
  font-size:13px;
  color:var(--gray-text);
  line-height:1.5;
}

@media (max-width:1024px) {
  .why-grid { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:768px) {
  .why-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:480px) {
  .why-choose { padding:40px 0 40px 0; }
  .why-grid { grid-template-columns:1fr; }
}

/* ── AREA JANGKAUAN ── */
.area-section-new {
  padding: 60px 0;
  background: var(--off-white);
}
.area-section-new .section-center {
  text-align: center;
  margin-bottom: 50px;
}
.area-section-new .section-center p {
  color: var(--gray-text);
  font-size: 16px;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.8;
}
.map-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.map-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: auto;
  border-radius: 12px;
  cursor: pointer;
  transition: all .4s ease;
}
.map-image:hover {
  transform: scale(1.02);
}

/* Lightbox untuk map */
.map-lightbox {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;
  cursor:pointer;
  animation:fadeIn 0.3s ease;
  padding:40px;
}
.map-lightbox img {
  max-width:95vw;
  max-height:90vh;
  object-fit:contain;
  border-radius:8px;
  box-shadow:0 40px 100px rgba(0,0,0,0.6);
}
.map-lightbox .close-btn {
  position:absolute;
  top:20px;
  right:28px;
  color:rgba(255,255,255,0.7);
  font-size:32px;
  cursor:pointer;
  transition:color 0.2s;
}
.map-lightbox .close-btn:hover {
  color:var(--primary-gold);
}

@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}

@media (max-width: 992px) {
  .map-container { padding: 0 25px; }
  .map-image { max-width: 100%; }
}
@media (max-width: 768px) {
  .area-section-new { padding: 50px 0; }
  .area-section-new .section-center { margin-bottom: 35px; }
  .area-section-new .section-center p { font-size: 15px; padding: 0 20px; }
  .map-container { padding: 0 15px; }
}
@media (max-width: 480px) {
  .area-section-new { padding:40px 0 40px 0; }
  .map-image { border-radius: 8px; }
}

/* ── KLIEN KAMI ── */
.klien-section {
  padding:60px 0 120px 0;
  background:var(--white);
}
.klien-section .section-center {
  text-align:center;
  margin-bottom:50px;
}
.klien-section .section-center p {
  color:var(--gray-text);
  font-size:16px;
  max-width:600px;
  margin:0 auto;
  line-height:1.8;
}
.logo-grid {
  max-width:900px;
  margin:0 auto 60px;
  padding:0 40px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}
.logo-item {
  background:var(--white);
  border-radius:8px;
  padding:20px 14px;
  text-align:center;
  border:1px solid var(--gray-light);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:130px;
}
.logo-item:hover {
  transform:translateY(-4px);
  box-shadow:var(--shadow-card);
}
.logo-item .logo-img {
  width:90px;
  height:90px;
  object-fit:contain;
  margin-bottom:8px;
  border-radius:4px;
}
.logo-item .logo-name {
  font-size:12px;
  font-weight:600;
  color:var(--primary-blue-dark);
  letter-spacing:0.3px;
  text-align:center;
}

.testimoni-grid {
  max-width:1000px;
  margin:0 auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testimoni-card {
  background:var(--off-white);
  border-radius:8px;
  padding:30px 28px;
  border:1px solid var(--gray-light);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  position:relative;
}
.testimoni-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-warm);
}
.testimoni-card::before {
  content:'"';
  position:absolute;
  top:10px;
  left:16px;
  font-family:'Inter', serif;
  font-size:48px;
  color:rgba(26,86,219,0.08);
  line-height:1;
}
.testimoni-card .testi-header {
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:12px;
}
.testi-avatar {
  width:56px;
  height:56px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
  border:2px solid var(--gray-light);
  background:var(--white);
}
.testi-avatar img {
  width:100%;
  height:100%;
  object-fit:contain;
  padding:8px;
}
.testi-info h4 {
  font-family:'Inter', sans-serif;
  font-size:16px;
  font-weight:700;
  color:var(--primary-blue-dark);
}
.testi-info .testi-position {
  font-size:12px;
  color:var(--gray-text);
}
.testi-stars {
  color:var(--primary-gold);
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:8px;
}
.testi-text {
  font-size:14px;
  color:var(--gray-text);
  line-height:1.7;
  font-style:italic;
}

@media (max-width:1024px) {
  .logo-grid { grid-template-columns:repeat(3,1fr); }
  .testimoni-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  .logo-grid { grid-template-columns:repeat(3,1fr); }
  .testimoni-grid { grid-template-columns:1fr; }
}
@media (max-width:480px) {
  .klien-section { padding:40px 0 80px 0; }
  .logo-grid { grid-template-columns:repeat(2,1fr); }
  .testimoni-grid { grid-template-columns:1fr; }
}

/* ── ARTICLES ── */
.articles-section {
  padding:100px 0;
  background:var(--off-white);
}
.articles-section .section-center {
  text-align:center;
  margin-bottom:50px;
}
.articles-section .section-center p {
  color:var(--gray-text);
  font-size:16px;
  max-width:600px;
  margin:0 auto;
  line-height:1.8;
}
.articles-grid {
  max-width:1100px;
  margin:0 auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}
.article-card {
  background:var(--white);
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--gray-light);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  display:grid;
  grid-template-columns:280px 1fr;
}
.article-card:hover {
  transform:translateY(-4px);
  box-shadow:var(--shadow-warm);
}
.article-card .article-img {
  height:100%;
  min-height:200px;
  overflow:hidden;
  position:relative;
}
.article-card .article-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.5s ease;
}
.article-card:hover .article-img img {
  transform:scale(1.05);
}
.article-card .article-img .article-badge {
  position:absolute;
  top:12px;
  left:12px;
  background:var(--primary-blue);
  color:var(--white);
  font-size:9px;
  font-weight:700;
  letter-spacing:0.8px;
  text-transform:uppercase;
  padding:4px 14px;
  border-radius:20px;
}
.article-card .article-body {
  padding:24px 30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.article-card .article-body .article-number {
  font-family:'Inter', sans-serif;
  font-size:11px;
  font-weight:600;
  color:var(--primary-blue);
  letter-spacing:1.5px;
  margin-bottom:4px;
}
.article-card .article-body h3 {
  font-family:'Inter', sans-serif;
  font-size:20px;
  font-weight:700;
  color:var(--primary-blue-dark);
  margin-bottom:6px;
  line-height:1.3;
}
.article-card .article-body h3 span {
  color:var(--primary-gold-dark);
}
.article-card .article-body .article-meta {
  display:flex;
  gap:16px;
  font-size:12px;
  color:var(--gray-text);
  margin-bottom:10px;
  flex-wrap:wrap;
}
.article-card .article-body .article-meta i {
  margin-right:4px;
  color:var(--primary-blue);
  font-size:11px;
}
.article-card .article-body .article-desc {
  font-size:14px;
  color:var(--gray-text);
  line-height:1.8;
  max-height:0;
  overflow:hidden;
  transition:max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
             opacity 0.4s ease, 
             margin 0.4s ease,
             padding 0.4s ease;
  opacity:0;
  margin:0;
  padding:0;
}
.article-card .article-body .article-desc.open {
  max-height:800px;
  opacity:1;
  margin:12px 0 10px 0;
  padding-top:12px;
  border-top:1px solid var(--gray-light);
}
.article-card .article-body .article-desc ul {
  list-style:none;
  padding:0;
  margin-top:8px;
}
.article-card .article-body .article-desc ul li {
  padding:5px 0;
  padding-left:20px;
  position:relative;
  font-size:13px;
}
.article-card .article-body .article-desc ul li::before {
  content:'▸';
  position:absolute;
  left:0;
  color:var(--primary-gold);
  font-weight:bold;
  font-size:14px;
}
.article-card .article-body .article-btn-wrap {
  margin-top:4px;
}
.article-card .article-body .article-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--primary-blue);
  color:var(--white);
  font-size:14px;
  font-weight:600;
  padding:10px 24px;
  border-radius:6px;
  border:none;
  cursor:pointer;
  font-family:'Inter', sans-serif;
  transition:background 0.3s ease, transform 0.2s ease, gap 0.3s ease;
  min-width:160px;
  justify-content:center;
}
.article-card .article-body .article-link:hover {
  background:var(--primary-blue-dark);
  transform:translateY(-2px);
  gap:14px;
}
.article-card .article-body .article-link i {
  font-size:13px;
  transition:transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.article-card .article-body .article-link.open i {
  transform:rotate(180deg);
}
.article-card .article-body .article-link .btn-text {
  transition:all 0.3s ease;
}

@media (max-width:1024px) {
  .article-card { grid-template-columns:1fr; }
  .article-card .article-img { min-height:200px; max-height:220px; }
}
@media (max-width:768px) {
  .articles-section { padding:70px 0; }
  .article-card .article-body { padding:20px 22px; }
  .article-card .article-body h3 { font-size:18px; }
  .article-card .article-body .article-link { padding:10px 20px; font-size:13px; min-width:140px; }
}
@media (max-width:480px) {
  .articles-section { padding:50px 0; }
  .article-card .article-body { padding:16px 18px; }
  .article-card .article-body h3 { font-size:16px; }
  .article-card .article-body .article-desc { font-size:13px; }
  .article-card .article-body .article-link { padding:10px 16px; font-size:12px; min-width:120px; width:100%; }
  .articles-grid { padding:0 16px; gap:16px; }
}

/* ── GALLERY ── */
.gallery-sec-new {
  padding: 80px 0 80px 0;
  background: var(--white);
}
.gallery-sec-new .section-center {
  text-align: center;
  margin-bottom: 50px;
}
.gallery-sec-new .section-center p {
  color: var(--gray-text);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.gallery-grid-new {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card-new {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  cursor: pointer;
}
.gallery-card-new:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
}
.gallery-card-img {
  overflow: hidden;
  position: relative;
  height: 220px;
}
.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card-new:hover .gallery-card-img img {
  transform: scale(1.08);
}
.gallery-card-body {
  padding: 16px 18px 20px;
  text-align: center;
}
.gallery-card-body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-blue-dark);
  margin-bottom: 4px;
}
.gallery-card-body p {
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 8px;
  line-height: 1.5;
}
.gallery-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary-blue);
  border: 1px solid rgba(26,86,219,0.2);
  padding: 3px 14px;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.gallery-card-new:hover .gallery-tag {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}
.gallery-tag i {
  font-size: 9px;
  margin-right: 5px;
  color: var(--primary-gold);
}
.gallery-card-new:hover .gallery-tag i {
  color: var(--white);
}

/* Lightbox untuk gallery */
.gallery-lightbox {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;
  cursor:pointer;
  animation:fadeIn 0.3s ease;
  padding:40px;
}
.gallery-lightbox img {
  max-width:90vw;
  max-height:88vh;
  object-fit:contain;
  border-radius:4px;
  box-shadow:0 40px 100px rgba(0,0,0,0.6);
}
.gallery-lightbox .close-btn {
  position:absolute;
  top:20px;
  right:28px;
  color:rgba(255,255,255,0.7);
  font-size:32px;
  cursor:pointer;
  transition:color 0.2s;
}
.gallery-lightbox .close-btn:hover {
  color:var(--primary-gold);
}

@media (max-width:1024px) {
  .gallery-grid-new { grid-template-columns:repeat(3,1fr); gap:20px; }
}
@media (max-width:768px) {
  .gallery-grid-new { grid-template-columns:repeat(2,1fr); gap:16px; }
  .gallery-card-img { height:180px; }
}
@media (max-width:480px) {
  .gallery-sec-new { padding:40px 0 40px 0; }
  .gallery-grid-new { grid-template-columns:1fr; gap:16px; }
  .gallery-card-img { height:200px; }
}

/* ── CONTACT ── */
.contact-sec {
  padding:120px 0;
  background:var(--primary-blue-dark);
}
.contact-sec .label { color:var(--primary-gold-light); }
.contact-sec .section-h { color:var(--white); }
.contact-sec .section-h span { color:var(--primary-gold-light); }
.contact-wrap {
  max-width:1240px; margin:0 auto; padding:0 40px;
  display:grid; grid-template-columns:1fr 1fr; gap:80px;
}
.contact-info-text {
  color:rgba(255,255,255,0.7);
  font-size:16px; line-height:1.9; margin-bottom:44px;
}
.info-row {
  display:flex; gap:20px; margin-bottom:28px; align-items:flex-start;
}
.info-icon {
  width:44px; height:44px; flex-shrink:0;
  border:1px solid rgba(245,158,11,0.3);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--primary-gold);
  font-size:18px;
  transition:background 0.3s, border-color 0.3s, color 0.3s;
}
.info-row:hover .info-icon {
  background:var(--primary-gold);
  color:var(--primary-blue-dark);
  border-color:var(--primary-gold);
}
.info-text h4 {
  font-family:'Inter', sans-serif;
  font-size:16px; font-weight:600;
  color:var(--white); margin-bottom:5px;
}
.info-text p { 
  color:rgba(255,255,255,0.6); 
  font-size:14px; 
  line-height:1.7; 
}

/* Sosial Media - seperti desain kontak lainnya */
.social-row {
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:4px;
  flex-wrap:wrap;
}
.social-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,0.6);
  text-decoration:none;
  font-size:14px;
  transition:color 0.3s;
}
.social-link:hover {
  color:var(--primary-gold);
}
.social-link i {
  font-size:16px;
  color:var(--primary-gold);
  transition:color 0.3s;
}
.social-link:hover i {
  color:var(--primary-gold-light);
}
.social-divider {
  color:rgba(255,255,255,0.2);
  font-size:14px;
}

.contact-form { display:flex; flex-direction:column; gap:16px; }
.field {
  position:relative;
}
.field input, .field textarea {
  width:100%;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(245,158,11,0.2);
  border-radius:6px;
  padding:16px 18px;
  color:var(--white);
  font-family:'Inter', sans-serif;
  font-size:15px;
  transition:border-color 0.3s, background 0.3s;
  outline:none;
}
.field input::placeholder, .field textarea::placeholder {
  color:rgba(255,255,255,0.4);
}
.field input:focus, .field textarea:focus {
  border-color:var(--primary-gold);
  background:rgba(245,158,11,0.05);
}
.field textarea { resize:none; height:130px; }
.field-line {
  position:absolute; bottom:0; left:0;
  height:2px; width:0;
  background:var(--primary-gold);
  transition:width 0.4s ease;
  border-radius:0 0 6px 6px;
}
.field input:focus ~ .field-line,
.field textarea:focus ~ .field-line { width:100%; }
.form-status-msg {
  font-size:14px;
  margin-top:4px;
  min-height:18px;
  transition:all 0.3s;
}
.form-status-msg.ok { color:#4ade80; }
.form-status-msg.err { color:#f87171; }

@media (max-width:768px) {
  .contact-wrap { grid-template-columns:1fr; gap:50px; }
}
@media (max-width:480px) {
  .contact-sec { padding:80px 0; }
  .social-row { gap:8px; }
  .social-link { font-size:13px; }
}

/* ── FOOTER ── */
footer {
  background: var(--off-white);
  padding:60px 0 24px;
  border-top:2px solid var(--gray-light);
}
.footer-wrap {
  max-width:1240px; margin:0 auto; padding:0 40px;
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:50px;
  padding-bottom:40px;
  border-bottom:1px solid var(--gray-light);
}
.footer-brand .brand-name {
  font-family:'Inter', sans-serif;
  font-size:22px; font-weight:700;
  color:var(--primary-blue-dark);
  margin-bottom:12px;
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-brand .brand-name img {
  height:32px;
  width:auto;
  object-fit:contain;
}
.footer-brand p { 
  color:var(--gray-text); 
  font-size:14px; 
  line-height:1.8; 
  max-width:340px;
}
.footer-col h4 {
  font-family:'Inter', sans-serif;
  font-size:14px;
  color:var(--primary-blue-dark);
  margin-bottom:16px;
  font-weight:700;
  letter-spacing:0.5px;
  text-transform:uppercase;
}
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:8px; }
.footer-col ul li a {
  color:var(--gray-text);
  font-size:14px;
  text-decoration:none;
  transition:color 0.3s, padding-left 0.3s;
}
.footer-col ul li a:hover { 
  color:var(--primary-gold); 
  padding-left:6px; 
}
.newsletter-form { 
  display:flex; 
  gap:8px; 
  margin-top:4px; 
}
.newsletter-form input {
  flex:1; 
  background:var(--white);
  border:1px solid var(--gray-light);
  border-radius:6px; 
  padding:10px 14px;
  color:var(--dark-text); 
  font-size:14px; 
  outline:none;
  transition:border-color 0.3s;
}
.newsletter-form input:focus { 
  border-color:var(--primary-gold); 
}
.newsletter-form input::placeholder { 
  color:var(--gray-text); 
  opacity:0.6;
}
.newsletter-form button {
  background:var(--primary-gold);
  border:none; 
  padding:10px 18px;
  border-radius:6px; 
  color:var(--white);
  cursor:pointer; 
  transition:background 0.3s;
  font-size:14px;
  white-space:nowrap;
}
.newsletter-form button:hover { 
  background:var(--primary-gold-dark); 
}
.footer-bottom {
  max-width:1240px; 
  margin:0 auto; 
  padding:20px 40px 0;
  display:flex; 
  justify-content:space-between; 
  align-items:center;
  color:var(--gray-text); 
  font-size:13px;
  border-top:1px solid var(--gray-light);
  margin-top:30px;
}
.footer-bottom span { 
  color:var(--primary-gold); 
}

@media (max-width:768px) {
  .footer-wrap { 
    grid-template-columns:1fr; 
    gap:30px; 
  }
  .footer-bottom { 
    flex-direction:column; 
    gap:8px; 
    text-align:center; 
  }
  .footer-brand p { max-width:100%; }
}
@media (max-width:480px) {
  .footer-wrap { padding:0 20px; }
  .footer-bottom { padding:20px 20px 0; }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity:0; transform:translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left {
  opacity:0; transform:translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right {
  opacity:0; transform:translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity:1; transform:translateX(0); }

.d1 { transition-delay:0.1s; }
.d2 { transition-delay:0.2s; }
.d3 { transition-delay:0.3s; }
.d4 { transition-delay:0.4s; }
.d5 { transition-delay:0.5s; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .about-wrap { gap:50px; }
}
@media(max-width:768px) {
  .nav-links { display:none; }
  .nav-burger { display:flex; }
  .hero-title { font-size:2.8rem; }
  .hero { padding:0 30px; }
  .hero-content { margin-left:0; margin-right:0; }
}
@media(max-width:480px) {
  .nav-wrap, .about-wrap, .articles-grid,
  .contact-wrap, .footer-wrap { padding-left:20px; padding-right:20px; }
  .hero { padding:0 20px; }
  .hero-title { font-size:2.2rem; }
  .hero-btns { flex-direction:column; align-items:flex-start; }
}