/* ═══════════════════════════════════════════════
   LEGALKES.NET — Main Stylesheet
   ═══════════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --navy:        #1a3a5c;
  --navy-dark:   #0f2540;
  --teal:        #2a8fa8;
  --teal-light:  #3db8d8;
  --green:       #27ae60;
  --green-bright:#2ecc71;
  --cream:       #f4f0e8;
  --white:       #ffffff;
  --gray:        #6b7c93;
  --light-bg:    #eef4f8;
  --accent:      #e8a020;
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42,143,168,.12);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(15,37,64,.10); }

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #063064;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--green);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: all .25s;
  border: none;
  cursor: pointer;
}
.nav-cta:hover {
  background: var(--green-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(39,174,96,.35);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 6% 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-blob {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,184,216,.18) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero-badge {
  display: inline-block;
  background: rgba(39,174,96,.2);
  border: 1px solid rgba(39,174,96,.4);
  color: var(--green-bright);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 24px;
  animation: fadeUp .6s ease both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: white;
  margin-bottom: 20px;
  animation: fadeUp .7s .1s ease both;
}
.hero h1 span { color: var(--teal-light); }
.hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeUp .7s .2s ease both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}

/* Buttons */
.btn-primary {
  background: var(--green);
  color: white;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(39,174,96,.4);
}
.btn-secondary {
  background: rgba(255,255,255,.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all .25s;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: clamp(300px, 42%, 460px);
  display: flex;
  align-items: flex-end;
}
.hero-consultant-wrap {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.consultant-img {
  width: 100%;
  max-width: 420px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.4));
  animation: fadeUp .9s .4s ease both;
}
.floating-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  padding: 16px 20px;
  z-index: 3;
  animation: fadeUp 1s .7s ease both;
  min-width: 220px;
}
.floating-badge {
  position: absolute;
  top: 60px;
  right: -10px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: fadeUp 1s .9s ease both;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* Stats */
.stat-row {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--teal-light);
}
.stat-label {
  font-size: .75rem;
  opacity: .7;
}
.counter { font-family: 'Playfair Display', serif; }

/* Tags */
.tag {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .75rem;
}

/* ══════════════════════════════════
   CLIENT LOGO CAROUSEL
══════════════════════════════════ */
.clients {
  background: var(--cream);
  padding: 56px 6%;
  border-top: 1px solid rgba(26,58,92,.08);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 36px;
  font-weight: 600;
}

/* Carousel track wrapper — masks overflow */
.carousel-viewport {
  position: relative;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* Two identical tracks side-by-side so seamless loop works */
.carousel-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scrollLeft 28s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }

/* Each logo card */
.logo-card {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(26,58,92,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  box-shadow: 0 2px 12px rgba(26,58,92,.05);
  transition: box-shadow .25s, transform .25s;
}
.logo-card:hover {
  box-shadow: 0 6px 24px rgba(42,143,168,.18);
  transform: translateY(-3px);
}
.logo-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .6;
  transition: filter .3s, opacity .3s;
}
.logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   SECTION COMMON
══════════════════════════════════ */
section { padding: 100px 6%; }

.section-label {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--navy-dark);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 580px;
}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-bg {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: 24px;
  padding: 48px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
.about-img-bg::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.about-img-bg h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.about-img-bg p {
  opacity: .8;
  font-size: .95rem;
  line-height: 1.6;
}
.about-img-bg img { width: 200px; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.checkmark-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkmark-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--navy);
}
.checkmark-list li::before {
  content: '✓';
  background: var(--green);
  color: white;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services { background: var(--light-bg); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(26,58,92,.08);
  transition: all .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover::after  { opacity: 1; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26,58,92,.18);
}
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 54px; height: 54px;
  background: var(--light-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: background .3s;
}
.service-card:hover .service-icon { background: rgba(255,255,255,.15); }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  transition: color .3s;
}
.service-card:hover h3 { color: white; }
.service-card p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.65;
  transition: color .3s;
}
.service-card:hover p { color: rgba(255,255,255,.8); }

