:root{
  --blue:#002D5B;
  --orange:#F05A28;
  --gray:#5A6B7C;
  --white:#ffffff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--gray);
  line-height:1.6;
}

/* ---------------- HEADER ---------------- */
/* HEADER */
.anagki-header-v1 {
  position: sticky;
  top: 0;
  z-index: 999;

  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* CONTAINER */
.anagki-header-v1-container {
  max-width: 1100px;
  margin: auto;
  padding: 14px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.anagki-header-v1-logo h2 {
  font-size: 20px;
  color: #002D5B;
  margin: 0;
  line-height: 1;
}

.anagki-header-v1-logo span {
  font-size: 11px;
  color: #F05A28;
}

/* CTA BUTTON */
/* CTA BUTTON */
.anagki-header-v1-cta {
  padding: 10px 18px;
  background: #F05A28;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  border-radius: 6px;

  position: relative;
  overflow: hidden;

  transition: all 0.3s ease;

  animation: ctaPulseSoft 3s infinite;
}

/* HOVER EFFECT */
.anagki-header-v1-cta:hover {
  background: #d94e22;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240,90,40,0.3);
}

/* CLICK EFFECT */
.anagki-header-v1-cta:active {
  transform: scale(0.95);
}

/* SOFT PULSE ANIMATION */
@keyframes ctaPulseSoft {
  0% {
    box-shadow: 0 0 0 0 rgba(240,90,40,0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(240,90,40,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(240,90,40,0);
  }
}

/* HOVER */
.anagki-header-v1-cta:hover {
  background: #d94e22;
}

/* MOBILE */
@media (max-width: 768px) {

  .anagki-header-v1-container {
    padding: 12px 15px;
  }

  .anagki-header-v1-logo h2 {
    font-size: 18px;
  }

  .anagki-header-v1-cta {
    padding: 8px 14px;
    font-size: 12px;
  }

}
/* HERO BASE */
.anagki-hero-v2 {
  position: relative;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
}

/* OVERLAY */
.anagki-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 45, 91, 0.85),
    rgba(0, 45, 91, 0.65)
  );
}

/* CONTAINER */
.anagki-hero-v2-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* CONTENT */
.anagki-hero-v2-content {
  flex: 1;
}

.anagki-hero-v2-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.anagki-hero-v2-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 25px;
}

