:root {
  --bg: #ffffff;
  --text: #222222;
  --muted: #555555;
  --border: #e5e7eb;
  --primary: #0a84ff;
}

* { box-sizing: border-box; font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
html, body { height: 100%; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.card {
  max-width: 720px;
  margin: 14vh auto 0;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  text-align: center;
}

.title {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.25;
}

.subtitle {
  margin: 0 auto 20px;
  max-width: 560px;
  font-size: 16px;
  color: var(--muted);
}

.actions {
  display: inline-flex;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.footer {
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.brand { font-weight: 600; }

@media (max-width: 480px) {
  .card { margin-top: 10vh; padding: 24px 20px; }
  .title { font-size: 24px; }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}
.navbar__inner {
  max-width: 1100px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__brand { font-weight: 800; color: #111827; text-decoration: none; letter-spacing: .02em; }
.brand-sub { font-weight: 600; color: #6b7280; font-size: .9em; }
.navbar__nav { display: flex; gap: 28px; align-items: center; }
.navbar__burger { display: none; width: 38px; height: 32px; border: 1px solid var(--border); border-radius: 8px; background: #fff; color: #111827; align-items: center; justify-content: center; gap: 4px; }
.navbar__burger img { width: 20px; height: 20px; display: block; }
.burger__bar { display: block; width: 16px; height: 2px; background: currentColor; }
.nav__link { color: #4b5563; text-decoration: none; font-weight: 600; }
.nav__link:hover { color: #111827; }
.nav__link.active { color: #7c3aed; }
.nav__link.has-chevron::after { content: "›"; margin-left: 8px; color: #9ca3af; }
.nav__link.has-caret::after { content: "▾"; margin-left: 8px; color: #9ca3af; }
.navbar__search { appearance: none; border: none; background: transparent; color: #111827; cursor: pointer; padding: 6px; }

@media (max-width: 720px) {
  .navbar__inner { height: 60px; padding: 0 16px; }
  .navbar__burger { display: inline-flex; }
  .navbar__nav { 
    position: fixed; 
    top: 60px; 
    left: 0; 
    right: 0; 
    background: #fff; 
    border-bottom: 1px solid var(--border); 
    box-shadow: 0 10px 20px rgba(0,0,0,.1); 
    padding: 10px 16px; 
    
    /* Animation initial state */
    display: flex;
    flex-direction: column; 
    gap: 12px; 
    z-index: 70;
    
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-out;
    pointer-events: none;
  }
  .navbar.open .navbar__nav { 
    /* Animation final state */
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .navbar__search { display: none; }
  .nav__link { font-weight: 600; font-size: 14px; }
}

.dropdown { position: relative; }
.dropdown__toggle { border: 0; background: transparent; cursor: pointer; padding: 0; font: inherit; }
.dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
  border-radius: 8px;
  
  /* Start hidden state for animation */
  display: block; /* Change from none to block to allow transitions */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none; /* Prevent clicks when hidden */

  overflow: hidden;
  z-index: 60;
}
.navbar.open .dropdown__menu { position: static; min-width: 100%; box-shadow: none; border: 0; visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
.dropdown__menu::before { content: ""; display: block; height: 4px; background: linear-gradient(90deg, #7c3aed, #ec4899); }
.dropdown__item { display: block; padding: 10px 14px; color: #374151; text-decoration: none; border-bottom: 1px solid var(--border); }
.dropdown__item:last-child { border-bottom: 0; }
.dropdown__item:hover { background: #f9fafb; }
.dropdown.open .dropdown__menu { 
  /* End visible state for animation */
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  
  display: flex; /* Keep flex for layout if needed, though block is default above */
  flex-direction: column; 
}

@media (max-width: 720px) {
  .dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown__toggle {
    width: 100%;
    display: block;
    text-align: center;
  }

  .dropdown__menu {
    position: static;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,0.02); /* Subtle background for nested items */
    
    /* Reset desktop transform */
    transform: none;
    
    /* Mobile Animation: Accordion style */
    max-height: 0;
    opacity: 0;
    visibility: hidden; /* Hide completely when closed */
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }
  
  .dropdown.open .dropdown__menu {
    position: static;
    transform: none;
    max-height: 500px; /* Large enough for content */
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown__item {
    padding-left: 32px; /* Indent nested items */
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
}

.hero {
  position: relative;
  min-height: 72vh;
  padding: 96px 24px 160px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, #7b2cff 0%, #ff7a00 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(800px 400px at 15% 25%, rgba(255,255,255,.08) 0%, transparent 70%), radial-gradient(1000px 500px at 85% 30%, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__container { max-width: 960px; z-index: 2; }
.hero__title {
  margin: 0 0 16px;
  color: #fff;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.1;
}
.hero__text {
  margin: 0 auto;
  max-width: 740px;
  color: rgba(255,255,255,.9);
  font-size: 16px;
}

.hero__skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  width: 100%;
  height: auto;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to top, black 0%, black 65%, transparent 95%);
  mask-image: linear-gradient(to top, black 0%, black 65%, transparent 95%);
}

.info-card {
  max-width: 960px;
  margin: -120px auto 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 32px 28px;
  text-align: center;
  z-index: 3;
  position: relative;
}
.info-card__title { margin: 0 0 8px; font-size: 28px; letter-spacing: .08em; color: #6b7280; }
.info-card__text { margin: 0; color: #7c3aed; font-weight: 700; }

@media (max-width: 640px) {
  .hero { padding: 80px 16px 140px; }
  .info-card { margin: -100px 12px 32px; }
}

.about {
  position: relative;
  padding: 80px 24px 100px;
  background: url('assets/aboutus/Kota.png') bottom center / 100% 28vh no-repeat;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(0,0,0,.05) 0 2px, transparent 2px 28px),
    repeating-radial-gradient(circle at 80% 25%, rgba(0,0,0,.04) 0 2px, transparent 2px 24px);
  pointer-events: none;
}
.about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(243,244,246,0) 40%, rgba(243,244,246,.6) 95%);
  pointer-events: none;
}
.about__container {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.about__who {
  font-weight: 800;
  font-size: clamp(48px, 10vw, 140px);
  line-height: .95;
  letter-spacing: .02em;
  color: #5b21b6;
}
.about__content { padding-top: 16px; }
.about__title { margin: 0 0 12px; font-size: clamp(28px, 3vw, 40px); color: #111827; }
.about__text { margin: 0 0 14px; color: #4b5563; }

.values {
  background: #4c1d95;
  padding: 36px 24px 48px;
  color: #fff;
}
.values__container { max-width: 1100px; margin: 0 auto; text-align: center; }
.values__title { font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: .08em; }
.values__subtitle { margin: 8px 0 18px; font-weight: 800; font-size: 28px; color: #fbbf24; }
.values__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.value { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 10px; padding: 16px; }
.value__title { font-weight: 800; color: var(--accent, #fff); margin-bottom: 8px; }
.value__desc { color: rgba(255,255,255,.9); font-size: 14px; }

.team { background: #ffffff; padding: 16px 0 60px; }
.team__container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 420px 1fr 1fr; column-gap: 20px; row-gap: 36px; }
.team__banner { background: linear-gradient(135deg, #7b2cff 0%, #ff7a00 100%); color: #fff; border-radius: 24px 140px 24px 140px; display: grid; place-items: center; padding: 32px; margin-left: 16px; }
.team__title { margin: 0; font-weight: 800; font-size: clamp(28px, 4vw, 48px); letter-spacing: .02em; }
.profile { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 10px 24px rgba(0,0,0,.08); padding: 20px; display: grid; grid-template-columns: 86px 1fr; gap: 14px; }
.avatar { width: 86px; height: 86px; border-radius: 50%; display: grid; place-items: center; position: relative; }
.avatar::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(135deg, #7c3aed, #ec4899); }
.avatar svg { width: 60px; height: 60px; z-index: 1; }
.profile__name { margin: 0; font-weight: 800; color: #111827; }
.profile__role { color: #7c3aed; font-weight: 700; margin-bottom: 6px; }
.profile__bio { margin: 0; color: #4b5563; font-size: 14px; }

@media (max-width: 1024px) {
  .team__container { grid-template-columns: 1fr 1fr; }
  .team__banner { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .values__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .team { padding: 0 0 48px; }
  .team__container { grid-template-columns: 1fr; }
  .team__banner { border-radius: 20px 80px 20px 80px; }
  .values__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .value { min-height: unset; }
  .about { padding: 60px 16px 90px; }
  .about__who { font-size: clamp(36px, 18vw, 90px); }
}

.support { background: #ffffff; padding: 24px 0 80px; }
.support__container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; align-items: stretch; }
.profile--support { height: 100%; }
.avatar--lg { display: none; }
.avatar--lg::before { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.support__bubble { background: #e5e7eb; border-radius: 36px 120px 36px 36px; padding: 24px 26px; box-shadow: 0 8px 18px rgba(0,0,0,.08); height: 100%; }
.support__heading { color: #4b5563; font-weight: 600; margin: 0 0 18px; }
.support__mini { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.miniprofile { display: grid; grid-template-columns: 54px 1fr; gap: 10px; align-items: center; }
.miniavatar { width: 54px; height: 54px; border-radius: 50%; position: relative; display: grid; place-items: center; }
.miniavatar::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 3px solid #7c3aed; }
.miniprofile__name { font-weight: 800; color: #1f2937; }
.miniprofile__role { color: #7c3aed; font-weight: 700; }

@media (max-width: 900px) {
  .support__container { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .support__mini { grid-template-columns: 1fr; }
}

@media (min-width: 1100px) {
  .support__bubble { position: relative; width: calc(100% + (100vw - 1100px)/2 - 16px); margin-right: calc((100vw - 1100px)/-2 + 16px); }
}

/* removed full-bleed offset; keep banner inside container */

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.service { text-align: center; }
.badge {
  width: 86px;
  height: 86px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: radial-gradient(70% 70% at 50% 35%, #f3e8ff 0%, #ffffff 70%);
  box-shadow: 0 14px 22px rgba(0,0,0,.12);
  display: grid;
  place-items: center;
  position: relative;
}
.badge::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 8px 16px rgba(0,0,0,.08);
}
.badge svg { width: 30px; height: 30px; color: var(--accent, #7c3aed); z-index: 1; }

.service__title { margin: 0 0 8px; font-size: 20px; font-weight: 800; color: #374151; }
.service__desc { margin: 0 auto; max-width: 280px; color: #6b7280; font-size: 14px; line-height: 1.6; }

@media (max-width: 1024px) {
  .services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services { grid-template-columns: 1fr; }
}

.portfolio {
  max-width: 1100px;
  margin: 24px auto 24px;
  padding: 12px;
  position: relative;
}
.portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(240px 240px at 12% 8%, rgba(124,58,237,.12) 0%, transparent 70%), radial-gradient(200px 200px at 88% 10%, rgba(236,72,153,.12) 0%, transparent 70%);
  pointer-events: none;
}
.portfolio__title { text-align: center; margin: 8px 0 16px; font-size: 24px; color: #374151; }
.portfolio__items { display: flex; gap: 24px; align-items: flex-end; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; -ms-overflow-style: none; scrollbar-width: none; }
.portfolio__items::-webkit-scrollbar { display: none; }
.portfolio-item { scroll-snap-align: start; flex: 0 0 auto; }
.portfolio-item { position: relative; text-align: center; }
.portfolio-item::after { content: ""; position: absolute; width: 42px; height: 42px; border-radius: 50%; background: var(--accent); opacity: .25; left: 24px; bottom: 24px; filter: blur(2px); }
.book-img { width: 320px; height: 450px; object-fit: contain; display: block; }
.portfolio-item__caption { color: #4b5563; font-size: 14px; }

.portfolio__subtitle { text-align: center; margin-bottom: 0px; font-size: 22px; color: #374151; }
.portfolio__gallery { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: 8px; align-items: center; height: 300px; }
.gallery__item { flex: 0 0 auto; scroll-snap-align: start; width: 420px; }
.gallery__item { height: auto; border-radius: 0; box-shadow: none; }
.portfolio__gallery { -ms-overflow-style: none; scrollbar-width: none; }
.portfolio__gallery::-webkit-scrollbar { display: none; }

@media (max-width: 1024px) {
  .mock-book { width: 260px; height: 320px; transform: perspective(800px) rotateY(-4deg); }
}
@media (max-width: 640px) {
  .about { padding: 60px 16px 90px; background-size: 100% 22vh; }
  .about__container { margin: 0 auto 60px; gap: 24px; grid-template-columns: 1fr; }
  .portfolio { padding: 12px; }
  .mock-book { width: 220px; height: 300px; transform: none; }
}

.clients { max-width: 1100px; margin: 0 auto 40px; padding: 8px 24px; }
.clients__title { text-align: center; color: #6b7280; font-weight: 700; margin: 0 0 18px; }
.clients__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 16px; align-items: center; }
.client { text-align: center; }
.client__logo { width: 180px; height: 100px; object-fit: contain; display: block; margin: 0 auto 8px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.08)); }
.client__name { font-size: 13px; color: #4b5563; }

@media (max-width: 1024px) {
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .client__logo { width: 150px; height: 86px; }
}

.contact { position: relative; margin: 0; overflow: hidden; min-height: 620px; }
.contact__inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; padding: 40px 24px; }
.contact__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(20%); z-index: 0; }
.contact__overlay { position: absolute; inset: 0; background: rgba(47, 54, 64, .45); z-index: 1; }
.contact__panel {
  position: relative;
  margin-left: auto;
  max-width: 540px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(0,0,0,.25);
  padding: 24px 26px;
  color: #374151;
}
.contact__title { margin: 0 0 10px; font-size: 22px; color: #6b7280; font-weight: 700; }
.contact__text { margin: 0 0 12px; font-size: 14px; color: #4b5563; line-height: 1.7; }
.contact__addr { margin: 12px 0; font-size: 14px; color: #111827; }
.contact__meta { margin: 0; font-size: 14px; color: #111827; }
.contact__footer { position: absolute; left: 0; right: 0; bottom: 8px; text-align: center; color: rgba(255,255,255,.8); font-size: 12px; }

@media (max-width: 900px) {
  .contact { min-height: 520px; }
  .contact__inner { padding: 24px 16px; }
  .contact__panel { margin: 0 auto; max-width: 92%; }
}
.site-footer { background: #f3f4f6; border-top: 1px solid var(--border); color: #6b7280; text-align: center; padding: 18px; font-size: 12px; }

.svc-pp { display: grid; grid-template-columns: 0.9fr 1.4fr; height: calc(100vh - 68px); background: #fff; }
.svc-exhibit { align-items: center; }
.svc-exhibit .svc-pp__text { display: flex; flex-direction: column; justify-content: center; }
.svc-exhibit .svc-pp__text { font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.svc-exhibit .svc-pp__title { font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-weight: 800; }
.svc-event .svc-pp__gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: 3fr 2.6fr; gap: 10px; height: 100%; }
.svc-event .pp-tile { background: #ffffff; border: 1px solid var(--border); overflow: hidden; background-position: center; background-size: cover; background-repeat: no-repeat; justify-self: center; align-self: stretch; width: 90%; }
.svc-event .pp-tile:not(.span-2) { background-size: contain; }
.svc-event .pp-tile.span-2 { width: 96%; background-size: contain; background-position: top center; }
.svc-event .svc-pp__text { font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.svc-event .svc-pp__title { font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-weight: 800; }
.svc-pp__text { color: #000; padding: 28px 24px; display: grid; align-content: start; gap: 10px; font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.svc-pp__title { margin: 0 0 8px; font-weight: 800; font-size: clamp(28px,4vw,48px); letter-spacing: .02em; }
.svc-pp__lead { margin: 0 0 4px; color: #000; font-weight: 700; }
.svc-pp__list { margin: 0; padding-left: 18px; color: #000; display: grid; gap: 4px; }
.svc-pp__list li { list-style: disc; }
.svc-pp__desc { margin: 6px 0; color: #000; }
.svc-pp__highlight { margin: 8px 0; color: #111827; font-weight: 800; }
.svc-annual .svc-pp__text { font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.svc-annual .svc-pp__title { font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-weight: 800; }
.svc-pp .pp-hero { background-position: center; background-repeat: no-repeat; }
@media (max-width: 960px) {
  .svc-pp .pp-hero { background-size: contain !important; }
}
.svc-pp__gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: calc((100vh - 68px)/3); gap: 0; height: 100%; }
.pp-tile { background: var(--bg,#e5e7eb); display: grid; place-items: center; height: 100%; }
.pp-tile img { width: 70%; height: auto; box-shadow: 0 24px 40px rgba(0,0,0,.18); border-radius: 10px; transform: perspective(900px) rotateX(18deg) rotateY(-12deg); }
.pp-tile.span-2 { grid-column: 1 / -1; }
.pp-tile.span-2x2 { grid-column: 1 / span 2; grid-row: 1 / span 2; }

@media (max-width: 960px) {
  .svc-pp { grid-template-columns: 1fr; height: auto; }
  .svc-pp__gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .svc-event .svc-pp__gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 10px; height: auto; }
  .svc-event .pp-tile { width: 100%; }
}
@media (max-width: 560px) {
  .svc-pp__gallery { grid-template-columns: 1fr; }
  .svc-event .svc-pp__gallery { grid-template-columns: 1fr; }
}

.svc-mice { display: grid; grid-template-columns: 1.2fr 1fr 1fr; height: calc(100vh - 68px); overflow: hidden; }
.mice__panel { background: linear-gradient(135deg, #ec4899 0%, #7c3aed 100%); color: #fff; padding: 22px 20px; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 8px; font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.mice__panel { font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.mice__title { margin: 0 0 6px; font-weight: 800; font-size: clamp(24px,3.6vw,40px); letter-spacing: .02em; }
.mice__lead { margin: 0; color: rgba(255,255,255,.92); font-weight: 700; }
.mice__desc { margin: 4px 0; color: rgba(255,255,255,.9); font-size: 14px; }
.mice__highlight { color: #f59e0b; font-weight: 700; text-decoration: none; }
.mice__gallery { display: grid; grid-template-rows: 1fr; gap: 0; height: 100%; contain: layout paint; }
.mice-tile { background: var(--bg,#e5e7eb); display: grid; place-items: center; height: 100%; position: relative; }
.mice-hero { background-position: center; background-repeat: no-repeat; background-size: cover; }
.mice__gallery--right .mice-hero { background-position: top center; }
.mice-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; box-shadow: 0 20px 36px rgba(0,0,0,.18); }

@media (max-width: 960px) {
  .svc-mice { grid-template-columns: 1fr; height: auto; }
  .mice__gallery { grid-template-rows: 220px; }
  .mice__panel { padding: 18px 16px; }
}
@media (max-width: 560px) {
  .mice__gallery { grid-template-rows: 180px; }
}
.svc-vp { display: grid; grid-template-columns: 1.4fr 1fr; height: calc(100vh - 68px); }
.vp__img { position: relative; overflow: hidden; }
.vp__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.vp__panel { background: #f59e0b; color: #fff; padding: 24px 22px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.vp__title { margin: 0; font-weight: 800; font-size: clamp(26px,4vw,44px); }
.vp__lead { margin: 0; font-weight: 700; color: rgba(255,255,255,.92); }
.vp__desc { margin: 0; color: rgba(255,255,255,.95); }

@media (max-width: 960px) {
  .svc-vp { grid-template-columns: 1fr; height: auto; }
  .vp__img { height: 280px; }
}
@media (max-width: 960px) {
  .exhibit__frame { width: 100%; max-width: none; margin: 12px auto; }
}
.svc-it { position: relative; height: calc(100vh - 68px); overflow: hidden; }
.it__image { position: absolute; inset: 0; }
.it__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(105%) contrast(105%); }
.it__panel {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: min(560px, 42%);
  padding: 26px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(17,24,39,.85) 0%, rgba(17,24,39,.55) 60%, rgba(17,24,39,0) 100%);
}
.it__title { margin: 0; font-weight: 800; font-size: clamp(26px,4.2vw,46px); }
.it__lead { margin: 0; font-weight: 700; color: rgba(255,255,255,.92); }
.it__desc { margin: 0; color: rgba(255,255,255,.95); }

@media (max-width: 960px) {
  .svc-it { height: auto; }
  .it__image { position: relative; height: 280px; }
  .it__panel { position: relative; width: auto; background: #111827; }
}
.port-annual { display: grid; grid-template-columns: 0.9fr 1.4fr; height: calc(100vh - 68px); }
.annual__panel { background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); color: #1f2937; padding: 26px 24px; display: flex; flex-direction: column; justify-content: center; gap: 10px; font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.annual__title { margin: 0; font-weight: 800; font-size: clamp(26px,4vw,44px); }
.annual__desc { margin: 0; color: #374151; }
.annual__gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: calc((100vh - 68px)/3); gap: 0; height: 100%; }
.annual-tile { background: var(--bg,#e5e7eb); display: grid; place-items: center; }
.annual-tile img { width: 86%; height: auto; border-radius: 12px; box-shadow: 0 18px 30px rgba(0,0,0,.18); }

@media (max-width: 960px) {
  .port-annual { grid-template-columns: 1fr; height: auto; }
  .annual__gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}
@media (max-width: 560px) {
  .annual__gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
}
.exhibit { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px; background: #fff; height: 100%; }
.svc-pp > .exhibit { background: #fff; }
.exhibit__frame { width: 68%; max-width: 640px; border-radius: 22px; overflow: hidden; box-shadow: 0 18px 32px rgba(0,0,0,.16); margin: 16px auto; }
.exhibit__image { width: 100%; height: auto; display: block; }
.exhibit__frame .splide__track { border-radius: 22px; }
.exhibit__frame .splide__slide img { width: 100%; height: auto; display: block; object-fit: contain; }
.exhibit__frame .splide__pagination__page { width: 8px; height: 8px; background: #d1d5db; opacity: 1; }
.exhibit__frame .splide__pagination__page.is-active { background: #7c3aed; transform: scale(1); }
.exhibit__dots { margin-top: 10px; display: flex; gap: 8px; justify-content: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; border: none; cursor: pointer; }
.dot.active { background: #7c3aed; }
.exhibit__frame .splide__arrow { background: rgba(255,255,255,.85); color: #111827; border: 1px solid #e5e7eb; }
.exhibit__frame .splide__arrow svg { fill: currentColor; }
.contact-v2 { background: #ffffff; min-height: calc(100vh - 68px); padding: 28px 24px; color: #374151; position: relative; }
.contact-v2__container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: center; }
.contact-card { background: rgba(255,255,255,.06); border-radius: 24px; padding: 14px; box-shadow: 0 18px 30px rgba(0,0,0,.18); }
.contact-card img { width: 100%; height: auto; display: block; border-radius: 18px; }
.contact-card iframe { width: 100%; height: 100%; display: block; border: 0; border-radius: 18px; }
.contact-form { padding: 20px; }
.form-row { margin-bottom: 14px; }
.form-input, .form-textarea { width: 100%; padding: 10px 8px; border: 0; border-bottom: 1px solid #e5e7eb; font-size: 14px; background: transparent; outline: none; }
.form-input::placeholder, .form-textarea::placeholder { color: #9ca3af; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-actions { text-align: right; margin-top: 8px; }
.form-actions .btn.btn-secondary { border-width: 1px; }
.contact-info__brand { margin: 0 0 10px; font-weight: 800; letter-spacing: .06em; color: #374151; }
.contact-info__headline { margin: 0 0 10px; font-weight: 800; font-size: 24px; color: #f59e0b; }
.contact-info__addr { margin: 0 0 12px; color: #374151; }
.contact-info__meta { margin: 0; color: #374151; }
.contact-info__text { margin: 0 0 12px; font-size: 14px; color: #4b5563; line-height: 1.7; }
@media (max-width: 960px) {
  .contact-v2__container { grid-template-columns: 1fr; }
  .contact-card { order: 1; }
}
.svc-pub .pp-panel {
  color: #fff;
  background-image: url('assets/services/p&p/Background.png'), linear-gradient(135deg, #4c1d95 0%, #7c3aed 45%, #6d28d9 100%);
  background-size: cover;
  background-blend-mode: multiply;
  padding: 28px 22px;
}
.svc-pub .svc-pp__text { font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.svc-pub .svc-pp__title { color: #fff; }
.svc-pub .svc-pp__lead { color: rgba(255,255,255,.95); }
.svc-pub .svc-pp__list { color: rgba(255,255,255,.92); }
.svc-pub .svc-pp__desc { color: rgba(255,255,255,.92); }
.svc-pub .svc-pp__highlight { color: #f59e0b; font-weight: 700; }
.svc-pub .pp-hero { background-position: center; background-repeat: no-repeat; }
@media (max-width: 960px) {
  .svc-pub .pp-hero { background-size: contain !important; }
}
