/* ===== BIISNISS.MY.ID - CORE STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0A2342;
  --navy-mid: #123563;
  --gold: #C8973A;
  --gold-light: #E8B84B;
  --cream: #FAF8F3;
  --off-white: #F4F1EA;
  --text-dark: #1A1A2E;
  --text-body: #3D3D4E;
  --text-muted: #6B6B7E;
  --red-accent: #C0392B;
  --green-accent: #1A7A4A;
  --border: #E2DDD5;
  --shadow-sm: 0 2px 8px rgba(10,35,66,0.08);
  --shadow-md: 0 6px 24px rgba(10,35,66,0.12);
  --shadow-lg: 0 16px 48px rgba(10,35,66,0.18);
  --radius: 4px;
  --radius-md: 8px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section-gap { padding: 64px 0; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 2px; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.badge-gold { background: var(--gold); color: #fff; }
.badge-red { background: var(--red-accent); color: #fff; }
.badge-navy { background: var(--navy); color: #fff; }
.badge-green { background: var(--green-accent); color: #fff; }
.badge-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.top-bar a { color: rgba(255,255,255,0.7); }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-left { display: flex; align-items: center; gap: 16px; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-date { color: var(--gold-light); font-weight: 500; }
.top-bar-socials { display: flex; gap: 10px; }
.top-bar-socials a { color: rgba(255,255,255,0.6); font-size: 13px; }
.top-bar-socials a:hover { color: var(--gold-light); }

/* ===== HEADER ===== */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.logo-tagline { font-size: 10px; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.header-search {
  flex: 1;
  max-width: 360px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 9px 40px 9px 16px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  background: var(--off-white);
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}
.header-search input:focus { border-color: var(--navy); background: #fff; }
.header-search button {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--text-muted);
  font-size: 15px;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn { padding: 8px 20px; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ===== NAV ===== */
.main-nav { background: var(--navy); }
.nav-list { display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; }
.nav-list::-webkit-scrollbar { display: none; }
.nav-list a {
  display: block;
  padding: 13px 18px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.nav-list a:hover, .nav-list a.active { color: #fff; border-bottom-color: var(--gold-light); }
.nav-list a.nav-hot { color: var(--gold-light); font-weight: 600; }

/* ===== BREAKING NEWS TICKER ===== */
.breaking-bar {
  background: var(--red-accent);
  color: #fff;
  padding: 8px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.breaking-label {
  background: #8B1A0F;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-wrap { flex: 1; overflow: hidden; }
.ticker-content {
  display: flex;
  gap: 60px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  font-size: 13px;
}
.ticker-content a { color: #fff; opacity: 0.9; }
.ticker-content a:hover { opacity: 1; text-decoration: underline; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== HERO / FEATURED ===== */
.hero-section { padding: 40px 0 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-rows: auto;
  gap: 1px;
  background: var(--border);
}
.hero-main {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-main-body {
  padding: 28px 32px;
}
.hero-main-body .badge { margin-bottom: 12px; }
.hero-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.hero-main-title a:hover { color: var(--navy); }
.hero-main-excerpt {
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.article-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted); }
.article-meta .dot { color: var(--border); }
.hero-sidebar { background: var(--cream); display: flex; flex-direction: column; }
.hero-side-item {
  display: flex;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.hero-side-item:hover { background: var(--off-white); }
.hero-side-item:last-child { border-bottom: none; }
.hero-side-img {
  width: 88px;
  height: 66px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.hero-side-content .badge { margin-bottom: 6px; }
.hero-side-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-dark);
}
.hero-side-title a:hover { color: var(--navy); }
.hero-side-meta { font-size: 11px; color: var(--text-muted); margin-top: 6px; }

/* ===== MARKET TICKER ===== */
.market-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
}
.market-scroll { display: flex; gap: 32px; animation: ticker 35s linear infinite; white-space: nowrap; }
.market-item { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.market-name { font-weight: 600; color: var(--text-dark); }
.market-val { color: var(--text-body); }
.market-chg { font-weight: 600; font-size: 11px; }
.up { color: var(--green-accent); }
.down { color: var(--red-accent); }

/* ===== SECTION HEADERS ===== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--navy);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--gold);
  border-radius: 2px;
}
.see-all { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.05em; display: flex; align-items: center; gap: 4px; }
.see-all:hover { color: var(--navy); }

/* ===== NEWS GRID ===== */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 48px 0;
}

.news-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.news-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-card-img { width: 100%; height: 180px; object-fit: cover; }
.news-card-body { padding: 16px; }
.news-card-body .badge { margin-bottom: 8px; }
.news-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}
.news-card-title a:hover { color: var(--navy); }
.news-card-excerpt { font-size: 13px; color: var(--text-body); line-height: 1.6; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-meta { font-size: 11px; color: var(--text-muted); display: flex; gap: 8px; }

/* ===== LIST ARTICLES ===== */
.article-list-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.article-list-item:last-child { border-bottom: none; }
.article-list-img { width: 96px; height: 72px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.article-list-body {}
.article-list-body .badge { margin-bottom: 5px; }
.article-list-title { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 600; line-height: 1.4; }
.article-list-title a:hover { color: var(--navy); }
.article-list-meta { font-size: 11px; color: var(--text-muted); margin-top: 6px; }

/* ===== SIDEBAR ===== */
.sidebar {}
.sidebar-widget { margin-bottom: 32px; }
.widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 16px;
}
.popular-list-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.popular-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  min-width: 28px;
}
.popular-title { font-size: 13px; font-weight: 500; line-height: 1.4; }
.popular-title a:hover { color: var(--navy); }

/* ===== NEWSLETTER ===== */
.newsletter-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 24px;
  color: #fff;
  text-align: center;
}
.newsletter-box h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 8px; }
.newsletter-box p { font-size: 12px; opacity: 0.75; margin-bottom: 16px; }
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-form input {
  width: 100%;
  padding: 9px 12px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
}
.newsletter-form button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 9px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ===== AD PLACEHOLDER ===== */
.ad-box {
  background: var(--off-white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 24px;
  color: var(--text-muted);
  font-size: 11px;
  text-align: center;
}

/* ===== OPINION SECTION ===== */
.opinion-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.opinion-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.opinion-author { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.opinion-role { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.opinion-title { font-size: 14px; font-weight: 600; line-height: 1.4; font-family: 'Playfair Display', serif; }
.opinion-title a:hover { color: var(--navy); }

/* ===== PROMO BANNER ===== */
.promo-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4080 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.promo-section::before {
  content: 'B';
  position: absolute; right: -40px; top: -40px;
  font-family: 'Playfair Display', serif;
  font-size: 280px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
}
.promo-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.promo-text h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.promo-text p { color: rgba(255,255,255,0.7); font-size: 15px; max-width: 480px; }
.promo-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 700; padding: 12px 28px; border-radius: 4px; font-size: 14px; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,58,0.4); }
.btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,0.3); color: #fff; font-weight: 600; padding: 12px 28px; border-radius: 4px; font-size: 14px; }
.btn-ghost:hover { border-color: #fff; }

/* ===== FOOTER ===== */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-name { color: #fff; font-size: 26px; margin-bottom: 4px; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-contact-item i { color: var(--gold); width: 14px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ===== ABOUT PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2d5a 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1400&q=60') center/cover;
  opacity: 0.08;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-light); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 64px 0; }
.about-img { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text .label { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; line-height: 1.2; margin-bottom: 18px; }
.about-text p { color: var(--text-body); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }

.stats-bar { background: var(--navy); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item {}
.stat-num { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); }

.timeline { padding: 64px 0; }
.timeline-title { text-align: center; font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; margin-bottom: 48px; }
.timeline-list { position: relative; max-width: 720px; margin: 0 auto; }
.timeline-list::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border); transform: translateX(-50%); }
.timeline-item { display: flex; justify-content: flex-end; padding-right: calc(50% + 32px); margin-bottom: 40px; position: relative; }
.timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 32px); }
.timeline-dot { position: absolute; left: 50%; top: 20px; width: 14px; height: 14px; background: var(--gold); border: 3px solid var(--cream); border-radius: 50%; transform: translateX(-50%); z-index: 1; }
.timeline-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 24px; max-width: 280px; box-shadow: var(--shadow-sm); }
.timeline-year { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 6px; }
.timeline-card h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.timeline-card p { font-size: 13px; color: var(--text-body); line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 14px; border: 3px solid var(--off-white); transition: var(--transition); }
.team-card:hover .team-photo { border-color: var(--gold); }
.team-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.team-role { font-size: 12px; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; padding: 64px 0; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; margin-bottom: 12px; }
.contact-info p { color: var(--text-body); line-height: 1.8; margin-bottom: 28px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-icon { width: 42px; height: 42px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0; font-size: 16px; }
.contact-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-value { font-size: 14px; font-weight: 500; color: var(--text-dark); }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--cream);
}
.form-control:focus { outline: none; border-color: var(--navy); background: #fff; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== POLICY PAGE ===== */
.policy-content { max-width: 800px; margin: 0 auto; padding: 64px 0; }
.policy-content h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.policy-content p, .policy-content li { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 10px; }
.policy-content ul { padding-left: 20px; list-style: disc; }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-main { flex-wrap: wrap; }
  .header-search { order: 3; max-width: 100%; flex-basis: 100%; }
  .news-grid-3 { grid-template-columns: 1fr; }
  .news-grid-2 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .promo-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline-list::before { left: 20px; }
  .timeline-item { padding-right: 0; padding-left: 50px; justify-content: flex-start; }
  .timeline-item:nth-child(even) { padding-left: 50px; }
  .timeline-dot { left: 20px; }
  .timeline-card { max-width: 100%; }
  .top-bar-left { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-main-title { font-size: 22px; }
  .page-hero h1 { font-size: 30px; }
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE MENU ===== */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--transition); }
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-list { display: none; flex-direction: column; padding: 10px 0; }
  .nav-list.open { display: flex; }
  .nav-list a { padding: 10px 20px; border-bottom: none; border-left: 3px solid transparent; }
  .nav-list a:hover, .nav-list a.active { border-left-color: var(--gold-light); border-bottom-color: transparent; }
}
