/* ─── GILROY EXTRABOLD (via CDN) ─── */
@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

:root {
  --ap-yellow: #FDCC03;
  --ap-yellow-dark: #F0C800;
  --ap-yellow-light: #FEF9E5;
  --ap-black: #222222;
  --ap-dark: #222222;
  --ap-gray: #666666;
  --ap-border: #E8E8E8;
  --ap-white: #FFFFFF;
  --ap-green: #25D366;
  --ap-green-dark: #1DAD56;
  --ap-radius: 14px;
  --ap-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ap-dark);
  background: var(--ap-white);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ─── GILROY CLASSES ─── */
.ap-brand,
.ap-hero-title,
.ap-section-title {
  font-family: 'Gilroy', sans-serif !important;
  font-weight: 800 !important;
}

.ap-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.ap-brand-text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #474747;
    line-height: 1;
    white-space: nowrap;
}

/* ─── NAVBAR ─── */
.ap-navbar {
  padding: 0 0;
  z-index: 1030;
  background-color: var(--ap-yellow);
}

.ap-navbar-logo {
  height: 42px;
  width: 42px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.ap-price-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-size: .9rem;
    color: #888;
}

.ap-price-hint i {
    font-size: 1rem;
}

.ap-brand {
  font-size: 1.6rem !important;
  letter-spacing: -0.8px;
  color: var(--ap-black) !important;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ap-hamburger {
  font-size: 1.8rem;
  color: var(--ap-black);
}

.ap-nav-link {
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--ap-dark) !important;
  padding: 6px 10px !important;
  border-radius: 6px;
  transition: color .2s, background .2s;
}

/* ─── HERO ─── */
.ap-hero {
  position: relative;
  background: var(--ap-yellow-light);
  padding: 72px 0 64px;
  overflow: hidden;
}

.ap-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(253, 204, 3, 0.18) 0%,
      rgba(253, 204, 3, 0.08) 50%,
      transparent 75%);
  border-radius: 50%;
  z-index: 0;
}

.ap-hero::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 350px;
  height: 350px;
  background: rgba(240, 200, 0, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.ap-hero .container {
  position: relative;
  z-index: 2;
}

.ap-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.ap-shape-1 {
  width: 550px;
  height: 550px;
  top: -250px;
  right: -180px;
  background: rgba(253, 204, 3, .18);
  filter: blur(50px);
}

.ap-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -180px;
  left: -150px;
  background: rgba(240, 200, 0, .12);
  filter: blur(40px);
}

.ap-shape-3 {
  width: 160px;
  height: 160px;
  top: 15%;
  right: 12%;
  background: rgba(253, 204, 3, .12);
}

.ap-shape-4 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  left: 45%;
  background: rgba(253, 204, 3, .10);
}

.ap-shape-5 {
  width: 180px;
  height: 180px;
  top: 10%;
  left: -80px;
  background: rgba(240, 200, 0, .10);
  filter: blur(15px);
}

.ap-shape-6 {
  width: 60px;
  height: 60px;
  top: 28%;
  left: 35%;
  background: rgba(253, 204, 3, .25);
}

.ap-shape-7 {
  width: 40px;
  height: 40px;
  bottom: 30%;
  right: 22%;
  background: rgba(253, 204, 3, .20);
}

.ap-shape-8 {
  width: 24px;
  height: 24px;
  top: 12%;
  left: 55%;
  background: rgba(240, 200, 0, .35);
}

.ap-shape-9 {
  width: 30px;
  height: 30px;
  bottom: 10%;
  right: 8%;
  background: rgba(253, 204, 3, .30);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.ap-shape-3,
.ap-shape-4,
.ap-shape-6,
.ap-shape-7,
.ap-shape-8,
.ap-shape-9 {
  animation: float 6s ease-in-out infinite;
}

.ap-shape-4 { animation-delay: .5s; }
.ap-shape-6 { animation-delay: 1s; }
.ap-shape-7 { animation-delay: 1.5s; }
.ap-shape-8 { animation-delay: 2s; }
.ap-shape-9 { animation-delay: 2.5s; }

.ap-badge {
  display: inline-flex;
  align-items: center;
  background: var(--ap-yellow);
  color: var(--ap-black);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
}

.ap-hero-title {
  font-size: clamp(3.3rem, 8vw, 5.6rem);
  color: var(--ap-black);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 5px;
}

.ap-hero-title span {
  color: #f4c400 !important;
}

.ap-hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--ap-dark);
}

.ap-hero-desc {
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  font-weight: 500;
  color: var(--ap-dark);
  line-height: 1.75;
  max-width: 580px;
}

.ap-logo-right {
  max-width: 70% !important;
}

.ap-mark {
  background: var(--ap-yellow);
  color: var(--ap-black);
  padding: 0 4px;
  border-radius: 3px;
  font-weight: 800;
}

/* ─── FEATURES ─── */
.ap-features {
  margin-top: 20px;
}

.ap-feat-icon {
  display: block;
  font-size: 38px;
  line-height: 1;
  color: #f4c400;
  margin-bottom: 10px;
}

.ap-feat-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  margin-bottom: 4px;
}

