/* ============================================================
   PT Ciptadana Asset Management — Website Styles
   Template 10 "Indigo & Sand" — Minimalist Boutique
   ============================================================ */

:root {
  --primary: #3D348B;
  --primary-rgb: 61, 52, 139;
  --accent: #C6A15B;
  --accent-rgb: 198, 161, 91;
  --dark: #211D52;
  --dark-rgb: 33, 29, 82;
  --light-bg: #F8F6F0;
  --light-bg-rgb: 248, 246, 240;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #6c757d;
  --font-heading: 'Instrument Sans', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background-color: var(--white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

/* ============================================================
   NAVBAR — Template 10: NO fixed-top, menu_box, d-flex brand
   ============================================================ */
.menu_box {
  position: relative;
  z-index: 1030;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 0.5rem 1.5rem;
}

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

.navbar-brand img {
  height: 3rem;
  width: auto;
}

.navbar-caption {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary) !important;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
}

.mbr-section-btn-main {
  margin-left: 1rem;
}

.mbr-section-btn-main .btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  letter-spacing: -0.01em;
}

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 6px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.btn-secondary:hover {
  background-color: #b08f4a;
  border-color: #b08f4a;
  color: var(--dark);
}

.btn-black {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.btn-black:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* ============================================================
   HERO — Full-screen parallax, centered minimal
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 29, 82, 0.6);
  z-index: 1;
}

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

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-content .hero-tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-padding {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.7;
}

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

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-dark {
  color: var(--dark) !important;
}

/* ============================================================
   FEATURES / IMAGE + TEXT SECTION
   ============================================================ */
.features-section .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.features-section .image-col img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.features-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.features-section p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.features-section.reversed .row {
  flex-direction: row-reverse;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-card {
  text-align: center;
  margin-bottom: 2rem;
}

.team-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.25rem;
  border: 4px solid var(--light-bg);
}

.team-card .team-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

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

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section .accordion-item {
  border: none;
  border-bottom: 1px solid #e0dcd3;
  background: transparent;
  margin-bottom: 0.5rem;
}

.faq-section .accordion-button {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  background: transparent;
  padding: 1.25rem 0;
  box-shadow: none;
  letter-spacing: -0.01em;
}

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

.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%233D348B' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-section .accordion-body {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  padding: 0 0 1.5rem 0;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-section .form-control {
  font-family: var(--font-body);
  border: 1px solid #d4d0c5;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.contact-form-section .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(61, 52, 139, 0.15);
}

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

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

.contact-info-card .info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer-simple {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0;
  text-align: center;
}

.footer-simple .footer-links {
  margin-bottom: 1rem;
}

.footer-simple .footer-links a {
  color: rgba(255,255,255,0.7);
  margin: 0 0.75rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

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

.footer-simple .footer-copyright {
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 29, 82, 0.65);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.page-hero .breadcrumb-nav {
  margin-top: 0.75rem;
}

.page-hero .breadcrumb-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  text-decoration: none;
}

.page-hero .breadcrumb-nav a:hover {
  color: var(--accent);
}

.page-hero .breadcrumb-nav span {
  color: var(--accent);
  font-size: 0.95rem;
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.service-card .service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookies-alert-plugin {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.9);
  padding: 1.25rem 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookies-alert-plugin .cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookies-alert-plugin .btn-accept {
  background: var(--accent);
  border: none;
  color: var(--dark);
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-heading);
}

.cookies-alert-plugin .btn-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--accent) !important;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-heading);
}

/* ============================================================
   STATS / COUNTER SECTION
   ============================================================ */
.stats-section .stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stats-section .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.stats-section .stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .hero-tagline {
    font-size: 1rem;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .features-section.reversed .row {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-section {
    min-height: 80vh;
    background-attachment: scroll;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .page-hero {
    min-height: 35vh;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .footer-simple .footer-links a {
    display: inline-block;
    margin: 0.25rem 0.5rem;
  }

  .cookies-alert-plugin {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }
}
