/* =====================================================================
   TAK Institute — Theme
   Deep Navy #0B1F2A | Teal #009F9A | Gold #F4C542
   ===================================================================== */

:root {
  --navy: #0b1f2a;
  --navy-soft: #12303f;
  --teal: #009f9a;
  --teal-dark: #007672;
  --gold: #f4c542;
  --gold-dark: #d9a916;
  --bg: #f8faf9;
  --card: #ffffff;
  --text: #172126;
  --text-muted: #5b6b70;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(11, 31, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 31, 42, 0.1);
  --shadow-lg: 0 20px 50px rgba(11, 31, 42, 0.16);
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
}

a {
  color: var(--teal);
  text-decoration: none;
}
a:hover {
  color: var(--teal-dark);
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

.text-teal {
  color: var(--teal) !important;
}
.text-gold {
  color: var(--gold) !important;
}
.text-navy {
  color: var(--navy) !important;
}
.text-muted-soft {
  color: var(--text-muted) !important;
}
.bg-navy {
  background-color: var(--navy) !important;
}
.bg-teal {
  background-color: var(--teal) !important;
}
.bg-gold {
  background-color: var(--gold) !important;
}
.bg-soft {
  background-color: var(--bg) !important;
}

.section {
  padding: 96px 0;
}
.section-sm {
  padding: 64px 0;
}
@media (max-width: 767.98px) {
  .section {
    padding: 64px 0;
  }
  .section-sm {
    padding: 44px 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(0, 159, 154, 0.1);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 10px;
  padding: 0.7rem 1.6rem;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.btn-teal {
  background: var(--teal);
  border: 1px solid var(--teal);
  color: #fff;
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-light-teal {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-outline-light-teal:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
.btn-outline-navy {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}
.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.02rem;
}
.btn-sm-pill {
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
}

/* ---------- Navbar ---------- */
.tak-navbar {
  background: rgba(11, 31, 42, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.tak-navbar.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}
.tak-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tak-navbar .navbar-brand img {
  height: 46px;
  width: auto;
}
.tak-navbar .brand-text {
  line-height: 1.1;
}
.tak-navbar .brand-text .name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 1.15rem;
  display: block;
}
.tak-navbar .brand-text .tag {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
}
.tak-navbar .nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.tak-navbar .nav-link:hover,
.tak-navbar .nav-link.active {
  color: #fff !important;
}
.tak-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.tak-navbar .nav-phone {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tak-navbar .nav-phone i {
  color: var(--gold);
}
.navbar-toggler {
  border: none;
  color: #fff;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(
    ellipse at top right,
    var(--navy-soft),
    var(--navy) 60%
  );
  color: #fff;
  padding-top: 170px;
  padding-bottom: 110px;
  overflow: hidden;
  --mx: 50%;
  --my: 35%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      520px circle at var(--mx) var(--my),
      rgba(0, 159, 154, 0.22),
      transparent 60%
    ),
    radial-gradient(
      circle at 10% 20%,
      rgba(0, 159, 154, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(244, 197, 66, 0.12),
      transparent 40%
    );
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero::before {
    background-image:
      radial-gradient(
        circle at 10% 20%,
        rgba(0, 159, 154, 0.18),
        transparent 35%
      ),
      radial-gradient(
        circle at 90% 80%,
        rgba(244, 197, 66, 0.12),
        transparent 40%
      );
  }
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.12;
}
.hero h1 span {
  color: var(--gold);
}
.hero .lead-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  max-width: 560px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stats .stat-num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
}
.hero-stats .stat-num .suffix {
  color: var(--gold);
}
.hero-stats .stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(0, 159, 154, 0.25),
    rgba(244, 197, 66, 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px;
  transform: perspective(1000px) rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg)) translate3d(0, 0, 0);
  transition: transform 0.2s ease-out;
  will-change: transform;
}
.hero-visual .inner {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  padding: 34px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.hero-badge-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  backdrop-filter: blur(6px);
  transform: translate3d(
    calc(var(--float-x, 0) * 1px),
    calc(var(--float-y, 0) * 1px),
    0
  );
  transition: transform 0.25s ease-out;
}
.hero-badge-card .icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-floating-badge {
  position: absolute;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  top: 6px;
  right: 24px;
  z-index: 3;
  transform: translate3d(
    calc(var(--float-x, 0) * 1px),
    calc(var(--float-y, 0) * 1px),
    0
  );
  transition: transform 0.25s ease-out;
}

/* ---------- Cards ---------- */
.card-soft {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(11, 31, 42, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.card-soft:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.feature-card {
  padding: 34px 28px;
  height: 100%;
}
.feature-card .icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.icon-box.teal {
  background: rgba(0, 159, 154, 0.12);
  color: var(--teal);
}
.icon-box.gold {
  background: rgba(244, 197, 66, 0.18);
  color: var(--gold-dark);
}
.icon-box.navy {
  background: rgba(11, 31, 42, 0.08);
  color: var(--navy);
}
.feature-card h5 {
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 0;
}

/* ---------- Avatars (initials) ---------- */
.avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.avatar-initials.navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}
.avatar-initials.teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}
.avatar-initials.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}

