/* ========================================
   핀크 (Finnq) - Template 3: Amethyst & Amber
   Primary: #383193 | Accent: #D37530 | Dark: #1C1750 | Light: #F8F6FF
   Fonts: Young Serif (headings) + Gabarito (body)
   ======================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700;800;900&display=swap');

/* ---- Reset & Base ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #383193;
  --accent: #D37530;
  --dark: #1C1750;
  --light-bg: #F8F6FF;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
}

body {
  font-family: 'Gabarito', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6, .display-7 {
  font-family: 'Young Serif', serif;
}

a { text-decoration: none; transition: all 0.3s ease; }

/* ---- Navbar ---- */
.custom-navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(28, 23, 80, 0.08);
  padding: 12px 0;
  z-index: 1030;
  position: relative;
}

.menu_box { padding: 0 15px; }

.navbar-brand {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.navbar-brand img.logo-img {
  height: 3rem;
  border-radius: 8px;
}

.navbar-caption {
  font-family: 'Young Serif', serif;
  color: var(--primary) !important;
  font-size: 1.3rem !important;
  font-weight: 400;
}

.nav-link.link {
  color: var(--primary) !important;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px !important;
  margin: 0 2px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link.link:hover,
.nav-link.link.active {
  color: var(--accent) !important;
  background: rgba(56, 49, 147, 0.06);
}

.navbar-toggler {
  border: none;
  padding: 8px;
  color: var(--primary);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.mbr-section-btn-main {
  margin-left: 12px;
}

.mbr-section-btn-main .btn-secondary {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Gabarito', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.mbr-section-btn-main .btn-secondary:hover {
  background: #b86320;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 117, 48, 0.35);
}

.mbr-section-btn-main .mobi-mbri-right {
  margin-left: 6px;
}

/* ---- Hero / Parallax ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 23, 80, 0.8);
  z-index: 1;
}

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

.hero-section .display-1 {
  font-size: 3.8rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-section .hero-subtitle {
  font-family: 'Gabarito', sans-serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section .btn-hero {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-family: 'Gabarito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-section .btn-hero:hover {
  background: #b86320;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 117, 48, 0.4);
  color: var(--white);
}

.hero-section .btn-hero .mobi-mbri-right {
  margin-left: 8px;
}

/* ---- Section Common ---- */
.section {
  padding: 100px 0;
}

.section-heading {
  font-family: 'Young Serif', serif;
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: 'Gabarito', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.bg-light-section {
  background: var(--light-bg);
}

.bg-dark-section {
  background: var(--dark);
  color: var(--white);
}

/* ---- Full-Bleed Split ---- */
.full-bleed-row {
  margin: 0;
}

.full-bleed-row .col-image {
  padding: 0;
}

.full-bleed-row .col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.full-bleed-row .col-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.full-bleed-row .col-text h2 {
  font-family: 'Young Serif', serif;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.full-bleed-row .col-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ---- 4-Column Services Grid ---- */
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(28, 23, 80, 0.06);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(56, 49, 147, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(56, 49, 147, 0.15);
  border-color: var(--primary);
}

.service-card .service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h4 {
  font-family: 'Young Serif', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- Border Wrapper / Separator ---- */
.border-wrapper {
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto 40px;
  border-radius: 2px;
}

.border-wrap {
  width: 100%;
  height: 2px;
  background: rgba(56, 49, 147, 0.1);
  margin: 20px 0;
}

/* ---- Achievements Section ---- */
.achievement-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(28, 23, 80, 0.06);
  border: 1px solid rgba(56, 49, 147, 0.08);
}

.achievement-card .achievement-number {
  font-family: 'Young Serif', serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 5px;
}

.achievement-card .achievement-label {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ---- Team Cards ---- */
.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28, 23, 80, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(56, 49, 147, 0.08);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(56, 49, 147, 0.15);
}

.team-card .team-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-card .team-info {
  padding: 20px;
}

.team-card .team-name {
  font-family: 'Young Serif', serif;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

/* ---- FAQ Accordion ---- */
.accordion-item {
  border: 1px solid rgba(56, 49, 147, 0.12);
  border-radius: 10px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  font-family: 'Gabarito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  padding: 18px 24px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--light-bg);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23383193' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 16px 24px 24px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- Contact Form ---- */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 8px 40px rgba(28, 23, 80, 0.08);
  border: 1px solid rgba(56, 49, 147, 0.08);
}

.form-control {
  border: 1px solid rgba(56, 49, 147, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Gabarito', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(56, 49, 147, 0.1);
}

.form-control::placeholder {
  color: #aaa;
}

.btn-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-family: 'Gabarito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #b86320;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 117, 48, 0.35);
  color: var(--white);
}

.btn-submit .mobi-mbri-right {
  margin-left: 8px;
}

/* ---- Contact Info Row ---- */
.contact-info-item {
  text-align: center;
  padding: 30px 20px;
}

.contact-info-item .contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: var(--primary);
}

.contact-info-item h5 {
  font-family: 'Young Serif', serif;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ---- Google Map ---- */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28, 23, 80, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- Footer ---- */
.footer01 {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}

.footer01 .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer01 .list .item-wrap {
  display: inline;
}

.footer01 .list .item-wrap a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer01 .list .item-wrap a:hover {
  color: var(--accent);
}

.footer01 .footer-info {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  line-height: 1.8;
}

.footer01 .footer-copyright {
  text-align: right;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer01 .mbr-section-title {
  color: var(--white);
  font-family: 'Young Serif', serif;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero-section .display-1 { font-size: 2.5rem; }
  .full-bleed-row .col-text { padding: 40px 24px; }
  .section { padding: 60px 0; }
  .section-heading { font-size: 1.8rem; }
  .footer01 .footer-copyright { text-align: left; margin-top: 15px; }
  .mbr-section-btn-main { margin-left: 0; margin-top: 12px; }
}

@media (max-width: 767px) {
  .hero-section .display-1 { font-size: 2rem; }
  .full-bleed-row .col-image img { min-height: 250px; }
  .contact-form-wrapper { padding: 30px 20px; }
  .service-card { margin-bottom: 20px; }
  .footer01 .list { flex-direction: column; gap: 6px; }
}

/* ---- Legal Pages ---- */
.legal-content {
  padding: 120px 0 80px;
}

.legal-content h2 {
  font-family: 'Young Serif', serif;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.legal-content h3.wp-block-heading {
  font-family: 'Young Serif', serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(56, 49, 147, 0.1);
}

.legal-content h4.wp-block-heading {
  font-family: 'Young Serif', serif;
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-content p, .legal-content li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.cookie-tables-white .wp-block-table table,
.cookie-tables-white .wp-block-table th,
.cookie-tables-white .wp-block-table td {
  border: 1px solid black !important;
  border-collapse: collapse !important;
}

.cookie-tables-white .wp-block-table th,
.cookie-tables-white .wp-block-table td {
  padding: 12px 8px !important;
}

.cookie-tables-white .wp-block-table th {
  background: var(--light-bg);
  font-weight: 600;
  color: var(--dark);
}

.legal-content a {
  color: #000000;
  text-decoration: none;
}

.legal-content a:hover {
  color: #00008B;
  text-decoration: underline;
}