/* TRUST */
.anagki-hero-v2-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.anagki-hero-v2-trust span {
  background: rgba(255,255,255,0.15);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

/* CTA */
.anagki-hero-v2-cta {
  display: flex;
  gap: 15px;
}

.anagki-v2-btn-primary {
  background: #F05A28;
  padding: 14px 24px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.anagki-v2-btn-secondary {
  border: 1px solid #fff;
  padding: 14px 24px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}

/* FORM */
.anagki-hero-v2-form {
  flex: 1;
  background: rgba(255,255,255,0.95);
  color: #002D5B;
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.anagki-hero-v2-form h3 {
  margin-bottom: 20px;
}

.anagki-hero-v2-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.anagki-hero-v2-form input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.anagki-v2-form-row {
  display: flex;
  gap: 10px;
}

.anagki-hero-v2-form button {
  background: #F05A28;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
}

.anagki-hero-v2-form p {
  font-size: 12px;
  margin-top: 10px;
}

/* 🔥 MOBILE OPTIMIZATION */
@media (max-width: 768px) {

  .anagki-hero-v2 {
    padding: 70px 15px;
  }

  .anagki-hero-v2-container {
    flex-direction: column;
    gap: 30px;
  }

  .anagki-hero-v2-content h1 {
    font-size: 26px;
  }

  .anagki-hero-v2-content p {
    font-size: 14px;
  }

  .anagki-hero-v2-cta {
    flex-direction: column;
  }

  .anagki-v2-btn-primary,
  .anagki-v2-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .anagki-v2-form-row {
    flex-direction: column;
  }

  .anagki-hero-v2-form {
    width: 100%;
  }
}

/* SECTION */
.anagki-truststrip-v2 {
  background: #ffffff;
  padding: 50px 20px;
  border-bottom: 1px solid #eee;
}

/* CONTAINER */
.anagki-truststrip-v2-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

/* ITEM */
.anagki-truststrip-v2-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 10px;
  transition: 0.3s ease;
}

/* HOVER SUBTLE */
.anagki-truststrip-v2-item:hover {
  background: #f8fafc;
}

/* ICON BOX */
.anagki-truststrip-v2-icon {
  width: 48px;
  height: 48px;
  background: rgba(240, 90, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.anagki-truststrip-v2-icon i {
  font-size: 20px;
  color: #F05A28;
}

/* TEXT */
.anagki-truststrip-v2-text h3 {
  margin: 0;
  font-size: 20px;
  color: #002D5B;
}

.anagki-truststrip-v2-text p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {

  .anagki-truststrip-v2-container {
    flex-direction: column;
    gap: 15px;
  }

  .anagki-truststrip-v2-item {
    padding: 15px;
  }

}

/* SECTION */
.anagki-ps-v2-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef3f8);
}

/* CONTAINER */
.anagki-ps-v2-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* CARD */
.anagki-ps-v2-card {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* TITLE */
.anagki-ps-v2-title {
  font-size: 22px;
  color: #002D5B;
  margin-bottom: 20px;
}

/* LIST */
.anagki-ps-v2-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.anagki-ps-v2-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
}

/* ICON BASE */
.anagki-ps-v2-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* PROBLEM ICON */
.anagki-ps-v2-icon.problem {
  background: rgba(220, 53, 69, 0.1);
}

.anagki-ps-v2-icon.problem i {
  color: #dc3545;
}

/* SOLUTION ICON */
.anagki-ps-v2-icon.solution {
  background: rgba(40, 167, 69, 0.1);
}

.anagki-ps-v2-icon.solution i {
  color: #28a745;
}

/* MOBILE */
@media (max-width: 768px) {

  .anagki-ps-v2-container {
    flex-direction: column;
  }

  .anagki-ps-v2-card {
    padding: 25px;
  }

  .anagki-ps-v2-title {
    font-size: 20px;
  }

}

/* SECTION */
.anagki-services-v2-section {
  padding: 100px 20px;
  background: #ffffff;
}

/* CONTAINER */
.anagki-services-v2-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
}

/* LEFT SIDE */
.anagki-services-v2-left {
  flex: 0.9;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.anagki-services-v2-left h2 {
  font-size: 32px;
  color: #002D5B;
  margin-bottom: 15px;
}

.anagki-services-v2-left p {
  color: #555;
  font-size: 15px;
  margin-bottom: 25px;
}

.anagki-services-v2-cta {
  display: inline-block;
  padding: 12px 24px;
  background: #F05A28;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* RIGHT SIDE */
.anagki-services-v2-right {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.anagki-services-v2-card {
  background: #f9fbfd;
  padding: 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
}

/* ICON */
.anagki-services-v2-card i {
  font-size: 22px;
  color: #F05A28;
  margin-bottom: 12px;
}

/* TITLE */
.anagki-services-v2-card h3 {
  font-size: 18px;
  color: #002D5B;
  margin-bottom: 8px;
}

/* TEXT */
.anagki-services-v2-card p {
  font-size: 14px;
  color: #555;
}

/* HOVER */
.anagki-services-v2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 768px) {

  .anagki-services-v2-container {
    flex-direction: column;
  }

  .anagki-services-v2-left {
    position: static;
  }

  .anagki-services-v2-right {
    grid-template-columns: 1fr;
  }

}

/* SECTION */
.anagki-why-v2-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f4f7fb, #eef3f8);
}

/* CONTAINER */
.anagki-why-v2-container {
  max-width: 1000px;
  margin: auto;
}

/* HEADER */
.anagki-why-v2-header {
  text-align: center;
  margin-bottom: 50px;
}

.anagki-why-v2-header h2 {
  font-size: 32px;
  color: #002D5B;
  margin-bottom: 10px;
}

.anagki-why-v2-header p {
  font-size: 15px;
  color: #555;
}

/* LIST */
.anagki-why-v2-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ROW */
.anagki-why-v2-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 10px;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
}

/* ICON */
.anagki-why-v2-icon {
  width: 50px;
  height: 50px;
  background: rgba(240, 90, 40, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.anagki-why-v2-icon i {
  color: #F05A28;
  font-size: 20px;
}

/* CONTENT */
.anagki-why-v2-content h3 {
  font-size: 17px;
  color: #002D5B;
  margin-bottom: 5px;
}

.anagki-why-v2-content p {
  font-size: 14px;
  color: #555;
}

/* HOVER */
.anagki-why-v2-row:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* MOBILE */
@media (max-width: 768px) {

  .anagki-why-v2-row {
    align-items: flex-start;
  }

}

/* SECTION */
.anagki-process-v3-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f7f9fc, #eef3f8);
}

/* CONTAINER */
.anagki-process-v3-container {
  max-width: 1000px;
  margin: auto;
}

/* HEADER */
.anagki-process-v3-header {
  text-align: center;
  margin-bottom: 70px;
}

.anagki-process-v3-header h2 {
  font-size: 32px;
  color: #002D5B;
}

.anagki-process-v3-header p {
  color: #555;
  font-size: 15px;
}

/* STEPS */
.anagki-process-v3-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ROW */
.anagki-process-v3-row {
  display: flex;
  justify-content: flex-start;
}

.anagki-process-v3-row.reverse {
  justify-content: flex-end;
}

/* CARD */
.anagki-process-v3-card {
  width: 420px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border-left: 5px solid #F05A28;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

/* STEP NUMBER */
.anagki-process-v3-card .step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background: #F05A28;
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: bold;
}

/* TITLE */
.anagki-process-v3-card h3 {
  color: #002D5B;
  margin-bottom: 8px;
  font-size: 18px;
}

/* TEXT */
.anagki-process-v3-card p {
  color: #555;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {

  .anagki-process-v3-row,
  .anagki-process-v3-row.reverse {
    justify-content: center;
  }

  .anagki-process-v3-card {
    width: 100%;
  }

}

/* SECTION */
.anagki-trust-v4-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #002D5B, #001f3f);
  color: #fff;
}

/* CONTAINER */
.anagki-trust-v4-container {
  max-width: 1100px;
  margin: auto;
}

/* ===== STATS ===== */
.anagki-trust-v4-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
  text-align: center;
}