.ap-feat-sub {
  font-size: 0.92rem;
  font-weight: 500;
  color: #555;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .ap-feat-icon { font-size: 32px; margin-bottom: 8px; }
  .ap-feat-title { font-size: 0.95rem; }
  .ap-feat-sub { font-size: 0.8rem; }
}

/* ─── PRICELIST ─── */
.ap-pricelist {
  padding: 30px 0 50px;
  background: var(--ap-white);
}

.ap-section-head {
  margin-bottom: 25px;
}

.ap-section-sub {
  font-weight: 600;
}

.ap-price-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.ap-price-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.ap-price-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: .3s;
}

.ap-price-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .ap-price-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}

/* ─── IMAGE MODAL ─── */
.ap-image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 9999;
}

.ap-image-modal.show {
  opacity: 1;
  visibility: visible;
}

.ap-image-modal img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  transform: scale(.8);
  transition: transform .3s ease;
}

.ap-image-modal.show img {
  transform: scale(1);
}

.ap-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  transition: .2s;
}

.ap-close:hover {
  transform: rotate(90deg);
}

/* ─── TESTIMONI ─── */
.ap-testi {
  padding: 30px 0 50px;
  background: var(--ap-yellow-light);
}

.ap-testi-card {
  background: var(--ap-white);
  border: 1.5px solid var(--ap-border);
  border-radius: var(--ap-radius);
  padding: 22px 22px 18px;
  box-shadow: var(--ap-shadow);
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}

.ap-testi-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.ap-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--ap-yellow);
}

.ap-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ap-testi-text {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.ap-testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}

.ap-star-fill {
  font-size: 1.1rem;
  color: var(--ap-yellow);
}

.ap-star-half {
  font-size: 1.1rem;
  color: var(--ap-yellow);
}

.ap-testi-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: #777;
}

.ap-testi-carousel .owl-stage {
  display: flex;
}

.ap-testi-carousel .owl-item {
  display: flex;
}

.ap-testi-carousel .item {
  width: 100%;
}

.ap-testi-carousel .owl-dots {
  margin-top: 20px;
}

.ap-testi-carousel .owl-dot span {
  background: #d0d0d0 !important;
}

.ap-testi-carousel .owl-dot.active span {
  background: var(--ap-yellow) !important;
}

.ap-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #222;
  font-weight: 700;
  transition: .25s;
}

.ap-see-all:hover {
  color: var(--ap-yellow);
}

/* ─── CTA ─── */
.ap-cta {
  background: var(--ap-yellow);
  padding: 36px 0;
}

.ap-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.ap-wa-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ap-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.ap-wa-circle i {
  font-size: 2rem;
  color: #fff;
}

.ap-cta-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--ap-black);
  line-height: 1.2;
}

.ap-cta-sub {
  font-size: 0.93rem;
  color: #333;
  font-weight: 500;
}

.ap-btn-wa {
  display: inline-flex;
  align-items: center;
  background: var(--ap-green);
  color: #fff !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.ap-btn-wa i {
  font-size: 1.3rem;
}

.ap-btn-wa:hover {
  background: var(--ap-green-dark);
  transform: translateY(-2px);
}

@media (max-width: 575px) {
  .ap-cta-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.ap-faq {
    padding: 70px 0;
    background: #fff;
}

.ap-faq-item {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
}

.ap-faq-item:has(.ap-faq-btn:not(.collapsed)) {
    border-color: var(--ap-yellow);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.ap-faq-btn {
    width: 100%;
    border: none;
    background: #fff;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    transition: .3s;
}

.ap-faq-btn:hover {
    background: #fffceb;
}

.ap-faq-btn:not(.collapsed) {
    background: #fffceb;
}

.ap-faq-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all .35s ease;
    flex-shrink: 0;
}

.ap-faq-btn:not(.collapsed) .ap-faq-icon {
    transform: rotate(45deg);
}

.ap-faq-ans {
    padding: 24px 24px;
    color: #666;
    line-height: 1.8;
    font-size: .92rem;
}

.collapsing .ap-faq-ans,
.collapse.show .ap-faq-ans {
    animation: faqFade .35s ease;
}

@keyframes faqFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── FOOTER ─── */
.ap-footer {
  background: var(--ap-yellow);
  border-top: 1.5px solid #eee;
  padding: 15px 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ap-black);
}

/* ─── FLOATING WA BUTTON ─── */
.ap-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ap-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 2.5s ease-in-out infinite;
}

.ap-wa-float i {
  font-size: 2rem;
  color: #fff;
}

.ap-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991.98px) {
  .ap-hero { padding: 52px 0 48px; }
  .ap-hero-desc { max-width: 100%; }
}

@media (max-width: 767.98px) {
  .ap-hero { padding: 44px 0 40px; }
  .ap-pricelist, .ap-testi, .ap-faq { padding: 52px 0; }
}

@media (max-width: 575.98px) {
  .ap-hero-title { letter-spacing: -1px; }
  .ap-testi-card { padding: 18px 16px; }
  .ap-cta { padding: 28px 0; }
  .ap-btn-wa { width: 100%; justify-content: center; }
  .ap-faq-btn { font-size: 0.87rem; padding: 10px 16px; }
  .ap-wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .ap-wa-float i { font-size: 1.7rem; }
}