/* ---------- Faculty ---------- */
.faculty-card {
  padding: 30px 24px;
  text-align: center;
  height: 100%;
}
.faculty-card .avatar-initials {
  width: 92px;
  height: 92px;
  font-size: 1.6rem;
  margin: 0 auto 18px;
}
.faculty-card .avatar-photo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  display: block;
  border: 3px solid rgba(0, 159, 154, 0.15);
}
.faculty-card h5 {
  margin-bottom: 2px;
}
.faculty-card .subject {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.faculty-card .meta {
  color: var(--text-muted);
  font-size: 0.83rem;
}
.faculty-card .bio {
  color: var(--text-muted);
  font-size: 0.87rem;
  margin-top: 12px;
}

/* ---------- Programs / Subjects ---------- */
.level-tabs .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 28px;
  border: 1px solid rgba(11, 31, 42, 0.12);
  margin: 0 6px;
}
.level-tabs .nav-link.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.subject-pill {
  background: var(--card);
  border: 1px solid rgba(11, 31, 42, 0.07);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  transition: all 0.25s ease;
}
.subject-pill:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.subject-pill .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 1.1rem;
}
.subject-pill span.name {
  font-weight: 600;
  font-size: 0.93rem;
}

/* ---------- Fee Calculator ---------- */
.calc-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.calc-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 159, 154, 0.35), transparent 70%);
  top: -100px;
  right: -100px;
}
.calc-card .form-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calc-card .form-select,
.calc-card .form-range {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
.calc-card .form-select option {
  color: #172126;
}
.calc-toggle-group {
  display: flex;
  gap: 10px;
}
.calc-toggle-group .btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
}
.calc-toggle-group .btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.calc-result {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.calc-result .amount {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
}
.calc-result .amount small {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}
.calc-result .note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

/* ---------- Timeline (daily schedule / admissions steps) ---------- */
.timeline-step {
  display: flex;
  gap: 22px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-step:last-child {
  padding-bottom: 0;
}
.timeline-step::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(11, 31, 42, 0.15) 0 6px,
    transparent 6px 12px
  );
}
.timeline-step:last-child::before {
  display: none;
}
.timeline-step .step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.timeline-step h5 {
  margin-bottom: 6px;
}
.timeline-step p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  padding: 32px;
  height: 100%;
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.testimonial-card .msg {
  color: var(--text);
  font-size: 0.98rem;
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial-card .person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .avatar-initials {
  width: 48px;
  height: 48px;
  font-size: 0.9rem;
}
.testimonial-card .avatar-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card .p-name {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0;
}
.testimonial-card .p-role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ---------- Gallery ---------- */
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item .placeholder-icon {
  color: rgba(255, 255, 255, 0.5);
  font-size: 2.5rem;
}
.gallery-item .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(11, 31, 42, 0.85), transparent);
  color: #fff;
  font-size: 0.85rem;
  padding: 26px 14px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .caption {
  opacity: 1;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: 28px;
  padding: 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(244, 197, 66, 0.15),
    transparent 70%
  );
  bottom: -150px;
  left: -100px;
}
.cta-banner h2 {
  color: #fff;
}
@media (max-width: 767.98px) {
  .cta-banner {
    padding: 40px 26px;
    border-radius: 20px;
  }
}

/* ---------- Contact ---------- */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}
.contact-info-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 1.15rem;
  flex-shrink: 0;
  text-align: center;
  line-height: 50px;
}
.contact-info-card h6 {
  margin-bottom: 4px;
}
.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid rgba(11, 31, 42, 0.15);
  padding: 0.7rem 1rem;
  font-size: 0.94rem;
  
}
.form-control:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 0.2rem rgba(0, 159, 154, 0.15);
}
.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}

/* ---------- Footer ---------- */
.tak-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding-top: 80px;
}
.tak-footer h6 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 22px;
}
.tak-footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  display: block;
  margin-bottom: 12px;
}
.tak-footer a:hover {
  color: var(--gold);
}
.tak-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.tak-footer .footer-brand img {
  height: 44px;
}
.tak-footer .footer-brand span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}
.tak-footer .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.tak-footer .social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.tak-footer .social-icons a:hover {
  background: var(--teal);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding: 22px 0;
  font-size: 0.83rem;
}
.newsletter-form .form-control {
  border-radius: 10px 0 0 10px;
}
.newsletter-form .btn {
  border-radius: 0 10px 10px 0;
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: var(--navy);
  color: #fff;
  padding: 150px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(0, 159, 154, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(244, 197, 66, 0.14),
      transparent 40%
    );
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}
.page-header .breadcrumb-tak {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.page-header .breadcrumb-tak a {
  color: rgba(255, 255, 255, 0.6);
}
.page-header .breadcrumb-tak a:hover {
  color: var(--gold);
}
.page-header .breadcrumb-tak .sep {
  margin: 0 8px;
}
.page-header .breadcrumb-tak .current {
  color: var(--gold);
}

/* ---------- Misc ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--teal-dark);
}

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.badge-soft {
  background: rgba(244, 197, 66, 0.16);
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.map-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border-radius: 20px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  text-align: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.map-placeholder i {
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.map-placeholder .location-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.map-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 31, 42, 0.94) 8%,
    rgba(11, 31, 42, 0.55) 50%,
    rgba(11, 31, 42, 0.1) 100%
  );
  z-index: 1;
}
.map-placeholder > *:not(.location-photo) {
  position: relative;
  z-index: 2;
}

.alert-tak-success {
  background: rgba(0, 159, 154, 0.1);
  border: 1px solid rgba(0, 159, 154, 0.3);
  color: var(--teal-dark);
  border-radius: 12px;
}
.alert-tak-danger {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: #b02a37;
  border-radius: 12px;
}
