/* ========== Contact Page ========== */
.page-contact{ background: #ffffff; }

/* Hero */
.ct-hero{
  position: relative;
  padding: 140px 0 60px;
  background: linear-gradient(180deg, #f4f8fd 0%, #ffffff 100%);
  overflow: hidden;
}
.ct-hero-bg{position: absolute; inset: 0; pointer-events: none; overflow: hidden}
.ct-orb{position: absolute; border-radius: 50%; filter: blur(100px); opacity: .55}
.ct-orb-a{width: 460px; height: 460px; background: rgba(5,68,139,.1); top: -160px; left: -120px}
.ct-orb-b{width: 380px; height: 380px; background: rgba(28,115,214,.1); top: 0; right: -100px}
.ct-grid-mask{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(5,68,139,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,68,139,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
}
.ct-hero .container{position: relative; z-index: 1}

.ct-breadcrumb{
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  margin-bottom: 20px; letter-spacing: .04em;
}
.ct-breadcrumb a{color: var(--muted); text-decoration: none; transition: color .2s}
.ct-breadcrumb a:hover{color: var(--brand)}
.ct-breadcrumb span{opacity: .5}

.ct-eyebrow{
  display: inline-block;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 700; color: var(--brand);
  padding: 6px 14px; border: 1px solid rgba(5,68,139,.2);
  border-radius: 999px; margin-bottom: 18px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.ct-accent{
  background: linear-gradient(90deg, #05448b 0%, #1c73d6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ct-hero-head{text-align: center; max-width: 760px; margin: 0 auto}
.ct-hero-head h1{
  font-size: clamp(32px, 4.4vw, 56px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.06; margin-bottom: 16px;
}
.ct-hero-head p{font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 560px; margin: 0 auto}

/* Quick contact cards */
.ct-quick{padding: 24px 0 64px; background: #fff}
.ct-quick-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.ct-quick-card{
  display: flex; flex-direction: column; gap: 6px;
  padding: 24px; border-radius: 18px;
  background: #fff; border: 1px solid var(--line);
  text-decoration: none; transition: all .3s cubic-bezier(.34,1.4,.64,1);
  position: relative; overflow: hidden;
}
.ct-quick-card::before{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(5,68,139,.04));
  opacity: 0; transition: opacity .3s;
}
.ct-quick-card:hover{
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(5,68,139,.12);
}
.ct-quick-card:hover::before{opacity: 1}
.ct-quick-icon{
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 6px; transition: transform .3s;
}
.ct-quick-icon svg{width: 22px; height: 22px}
.ct-quick-card:hover .ct-quick-icon{transform: scale(1.08) rotate(-4deg)}
.ct-quick-icon--blue{background: linear-gradient(135deg, #e0f2fe, #bae6fd); color: #0369a1}
.ct-quick-icon--green{background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #047857}
.ct-quick-icon--orange{background: linear-gradient(135deg, #fed7aa, #fdba74); color: #c2410c}
.ct-quick-icon--purple{background: linear-gradient(135deg, #e9d5ff, #d8b4fe); color: #7c3aed}
.ct-quick-card strong{font-size: 16px; color: var(--ink); font-weight: 700; letter-spacing: -0.01em; position: relative; z-index: 1}
.ct-quick-card span{font-size: 14px; color: var(--ink); font-weight: 600; position: relative; z-index: 1}
.ct-quick-card em{font-size: 12px; color: var(--muted); font-style: normal; margin-top: 4px; position: relative; z-index: 1}

/* Form + Info */
.ct-main{padding: 32px 0 96px; background: #fff}
.ct-main-grid{
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  align-items: start;
}

.ct-form-wrap > h2{
  font-size: clamp(26px, 3.2vw, 38px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 12px;
}
.ct-form-wrap > p{font-size: 14.5px; color: var(--muted); line-height: 1.65; margin-bottom: 28px}

.ct-form{
  background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 32px;
  box-shadow: 0 14px 36px rgba(5,68,139,.06);
  position: relative;
}
.ct-form-grid{display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px}
.ct-field{position: relative}
.ct-field--full{grid-column: 1 / -1}
.ct-field input,
.ct-field select,
.ct-field textarea{
  width: 100%; padding: 18px 14px 10px;
  border: 1px solid var(--line); border-radius: 10px;
  font-size: 14px; font-family: inherit; font-weight: 500;
  background: #fafbfd; color: var(--ink);
  transition: all .2s; resize: vertical;
}
.ct-field textarea{padding-top: 22px; min-height: 110px}
.ct-field select{appearance: none; cursor: pointer; padding-right: 32px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2305448b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus{
  outline: none; border-color: var(--brand);
  background: #fff; box-shadow: 0 0 0 3px rgba(5,68,139,.12);
}
.ct-field label{
  position: absolute; top: 14px; left: 15px;
  font-size: 13px; color: var(--muted);
  pointer-events: none; transition: all .2s ease;
}
.ct-field label span{color: #d93025}
.ct-field input:focus + label,
.ct-field input:not(:placeholder-shown) + label,
.ct-field select:focus + label,
.ct-field select:valid + label,
.ct-field textarea:focus + label,
.ct-field textarea:not(:placeholder-shown) + label{
  top: 5px; font-size: 10px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--brand);
}

.ct-check{
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
  cursor: pointer; user-select: none; margin-bottom: 18px;
}
.ct-check input{position: absolute; opacity: 0; pointer-events: none}
.ct-check-box{
  width: 18px; height: 18px;
  border: 1.5px solid var(--line); border-radius: 4px;
  background: #fff; position: relative; flex-shrink: 0;
  transition: all .2s;
}
.ct-check input:checked + .ct-check-box{background: var(--brand); border-color: var(--brand)}
.ct-check input:checked + .ct-check-box::after{
  content: ""; position: absolute; top: 2px; left: 5px;
  width: 5px; height: 9px;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.ct-check a{color: var(--brand); font-weight: 600}

.ct-submit{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px; font-size: 15px; font-weight: 600;
  box-shadow: 0 12px 28px rgba(5,68,139,.3);
}
.ct-submit svg{width: 16px; height: 16px; transition: transform .25s}
.ct-submit:hover svg{transform: translateX(3px)}

.ct-success{
  display: none;
  margin-top: 20px; padding: 16px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 12px;
  flex-direction: column; align-items: center; text-align: center; gap: 6px;
  color: #065f46;
}
.ct-success.show{display: flex}
.ct-success svg{width: 28px; height: 28px; color: #16a34a; margin-bottom: 4px}
.ct-success strong{font-size: 14px}
.ct-success span{font-size: 13px; opacity: .85}

/* Info side */
.ct-info-wrap{display: flex; flex-direction: column; gap: 14px}
.ct-info-card{
  padding: 22px 24px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line);
  transition: border-color .25s, box-shadow .25s;
}
.ct-info-card:hover{
  border-color: rgba(5,68,139,.2);
  box-shadow: 0 12px 28px rgba(5,68,139,.08);
}
.ct-info-head{
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.ct-info-head svg{
  width: 20px; height: 20px;
  padding: 8px; border-radius: 10px;
  background: var(--brand-light); color: var(--brand);
  box-sizing: content-box;
}
.ct-info-head strong{font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: .02em}
.ct-info-card p{font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 12px}
.ct-info-link{
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand); font-weight: 600; font-size: 13px;
  text-decoration: none; transition: gap .2s;
}
.ct-info-link:hover{gap: 10px}

.ct-hours{list-style: none; padding: 0; margin: 0 0 14px}
.ct-hours li{
  display: flex; justify-content: space-between;
  padding: 8px 0; font-size: 13px;
  border-bottom: 1px dashed rgba(5,68,139,.08);
}
.ct-hours li:last-child{border-bottom: 0}
.ct-hours li span{color: var(--muted)}
.ct-hours li strong{color: var(--ink); font-weight: 600}
.ct-closed{color: #dc2626 !important}

.ct-pulse-line{
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 197, 94, .08), rgba(34, 197, 94, .03));
  border: 1px solid rgba(34, 197, 94, .25);
  box-shadow: 0 4px 12px rgba(34, 197, 94, .1);
  transition: all .3s ease;
}
.ct-pulse-line:has(#ctOpenStatus[style*="dc2626"]){
  background: linear-gradient(135deg, rgba(239, 68, 68, .08), rgba(239, 68, 68, .03));
  border-color: rgba(239, 68, 68, .25);
  box-shadow: 0 4px 12px rgba(239, 68, 68, .1);
}
.ct-pulse-line strong{
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-left: 2px;
}
.ct-pulse{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 1px solid #22c55e;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .15);
}
.ct-pulse::after{
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--pulse-color, #22c55e);
  animation: ctPulse 1.6s infinite;
}
@keyframes ctPulse{
  0%{opacity: .8; transform: scale(.5)}
  70%{opacity: 0; transform: scale(1.8)}
  100%{opacity: 0; transform: scale(1.8)}
}

.ct-info-card--dark{
  background: linear-gradient(160deg, #05448b 0%, #042d66 100%);
  border-color: transparent;
  color: #fff; position: relative; overflow: hidden;
}
.ct-info-card--dark::before{
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(255,255,255,.08), transparent 60%);
}
.ct-info-card--dark > *{position: relative; z-index: 1}
.ct-info-card--dark .ct-info-head svg{background: rgba(255,255,255,.12); color: #fff}
.ct-info-card--dark .ct-info-head strong{color: #fff}
.ct-info-card--dark:hover{border-color: transparent; box-shadow: 0 16px 40px rgba(5,68,139,.3)}
.ct-depts{list-style: none; padding: 0; margin: 0}
.ct-depts li{
  display: flex; justify-content: space-between;
  padding: 8px 0; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ct-depts li:last-child{border-bottom: 0}
.ct-depts li span{color: rgba(255,255,255,.7); font-weight: 500}
.ct-depts li a{color: #fff; font-weight: 600; text-decoration: none; transition: color .2s; font-size: 12.5px}
.ct-depts li a:hover{color: #9fc4ee}
.ct-depts-note{
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* Map */
.ct-map-section{padding: 80px 0; background: linear-gradient(180deg, #fff, #f4f8fd)}
.ct-map-head{text-align: center; max-width: 600px; margin: 0 auto 32px}
.ct-map-head h2{font-size: clamp(26px, 3vw, 36px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 12px}
.ct-map-head p{font-size: 14.5px; color: var(--muted); line-height: 1.7}

.ct-map-wrap{
  position: relative;
  border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(5,68,139,.12);
  background: #f4f8fd;
}
.ct-map-wrap iframe{display: block; filter: grayscale(20%) saturate(110%)}
.ct-map-pin{
  position: absolute; top: 24px; left: 24px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(5,68,139,.12);
  border-radius: 14px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(5,68,139,.18);
  max-width: 320px;
}
.ct-map-pin-icon{
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, #05448b, #1c73d6);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-map-pin-icon svg{width: 18px; height: 18px}
.ct-map-pin strong{display: block; font-size: 14px; color: var(--ink); font-weight: 700; line-height: 1.2; margin-bottom: 2px}
.ct-map-pin span{font-size: 12px; color: var(--muted)}

/* FAQ */
.ct-faq{padding: 80px 0; background: #fff}
.ct-faq-head{text-align: center; max-width: 540px; margin: 0 auto 36px}
.ct-faq-head h2{font-size: clamp(26px, 3vw, 36px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.15}
.ct-faq-grid{display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 1080px; margin: 0 auto}
.ct-faq-item{background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: all .2s}
.ct-faq-item:hover{border-color: rgba(5,68,139,.2); box-shadow: 0 6px 18px rgba(5,68,139,.06)}
.ct-faq-item summary{
  list-style: none; display: flex; align-items: center;
  padding: 16px 18px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.ct-faq-item summary::-webkit-details-marker{display: none}
.ct-faq-arrow{margin-left: auto; color: var(--muted); transition: transform .2s; font-size: 18px; line-height: 1}
.ct-faq-item[open] .ct-faq-arrow{transform: rotate(90deg)}
.ct-faq-body{padding: 0 18px 18px; font-size: 13.5px; line-height: 1.65; color: var(--muted)}

/* Responsive */
@media (max-width: 1000px){
  .ct-quick-grid{grid-template-columns: repeat(2, 1fr)}
  .ct-main-grid{grid-template-columns: 1fr; gap: 36px}
  .ct-faq-grid{grid-template-columns: 1fr}
}
@media (max-width: 600px){
  .ct-hero{padding: 110px 0 40px}
  .ct-quick{padding: 16px 0 48px}
  .ct-quick-grid{grid-template-columns: 1fr}
  .ct-main{padding: 24px 0 64px}
  .ct-form{padding: 24px 20px}
  .ct-form-grid{grid-template-columns: 1fr}
  .ct-map-section,
  .ct-faq{padding: 56px 0}
  .ct-map-pin{max-width: calc(100% - 32px); top: 16px; left: 16px}
}