.anagki-trust-v4-stat h3 {
  font-size: 28px;
  color: #F05A28;
}

.anagki-trust-v4-stat p {
  font-size: 14px;
  color: #cbd5e1;
}

/* ===== FEATURED TESTIMONIAL ===== */
.anagki-trust-v4-featured {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 60px;
}

/* IMAGE */
.anagki-trust-v4-featured img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F05A28;
}

/* TEXT */
.anagki-trust-v4-featured-content p {
  font-size: 15px;
  line-height: 1.7;
  margin: 10px 0;
}

.anagki-trust-v4-featured-content h4 {
  font-size: 14px;
  color: #F05A28;
}

/* STARS */
.stars i {
  color: #F05A28;
  font-size: 14px;
}

/* ===== GRID ===== */
.anagki-trust-v4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.anagki-trust-v4-card {
  background: #ffffff;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

/* IMAGE */
.anagki-trust-v4-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* NAME */
.anagki-trust-v4-card h5 {
  margin-top: 10px;
  font-size: 13px;
  color: #002D5B;
}

/* MOBILE */
@media (max-width: 768px) {

  .anagki-trust-v4-stats {
    flex-direction: column;
    gap: 20px;
  }

  .anagki-trust-v4-featured {
    flex-direction: column;
    text-align: center;
  }

  .anagki-trust-v4-grid {
    grid-template-columns: 1fr;
  }

}

/* SECTION */
.anagki-cta-v2-section {
  padding: 100px 20px;
  background: #f8fafc;
}

/* CONTAINER */
.anagki-cta-v2-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.anagki-cta-v2-left {
  flex: 1;
}

.anagki-cta-v2-left h2 {
  font-size: 32px;
  color: #002D5B;
  margin-bottom: 15px;
}

.anagki-cta-v2-left p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* LIST */
.anagki-cta-v2-left ul {
  list-style: none;
  padding: 0;
}

.anagki-cta-v2-left li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.anagki-cta-v2-left li i {
  color: #F05A28;
  margin-right: 8px;
}

/* FORM BOX */
.anagki-cta-v2-form-box {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* FORM TITLE */
.anagki-cta-v2-form-box h3 {
  margin-bottom: 20px;
  color: #002D5B;
}

/* FORM */
.anagki-cta-v2-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

/* BUTTON */
.anagki-cta-v2-form button {
  width: 100%;
  padding: 14px;
  background: #F05A28;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.anagki-cta-v2-form button:hover {
  background: #d94e22;
}

/* NOTE */
.anagki-cta-v2-note {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
  text-align: center;
}

/* WHATSAPP BAR */
.anagki-cta-v2-whatsapp {
  margin-top: 50px;
  text-align: center;
}

.anagki-cta-v2-whatsapp p {
  margin-bottom: 10px;
  color: #555;
}

.anagki-cta-v2-whatsapp a {
  display: inline-block;
  padding: 12px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.anagki-cta-v2-whatsapp a i {
  margin-right: 8px;
}

/* MOBILE */
@media (max-width: 768px) {

  .anagki-cta-v2-container {
    flex-direction: column;
  }

}

/* SECTION */
.anagki-gallery-v2-section {
  padding: 100px 20px;
  background: #0f172a;
  color: #fff;
}

/* CONTAINER */
.anagki-gallery-v2-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.anagki-gallery-v2-header {
  text-align: center;
  margin-bottom: 50px;
}

.anagki-gallery-v2-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.anagki-gallery-v2-header p {
  font-size: 15px;
  color: #94a3b8;
}

/* GRID */
.anagki-gallery-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* ITEM */
.anagki-gallery-v2-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* IMAGE */
.anagki-gallery-v2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

/* OVERLAY */
.anagki-gallery-v2-item .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  opacity: 0;
  transition: 0.4s ease;
}

.anagki-gallery-v2-item .overlay span {
  font-size: 14px;
  color: #fff;
}

/* HOVER EFFECT */
.anagki-gallery-v2-item:hover img {
  transform: scale(1.08);
}

.anagki-gallery-v2-item:hover .overlay {
  opacity: 1;
}

/* SIZE VARIATIONS */
.anagki-gallery-v2-item.tall {
  grid-row: span 2;
}

.anagki-gallery-v2-item.wide {
  grid-column: span 2;
}

/* MOBILE */
@media (max-width: 768px) {

  .anagki-gallery-v2-grid {
    grid-template-columns: 1fr;
  }

  .anagki-gallery-v2-item.tall,
  .anagki-gallery-v2-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

}

/* ================================
   MOBILE CTA V4 - FINAL CLEAN
================================ */

/* WRAPPER */
.anagki-mobile-cta-v4 {
  position: fixed;
  bottom: 12px;
  left: 10px;
  right: 10px;
  z-index: 9999;

  display: flex;
  justify-content: space-around;
  align-items: center;

  padding: 18px 10px 12px; /* FIXED: extra top space */

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);

  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);

  animation: mctaFloat 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes mctaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ITEM */
.anagki-mcta-v4-item {
  text-decoration: none;
  font-size: 12px;
  color: #555;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  flex: 1;
}

/* ICON BASE */
.mcta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f1f5f9;
  transition: all 0.3s ease;
}