/* ══════════════════════════════════
   KEUNGGULAN
══════════════════════════════════ */
.keunggulan { background: white; }
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.k-card {
  padding: 32px 28px;
  border-radius: 20px;
  border: 1.5px solid rgba(26,58,92,.1);
  transition: all .3s;
}
.k-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(42,143,168,.12);
}
.k-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.k-card h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--navy-dark);
}
.k-card p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ══════════════════════════════════
   PORTFOLIO — PHOTO GALLERY
══════════════════════════════════ */
.portfolio {
  background: var(--navy-dark);
  padding: 100px 6%;
}
.portfolio .section-title { color: white; }

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

/* 4-column grid; .photo-wide spans 2 cols */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.photo-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.05);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.photo-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.photo-item.photo-wide { grid-column: span 2; }

.photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.photo-item:hover img { transform: scale(1.07); }

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,28,50,.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s ease;
}
.photo-item:hover .photo-overlay { opacity: 1; }

.photo-badge {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
  width: fit-content;
}
.photo-name {
  color: white;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.3;
}

/* CTA card inside grid */
.photo-cta-card {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(39,174,96,.18), rgba(39,174,96,.08));
  border: 1px solid rgba(39,174,96,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.photo-cta-card.visible { opacity: 1; transform: translateY(0); }
.photo-cta-inner { text-align: center; padding: 20px; }
.photo-cta-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green-bright);
  line-height: 1;
}
.photo-cta-label {
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  margin: 6px 0 18px;
  line-height: 1.4;
}
.photo-cta-btn {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .82rem;
  text-decoration: none;
  transition: all .25s;
}
.photo-cta-btn:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39,174,96,.35);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6,18,34,.96);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lb-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
}
.lightbox img {
  max-width: 88vw;
  max-height: 76vh;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,.65);
  display: block;
}
.lb-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.lb-tag {
  background: var(--teal);
  color: white;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.lb-caption strong { color: white; font-size: .92rem; }
.lb-caption span   { color: rgba(255,255,255,.45); font-size: .82rem; }

.lb-close {
  position: fixed;
  top: 20px; right: 24px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  font-family: inherit;
}
.lb-close:hover { background: rgba(220,50,50,.3); color: white; }

.lb-arrow {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  font-family: inherit;
}
.lb-arrow:hover { background: rgba(61,184,216,.3); border-color: var(--teal-light); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-counter {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.35);
  font-size: .76rem;
  letter-spacing: .1em;
}

/* ══════════════════════════════════
   CTA
══════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  padding: 100px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.05) 0%, transparent 70%);
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: white;
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-white {
  background: white;
  color: var(--navy-dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.5);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all .25s;
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}
.trust-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
  position: relative;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.trust-item span { font-size: 1.1rem; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 60px 6% 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
  display: flex;
}
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  line-height: 1.7;
}
.footer-col h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: .95rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,.35);
  font-size: .82rem;
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all .2s;
  border: 1px solid rgba(255,255,255,.1);
}
.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
}

/* ══════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all .25s;
  animation: float 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: translateY(-50%) scale(1);    }
  50%       { transform: translateY(-50%) scale(1.08); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid, .hero-visual { display: none; }
  .services-grid, .keunggulan-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .nav-links    { display: none; }
  .logo-card    { width: 130px; height: 68px; }
  /* photo grid: 2 cols, wide still spans 2 */
  .photo-grid   { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }
  .lb-arrow     { display: none; }
}
@media (max-width: 600px) {
  .services-grid, .keunggulan-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .footer-grid  { grid-template-columns: 1fr; }
  .logo-card    { width: 110px; height: 60px; }
  /* photo grid: single column on very small screens */
  .photo-grid         { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .photo-item.photo-wide { grid-column: span 2; }
}