/*
Theme Name: kontaineran-theme
Theme URI: https://pt-bci.com/
Author: Abdulloh Hafidz (PT Misefa)
Author URI: https://misefa.com/
Description: Premium Custom Coded Theme for PT Bintang Citra International & ContainerPlus. Highly optimized for speed, lightweight, built-in SEO tags, and responsive layouts.
Version: 1.0.0
Text Domain: kontaineran-theme
*/

/* ─── GLOBAL DESIGN TOKENS ─── */
:root {
  --primary: #A21C26;
  --primary-light: #C53030;
  --primary-dark: #74121A;
  --accent: #D4AF37;
  --accent-light: #f3d478;
  --accent-dark: #aa851c;
  --text-dark: #0F172A;
  --text-gray: #475569;
  --text-light: #94A3B8;
  --bg-light: #F8FAFC;
  --border: #E2E8F0;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px -10px rgba(162, 28, 38, 0.08);
  --shadow-lg: 0 20px 40px rgba(162, 28, 38, 0.12);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── BASE RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
}

h1 { font-size: 40px; font-weight: 800; }
h2 { font-size: 28px; }
h3 { font-size: 20px; }
p { margin-bottom: 1rem; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }

/* ─── CONTAINER & GRID ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white !important;
  box-shadow: 0 4px 12px rgba(15, 61, 122, 0.15);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 61, 122, 0.25);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-dark) !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.btn-accent:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
  background-color: white;
  color: var(--primary) !important;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.btn-secondary:hover {
  background-color: var(--bg-light);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ─── UTILITIES & GLASSMORPHISM ─── */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.bg-alt { background-color: white; }

/* ─── ANIMATION HELPERS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ─── CLIENTS TICKER MARQUEE ─── */
.clients-section {
  padding: 35px 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.clients-section::before,
.clients-section::after {
  content: "";
  height: 100%;
  width: 120px;
  position: absolute;
  z-index: 2;
  top: 0;
  pointer-events: none;
}
.clients-section::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.clients-section::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.clients-ticker {
  display: flex;
  width: max-content;
  animation: marquee-ltr 60s linear infinite;
}

.clients-ticker:hover {
  animation-play-state: paused;
}

.client-logo-slide {
  width: 160px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  flex-shrink: 0;
}

.client-logo-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) contrast(0.8) brightness(1.2);
  opacity: 0.55;
  transition: var(--transition);
}

.client-logo-slide img:hover {
  filter: grayscale(0%) contrast(1) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes marquee-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ─── BREADCRUMBS ─── */
.page-breadcrumb {
  background-color: var(--bg-light);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-gray);
}

.page-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.page-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.page-breadcrumb a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.page-breadcrumb .separator {
  color: var(--text-light);
  font-size: 11px;
}

.page-breadcrumb span.current {
  color: var(--text-gray);
  font-weight: 400;
}