/* ICON SIZE */
.mcta-icon i {
  font-size: 22px;
}

/* COLORS */

/* CALL */
.anagki-mcta-v4-item:nth-child(1) .mcta-icon {
  background: rgba(0,45,91,0.1);
}
.anagki-mcta-v4-item:nth-child(1) i {
  color: #002D5B;
}

/* WHATSAPP */
.anagki-mcta-v4-item:nth-child(2) .mcta-icon {
  background: rgba(37,211,102,0.15);
}
.anagki-mcta-v4-item:nth-child(2) i {
  color: #25D366;
}

/* QUOTE */
.anagki-mcta-v4-item:nth-child(3) .mcta-icon {
  background: rgba(240,90,40,0.15);
}
.anagki-mcta-v4-item:nth-child(3) i {
  color: #F05A28;
}

/* ACTIVE CENTER (WHATSAPP) */
.anagki-mcta-v4-item.active .mcta-icon {
  background: #25D366;
  transform: translateY(-8px) scale(1.08); /* FIXED: safe lift */
  box-shadow: 0 12px 25px rgba(37,211,102,0.35);
}

.anagki-mcta-v4-item.active i {
  color: #fff;
}

/* PULSE ANIMATION */
.anagki-mcta-v4-item.active .mcta-icon {
  animation: mctaPulse 1.8s infinite;
}

@keyframes mctaPulse {
  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);
  }
}

/* TAP EFFECT */
.anagki-mcta-v4-item:active {
  transform: scale(0.92);
}

/* OPTIONAL TOP LINE (SUBTLE) */
.anagki-mobile-cta-v4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, #002D5B, #F05A28);
  border-radius: 10px;
}

/* HIDE ON DESKTOP */
@media (min-width: 769px) {
  .anagki-mobile-cta-v4 {
    display: none;
  }
}

/* FOOTER */
.anagki-footer-v1 {
  background: #002D5B;
  color: #fff;
  padding-top: 50px;
}

/* CONTAINER */
.anagki-footer-v1-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px 40px;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

/* BRAND */
.anagki-footer-v1-brand h3 {
  margin: 0;
  font-size: 22px;
}

.anagki-footer-v1-brand p {
  font-size: 13px;
  color: #cbd5e1;
  margin-top: 10px;
  line-height: 1.6;
}

/* LINKS */
.anagki-footer-v1-links h4,
.anagki-footer-v1-social h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: #F05A28;
}

.anagki-footer-v1-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.anagki-footer-v1-links li {
  margin-bottom: 8px;
}

.anagki-footer-v1-links a {
  text-decoration: none;
  color: #e2e8f0;
  font-size: 13px;
  transition: 0.3s;
}

.anagki-footer-v1-links a:hover {
  color: #fff;
  padding-left: 4px;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.social-icons a i {
  font-size: 14px;
  color: #fff;
}

/* HOVER SOCIAL */
.social-icons a:hover {
  background: #F05A28;
  transform: translateY(-3px);
}

/* BOTTOM BAR */
.anagki-footer-v1-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 15px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 12px;
  color: #cbd5e1;
}

.anagki-footer-v1-bottom span {
  color: #F05A28;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {

  .anagki-footer-v1-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .anagki-footer-v1-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

}

/* FIX: SPACE FOR MOBILE STICKY CTA */
@media (max-width: 768px) {

  body {
    padding-bottom: 90px; /* space for CTA bar */
  }

}