/* ═══════════════════════════════════════════════
   ICAR–KUFOS SC/ST Sub-Plan — Main Stylesheet
   File: assets/css/style.css
═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --navy:        #003366;
  --navy-dark:   #002244;
  --navy-mid:    #004080;
  --gold:        #c8960c;
  --gold-light:  #e8b020;
  --saffron:     #FF6600;
  --green:       #1a6b2f;
  --green-light: #2d9e47;
  --cream:       #fdf8f0;
  --white:       #ffffff;
  --text:        #1c1c1c;
  --text-light:  #555;
  --border:      #d0d8e4;
  --bg-light:    #f4f7fb;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,51,102,.12);
  --radius:      8px;
  --transition:  .22s ease;
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; color: var(--text); background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ═══════ TOP STRIP ═══════ */
.top-strip { background: var(--navy-dark); border-bottom: 2px solid var(--gold); }
.top-strip-inner { display: flex; justify-content: space-between; align-items: center; padding-top: 6px; padding-bottom: 6px; flex-wrap: wrap; gap: 6px; }
.top-left { display: flex; gap: 20px; font-size: 12px; color: #cdd9ee; }
.top-left a { color: #cdd9ee; transition: color var(--transition); }
.top-left a:hover { color: var(--gold-light); }
.top-right { display: flex; gap: 8px; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.12); color: #cdd9ee; font-size: 11px; font-weight: 700; transition: background var(--transition), color var(--transition); }
.social-icon:hover { background: var(--gold); color: var(--navy-dark); }

/* ═══════ HEADER ═══════ */
.site-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #005a99 100%); padding: 14px 0 0; box-shadow: 0 3px 12px rgba(0,0,0,.3); position: relative; }
.header-inner { display: flex; align-items: center; gap: 20px; padding-bottom: 14px; }
.header-logos { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-circle { width: 72px; height: 72px; background: var(--white); border-radius: 50%; border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.logo-circle img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.logo-text { font-size: 9.5px; font-weight: 800; color: var(--navy); text-align: center; line-height: 1.35; }
.logo-divider { width: 2px; height: 56px; background: rgba(255,255,255,.22); border-radius: 2px; }
.header-title { flex: 1; }
.org-label { font-size: 13px; color: var(--gold-light); letter-spacing: 1.2px; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 3px; }
.site-header h1 { font-family: 'Noto Serif', serif; color: var(--white); font-size: clamp(16px,2.2vw,24px); font-weight: 700; line-height: 1.25; margin-bottom: 3px; }
.org-sub { font-size: 13px; color: #aec6e8; }
.header-contact { text-align: right; font-size: 12px; color: #aec6e8; line-height: 1.75; flex-shrink: 0; }
.header-contact strong { color: var(--gold-light); display: block; }
.header-tricolor { height: 4px; background: linear-gradient(90deg, var(--saffron) 0%, var(--saffron) 33%, #fff 33%, #fff 66%, var(--green) 66%); }

/* ═══════ NAVIGATION ═══════ */
.main-nav { background: var(--navy-dark); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,.4); }
.nav-inner { display: flex; align-items: center; }
.nav-list { display: flex; flex-wrap: wrap; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: block; padding: 14px 15px; color: #d0dcee; font-size: 13.5px; font-weight: 600; white-space: nowrap; transition: color var(--transition), background var(--transition); }
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-list > li > a.active { border-bottom: 3px solid var(--gold); }
.arrow { font-size: 10px; }

/* Dropdown */
.dropdown { display: none; position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--white); border-top: 3px solid var(--gold); box-shadow: 0 6px 20px rgba(0,0,0,.18); z-index: 200; border-radius: 0 0 4px 4px; }
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 10px 16px; font-size: 13px; color: var(--navy); border-bottom: 1px solid #eef2f8; transition: background var(--transition), padding-left var(--transition); }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--bg-light); padding-left: 22px; color: var(--navy-mid); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 12px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ═══════ NEWS TICKER ═══════ */
.news-ticker { background: var(--green); color: #fff; display: flex; align-items: stretch; overflow: hidden; font-size: 13px; }
.ticker-label { background: var(--saffron); padding: 9px 16px; font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; display: flex; align-items: center; flex-shrink: 0; }
.ticker-wrap { overflow: hidden; flex: 1; padding: 9px 0; }
.ticker-move { display: inline-flex; gap: 60px; white-space: nowrap; animation: tickerScroll 35s linear infinite; }
.ticker-move span { color: #d4f0da; }
.ticker-move span::before { content: '◆  '; color: var(--gold-light); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════ PAGE BANNER ═══════ */
.page-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: #fff; padding: 36px 0; position: relative; overflow: hidden; }
.page-banner::after { content: ''; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.04); }
.page-banner h2 { font-family: 'Noto Serif', serif; font-size: clamp(22px,3vw,32px); font-weight: 700; margin-bottom: 8px; }
.breadcrumb { font-size: 13px; color: #aec6e8; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #7a9dbf; }

/* ═══════ MAIN LAYOUT ═══════ */
.main-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 28px; padding: 32px 0; }

/* ═══════ SECTION HEADING ═══════ */
.section-title { font-family: 'Noto Serif', serif; font-size: 20px; font-weight: 700; color: var(--navy); padding-bottom: 10px; margin-bottom: 20px; border-bottom: 3px solid var(--gold); display: flex; align-items: center; gap: 10px; }
.section-title::before { content: ''; display: block; width: 5px; height: 22px; background: var(--saffron); border-radius: 3px; flex-shrink: 0; }

/* ═══════ SLIDER ═══════ */
.slider-wrap { position: relative; overflow: hidden; background: #000; }
.slides { display: flex; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.slide { min-width: 100%; position: relative; }
.slide-bg { width: 100%; height: 480px; background-size: cover; background-position: center; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,20,60,.82) 0%, rgba(0,20,60,.3) 60%, transparent 100%); display: flex; align-items: center; }
.slide-content { padding: 40px 60px; color: #fff; max-width: 620px; }
.slide-tag { display: inline-block; background: var(--gold); color: var(--navy-dark); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; margin-bottom: 14px; }
.slide-content h2 { font-family: 'Noto Serif', serif; font-size: clamp(20px,3.2vw,38px); font-weight: 700; line-height: 1.25; margin-bottom: 14px; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.slide-content p { font-size: 15px; line-height: 1.65; color: #d0dcf5; margin-bottom: 22px; max-width: 500px; }
.slide-btn { display: inline-block; background: var(--gold); color: var(--navy-dark); padding: 10px 26px; font-weight: 700; font-size: 13px; border-radius: 3px; letter-spacing: .5px; transition: background var(--transition), transform .15s; }
.slide-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); border: 2px solid rgba(255,255,255,.3); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 20px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.slider-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; border: 2px solid rgba(255,255,255,.6); transition: background var(--transition), transform var(--transition); }
.dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.3); }
/* Fallback slide backgrounds */
.slide-g1 .slide-bg { background: linear-gradient(135deg, #003366 0%, #006633 100%); }
.slide-g2 .slide-bg { background: linear-gradient(135deg, #004080 0%, #1a5276 100%); }
.slide-g3 .slide-bg { background: linear-gradient(135deg, #1a3a1a 0%, #2d6b2d 100%); }
.slide-g4 .slide-bg { background: linear-gradient(135deg, #7b3300 0%, #003366 100%); }
.slide-g5 .slide-bg { background: linear-gradient(135deg, #004080 0%, #1a5276 100%); }
/* ═══════ HOME CARDS ═══════ */
.about-card { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: var(--radius); padding: 28px; color: #fff; margin-bottom: 28px; position: relative; overflow: hidden; }
.about-card::after { content: '⚓'; position: absolute; right: 20px; bottom: -10px; font-size: 80px; opacity: .06; pointer-events: none; }
.about-card h3 { font-family: 'Noto Serif', serif; font-size: 18px; color: var(--gold-light); margin-bottom: 12px; }
.about-card p { font-size: 14.5px; line-height: 1.75; color: #c5d5ea; }

.obj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.obj-card { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: 6px; padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start; transition: box-shadow var(--transition), transform var(--transition); }
.obj-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.obj-icon { width: 38px; height: 38px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.obj-card p { font-size: 13.5px; color: var(--text); line-height: 1.55; margin-top: 2px; }

.activities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 28px; }
.act-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, transform .25s; }
.act-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.act-card-head { background: var(--navy); padding: 13px 14px; display: flex; align-items: center; gap: 10px; color: #fff; }
.act-card-head span { font-size: 22px; }
.act-card-head h4 { font-family: 'Noto Serif', serif; font-size: 14px; font-weight: 600; line-height: 1.3; }
.act-card-body { padding: 14px; }
.act-card-body ul li { font-size: 13px; color: var(--text-light); padding: 5px 0; border-bottom: 1px dotted #e0e8f0; display: flex; gap: 8px; }
.act-card-body ul li::before { content: '▸'; color: var(--gold); flex-shrink: 0; }
.act-card-body ul li:last-child { border-bottom: none; }

.bene-strip { background: linear-gradient(135deg, #f0f7ff 0%, var(--cream) 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 28px; }
.bene-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.bene-tag { background: var(--navy); color: #fff; padding: 7px 16px; border-radius: 30px; font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 7px; }

.outcomes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.outcome-card { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--green); border-radius: var(--radius); padding: 18px; text-align: center; transition: box-shadow var(--transition); }
.outcome-card:hover { box-shadow: 0 4px 16px rgba(0,100,50,.12); }
.outcome-card .out-icon { font-size: 32px; margin-bottom: 8px; display: block; }
.outcome-card p { font-size: 13px; color: var(--text-light); line-height: 1.55; }

/* ═══════ ABOUT PAGE ═══════ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; margin-bottom: 36px; }
.about-intro-img { border-radius: var(--radius); overflow: hidden; border: 4px solid var(--gold); box-shadow: var(--shadow-md); }
.about-intro-img img { width: 100%; height: 280px; object-fit: cover; }
.about-intro-img .img-placeholder { width: 100%; height: 280px; background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%); display: flex; align-items: center; justify-content: center; font-size: 72px; opacity: .5; }
.about-text h3 { font-family: 'Noto Serif', serif; font-size: 18px; color: var(--navy); margin-bottom: 12px; }
.about-text p { font-size: 14.5px; color: var(--text-light); line-height: 1.75; margin-bottom: 14px; }

.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.vm-card { border-radius: var(--radius); padding: 24px; }
.vm-card.vision { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: #fff; }
.vm-card.mission { background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%); color: #fff; }
.vm-card h3 { font-family: 'Noto Serif', serif; font-size: 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.vm-card p { font-size: 14px; line-height: 1.75; opacity: .92; }

.milestones { margin-bottom: 32px; }
.milestone-row { display: flex; gap: 0; margin-bottom: 0; }
.milestone-row:not(:last-child) .milestone-line { flex: 1; }
.milestone-item { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px dashed var(--border); }
.milestone-item:last-child { border-bottom: none; }
.milestone-year { background: var(--navy); color: var(--gold-light); font-weight: 700; font-size: 13px; padding: 6px 12px; border-radius: 4px; height: fit-content; white-space: nowrap; }
.milestone-item p { font-size: 14px; color: var(--text); line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 28px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; transition: var(--shadow-md), transform var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 32px; border: 3px solid var(--gold); overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: 'Noto Serif', serif; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.team-card .designation { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.team-card .team-email { font-size: 12px; color: var(--navy-mid); }

/* ═══════ SIDEBAR ═══════ */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.sidebar-card-head { background: var(--navy); color: #fff; padding: 12px 16px; font-family: 'Noto Serif', serif; font-size: 15px; font-weight: 600; border-bottom: 3px solid var(--gold); display: flex; align-items: center; gap: 8px; }
.sidebar-card-body { padding: 14px; }

.news-list li { padding: 9px 0; border-bottom: 1px dashed #dde6f5; font-size: 13px; line-height: 1.5; display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.news-list li:last-child { border-bottom: none; }
.news-list li a { color: var(--navy); flex: 1; }
.news-list li a:hover { color: var(--saffron); }
.badge-new { background: #e00; color: #fff; font-size: 9px; font-weight: 700; padding: 2px 5px; border-radius: 2px; white-space: nowrap; animation: blink 1.2s step-end infinite; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.quick-links li a { display: flex; align-items: center; gap: 8px; padding: 9px 0; border-bottom: 1px dotted #dde6f5; font-size: 13px; color: var(--navy-mid); font-weight: 500; transition: color var(--transition), gap var(--transition); }
.quick-links li:last-child a { border-bottom: none; }
.quick-links li a::before { content: '➤'; font-size: 10px; color: var(--gold); }
.quick-links li a:hover { color: var(--saffron); gap: 12px; }

.contact-info { font-size: 13px; line-height: 2; color: var(--text-light); }
.contact-info strong { color: var(--navy); display: block; font-size: 13.5px; margin-top: 10px; }
.contact-info strong:first-child { margin-top: 0; }
.contact-info a { color: var(--navy-mid); }
.contact-info a:hover { color: var(--saffron); }

/* ═══════ FOOTER ═══════ */
.site-footer { background: var(--navy-dark); color: #aec2de; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,.1);margin:20px; }
.footer-brand h3 { font-family: 'Noto Serif', serif; color: var(--white); font-size: 16px; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; line-height: 1.75; color: #8aaacb; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a { width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #aec2de; transition: background var(--transition), color var(--transition); }
.footer-socials a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-col h4 { color: var(--gold-light); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: 13px; color: #8aaacb; display: flex; align-items: center; gap: 6px; transition: color var(--transition), gap var(--transition); }
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 16px; }
.footer-col ul li a:hover { color: var(--white); gap: 10px; }
.footer-bottom { background: #001530; padding: 14px 20px; }
.footer-bottom-inner { text-align: center; }
.footer-bottom-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-bottom: 8px; }
.footer-bottom-links a { font-size: 12px; color: #8aaacb; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }
.footer-bottom p { font-size: 12px; color: #6688aa; }
.footer-bottom strong { color: #9ab7d4; }
.footer-bottom a { color: var(--gold-light); }

/* ═══════ UTILITIES ═══════ */
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-green { color: var(--green); }
.mb-20 { margin-bottom: 20px; }
.mb-28 { margin-bottom: 28px; }
.mt-10 { margin-top: 10px; }

/* ═══════ CONTACT PAGE ═══════ */
.contact-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; margin-bottom: 28px; }
.contact-box { background: var(--bg-light); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: 6px; padding: 16px 18px; margin-bottom: 14px; }
.contact-box:last-child { margin-bottom: 0; }
.contact-box h4 { color: var(--navy); font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.contact-box p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }
.contact-box a { color: var(--navy-mid); } .contact-box a:hover { color: var(--saffron); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border); margin-bottom: 20px; }

/* ── Forms ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 5px; font-family: inherit; font-size: 14px; color: var(--text); background: #fafcff; transition: border-color var(--transition), box-shadow var(--transition); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--navy-mid); box-shadow: 0 0 0 3px rgba(0,64,128,.1); }
.form-group textarea { resize: vertical; }
.req { color: red; }
.btn-submit { background: var(--navy); color: #fff; border: none; padding: 12px 32px; font-size: 15px; font-weight: 700; border-radius: 5px; cursor: pointer; transition: background var(--transition), transform .15s; letter-spacing: .3px; }
.btn-submit:hover { background: var(--navy-mid); transform: translateY(-2px); }
.alert { padding: 14px 18px; border-radius: 6px; font-size: 14px; font-weight: 500; margin-bottom: 20px; }
.alert-success { background: #e6f4ea; color: #1a6b2f; border: 1px solid #a8d5b0; }
.alert-error   { background: #fdecea; color: #b00020; border: 1px solid #f5b3b3; }

/* ── Registration form ── */
.reg-form { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }

/* ═══════ NEWS FULL LIST ═══════ */
.news-full-list { }
.news-full-item { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.news-full-item:last-child { border-bottom: none; }
.news-date { background: var(--navy); color: var(--gold-light); font-size: 11px; font-weight: 700; padding: 6px 10px; border-radius: 4px; white-space: nowrap; height: fit-content; text-align: center; line-height: 1.5; min-width: 60px; }
.news-title-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; }
.news-title-wrap strong { font-size: 15px; color: var(--navy); }
.news-body p { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }

/* ═══════ GALLERY ═══════ */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: box-shadow var(--transition), transform var(--transition); }
.gallery-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gallery-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.gallery-card p { padding: 8px 12px; font-size: 12.5px; color: var(--text-light); background: var(--bg-light); }
.gallery-placeholder-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.gallery-placeholder-card { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: var(--radius); padding: 28px 16px; text-align: center; color: #fff; }
.gallery-ph-img { font-size: 36px; margin-bottom: 8px; opacity: .5; }
.gallery-placeholder-card p { font-size: 12px; color: #aec6e8; }

/* ═══════ REPORTS ═══════ */
.reports-list { margin-bottom: 20px; }
.report-item { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: var(--bg-light); border: 1px solid var(--border); border-radius: 6px; margin-bottom: 10px; }
.report-icon { font-size: 28px; flex-shrink: 0; }
.report-info { flex: 1; }
.report-info strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 3px; }
.report-info span { font-size: 12px; color: var(--text-light); }
.btn-download { background: var(--green); color: #fff; padding: 7px 16px; border-radius: 4px; font-size: 13px; font-weight: 600; white-space: nowrap; transition: background var(--transition); }
.btn-download:hover { background: var(--green-light); }
.report-na { background: #eee; color: #888; padding: 6px 12px; border-radius: 4px; font-size: 12px; white-space: nowrap; }

/* ═══════ SUCCESS STORIES ═══════ */
.stories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.story-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; border-top: 4px solid var(--gold); transition: box-shadow var(--transition), transform var(--transition); }
.story-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.story-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.story-avatar { font-size: 36px; flex-shrink: 0; }
.story-header h4 { font-family: 'Noto Serif', serif; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.story-title { font-size: 13px; color: var(--green); font-weight: 600; line-height: 1.4; }
.story-card > p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }

/* ═══════ RESPONSIVE EXTRAS ═══════ */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .gallery-placeholder-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-placeholder-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .slide-icon {
        display: none;
    }
}
