/* Template 9: Burgundy & Gold - PT Bibit Tumbuh Bersama */
:root {
  --primary: #6B2D47;
  --accent: #D4AF7A;
  --dark: #3A1829;
  --light-bg: #FDF9F5;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --font-display: 'Inter Tight', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--light-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
}

/* ===== NAVBAR ===== */
.custom-navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.75rem 0;
  z-index: 1030;
}

.custom-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.custom-navbar .navbar-brand img {
  height: 3rem;
  border-radius: 6px;
}

.custom-navbar .navbar-caption {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary) !important;
  text-transform: none;
  letter-spacing: -0.01em;
}

.custom-navbar .nav-link {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #1a1a1a !important;
  padding: 0.5rem 1rem !important;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--primary) !important;
  background-color: rgba(107,45,71,0.06);
}

.custom-navbar .navbar-buttons .btn {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.custom-navbar .navbar-buttons .btn:hover {
  background-color: var(--dark);
  transform: translateY(-1px);
}

.custom-navbar .navbar-toggler {
  border: none;
  padding: 0.5rem;
}

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

/* ===== HERO SECTION (Split, NO full-screen, NO parallax) ===== */
.hero-section {
  padding-top: 100px;
  background-color: #ffffff;
}

.hero-section .hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.hero-section .hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-section .hero-content {
  padding: 2rem 0;
}

.hero-section .hero-content h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-section .hero-content .hero-subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-section .hero-content .hero-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.hero-section .hero-content .hero-detail-item {
  text-align: center;
}

.hero-section .hero-content .hero-detail-item .number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-section .hero-content .hero-detail-item .label {
  font-size: 0.8rem;
  color: #777;
  font-weight: 500;
}

.hero-section .btn-primary-cta {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.hero-section .btn-primary-cta:hover {
  background-color: var(--dark);
  transform: translateY(-2px);
  color: #ffffff;
}

/* ===== SECTION COMMONS ===== */
.section-padding {
  padding: 5rem 0;
}

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

.section-bg-white {
  background-color: #ffffff;
}

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

.section-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.section-title.text-white {
  color: #ffffff;
}

.section-subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
}

.section-subtitle.text-white-70 {
  color: rgba(255,255,255,0.75);
}

/* ===== FEATURES / SERVICES CARDS ===== */
.feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
}

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

.feature-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: rgba(107,45,71,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.feature-card .card-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.feature-card .card-text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ===== IMAGE + TEXT SECTION ===== */
.image-text-section .text-content h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.image-text-section .text-content p {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.image-text-section .section-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.image-text-section .section-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ===== TEAM SECTION ===== */
.team-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
}

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

.team-card .team-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.team-card .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card .team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-card .team-info .team-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.team-card .team-info .team-role {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--primary);
}

/* ===== FAQ ACCORDION ===== */
.faq-section .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: transparent;
  margin-bottom: 0.5rem;
}

.faq-section .accordion-button {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  background: transparent;
  padding: 1.25rem 0;
  box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: transparent;
}

.faq-section .accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: '\2212';
  color: var(--primary);
}

.faq-section .accordion-body {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  padding: 0 0 1.25rem 0;
}

/* ===== CONTACT FORM ===== */
.contact-form-section .form-control {
  font-family: 'Inter Tight', sans-serif;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form-section .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107,45,71,0.1);
}

.contact-form-section .btn-submit {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2.5rem;
  border-radius: 8px;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.contact-form-section .btn-submit:hover {
  background-color: var(--dark);
}

.contact-form-section textarea.form-control {
  min-height: 140px;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-card {
  text-align: center;
  padding: 2rem 1rem;
}

.contact-info-card .info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(107,45,71,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--primary);
}

.contact-info-card .info-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-info-card .info-text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #666;
}

/* ===== MAP ===== */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

/* ===== ACHIEVEMENT SECTION ===== */
.achievement-card {
  text-align: center;
  padding: 2rem;
}

.achievement-card .ach-number {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.achievement-card .ach-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #555;
}

/* ===== PAGE HEADER (Sub Pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 6rem 0 3rem;
  color: #ffffff;
}

.page-header h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

.page-header .breadcrumb-item a {
  color: var(--accent);
  text-decoration: none;
}

.page-header .breadcrumb-item.active {
  color: rgba(255,255,255,0.7);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--dark);
  color: #ffffff;
  padding: 3rem 0 1.5rem;
}

.site-footer .footer-logo {
  height: 2.5rem;
  margin-bottom: 1rem;
}

.site-footer .footer-desc {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.site-footer .footer-heading {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li {
  margin-bottom: 0.5rem;
}

.site-footer .footer-links a {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer .footer-links a:hover {
  color: var(--accent);
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.site-footer .footer-bottom p {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.site-footer .policy-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.site-footer .policy-links a {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer .policy-links a:hover {
  color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn-outline-accent {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-accent:hover {
  background-color: var(--accent);
  color: var(--dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-section .hero-content h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .hero-section {
    padding-top: 80px;
  }
  .custom-navbar .navbar-collapse {
    padding-top: 1rem;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 3rem 0;
  }
  .hero-section .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-section .hero-content .hero-details {
    gap: 1rem;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }
}

/* ===== LEGAL PAGE ===== */
.legal-content {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}

.legal-content h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
  margin: 2rem 0 1rem;
}

.legal-content h3 strong {
  color: var(--primary);
}

.legal-content h4 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  margin: 1.5rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 0.75rem;
}

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

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.legal-content table th,
.legal-content table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
}

.legal-content table th {
  background-color: var(--light-bg);
  font-weight: 600;
  color: var(--dark);
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
}

.legal-content a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-tables-white .wp-block-table table,
.cookie-tables-white .wp-block-table th,
.cookie-tables-white .wp-block-table td {
  border: 1px solid #333 !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-color: var(--light-bg);
}

.decorative-divider {
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 1rem 0;
}

.decorative-divider.centered {
  margin: 1rem auto;
}
