/* ============================================================
   Korosho Group — Main Stylesheet
   Brand Colors:
     Primary    : #1B4332  (Deep Forest Green)
     Secondary  : #D4A017  (Corporate Gold)
     Accent     : #5BB5DC  (Sky Blue)
     Light bg   : #F4F7F5
     Dark text  : #1E293B
   ============================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #1B4332;
  --primary-dark:  #0D2B1E;
  --primary-light: #2D6B52;
  --gold:          #D4A017;
  --gold-light:    #F0C040;
  --blue:          #5BB5DC;
  --blue-dark:     #2196B0;
  --white:         #FFFFFF;
  --off-white:     #F4F7F5;
  --light-gray:    #E8EDEB;
  --mid-gray:      #94A3A0;
  --text:          #1E293B;
  --text-light:    #4B6358;
  --border:        #D1DDD8;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.14);
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --transition:    0.25s ease;
  --header-h:      80px;
  --topbar-h:      40px;
  --container:     1180px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ─────────────────────────────────────────────── */
.section          { padding: 80px 0; }
.section.bg-light { background: var(--off-white); }
.bg-dark-green    { background: var(--primary); }
.text-center      { text-align: center; }
.text-white       { color: var(--white); }
.text-muted       { color: var(--mid-gray); }
.mt-sm            { margin-top: 0.75rem; }
.mt-lg            { margin-top: 2.5rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary { background: var(--gold); color: var(--primary-dark); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,.35); }

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

.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--outline-light:hover { background: rgba(255,255,255,.15); border-color: var(--white); color: var(--white); }

.btn--lg   { padding: 15px 36px; font-size: 1rem; }
.btn--sm   { padding: 8px 18px;  font-size: 0.85rem; }
.btn--xs   { padding: 5px 12px;  font-size: 0.8rem;  font-weight: 500; }
.btn--full { width: 100%; justify-content: center; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn--danger { background: #EF4444; color: #fff; border-color: #EF4444; }
.btn--danger:hover { background: #DC2626; }

/* ── Alerts ──────────────────────────────────────────────── */
.alert { padding: 14px 20px; border-radius: var(--radius-md); margin-bottom: 1.5rem; display: flex; gap: 12px; align-items: flex-start; }
.alert svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.alert-success { background: #D1FAE5; color: #065F46; border-left: 4px solid #10B981; }
.alert-error   { background: #FEE2E2; color: #991B1B; border-left: 4px solid #EF4444; }
.alert-warning { background: #FEF3C7; color: #92400E; border-left: 4px solid #F59E0B; }
.alert ul      { margin-left: 1rem; list-style: disc; }

/* ── Forms ───────────────────────────────────────────────── */
.form-group         { margin-bottom: 1.25rem; }
.form-group label   { display: block; font-weight: 500; margin-bottom: 6px; font-size: 0.9rem; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select  { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9375rem; font-family: inherit; color: var(--text); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,67,50,.12); }
.form-group textarea { resize: vertical; }
.form-group small   { display: block; margin-top: 4px; font-size: 0.8rem; color: var(--mid-gray); }
.form-row           { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.required           { color: #EF4444; }

/* Pagination */
.pagination ul      { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; padding: 2rem 0 0; }
.pagination li a    { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-weight: 500; transition: all var(--transition); }
.pagination li a:hover,
.pagination li.active a { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Section headers */
.section__eyebrow { display: block; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 0.6rem; }
.section__eyebrow--light { color: var(--gold-light); }
.section__title   { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; color: var(--primary); margin-bottom: 1rem; }
.section__subtitle { font-size: 1.0625rem; color: var(--text-light); max-width: 600px; }
.section__header  { margin-bottom: 3rem; }
.section__header.text-center .section__subtitle { margin-left: auto; margin-right: auto; }

/* ── Topbar ──────────────────────────────────────────────── */
.topbar { background: var(--primary-dark); color: rgba(255,255,255,.8); font-size: 0.8125rem; height: var(--topbar-h); display: flex; align-items: center; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; }
.topbar__left  { display: flex; align-items: center; gap: 1.5rem; }
.topbar__item  { display: flex; align-items: center; gap: 6px; }
.topbar__item svg { width: 14px; height: 14px; fill: var(--gold); stroke: none; }
.topbar__item a { color: rgba(255,255,255,.8); }
.topbar__item a:hover { color: var(--gold); }
.topbar__right { display: flex; gap: 12px; }
.topbar__social { color: rgba(255,255,255,.6); display: flex; }
.topbar__social svg { width: 16px; height: 16px; fill: none; stroke: currentColor; }
.topbar__social:hover { color: var(--gold); }

/* ── Header / Nav ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo img { width: 56px; height: 56px; object-fit: contain; }
.header__logo-text { display: flex; flex-direction: column; }
.header__logo-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--primary); line-height: 1.1; }
.header__logo-tagline { font-size: 0.65rem; color: var(--mid-gray); text-transform: uppercase; letter-spacing: .08em; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav__list { display: flex; align-items: center; gap: 0.25rem; }
.main-nav__list a { padding: 6px 14px; font-weight: 500; font-size: 0.9375rem; color: var(--text); border-radius: var(--radius-sm); transition: all var(--transition); }
.main-nav__list a:hover,
.main-nav__list a.active { color: var(--primary); background: var(--off-white); }
.main-nav__list a.active { color: var(--primary); font-weight: 600; }
.nav-cta { margin-left: 0.5rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - var(--topbar-h));
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(13,43,30,.92) 0%, rgba(27,67,50,.88) 50%, rgba(91,181,220,.25) 100%),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(91,181,220,.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 0;
  color: var(--white);
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(212,160,23,.2);
  border: 1px solid rgba(212,160,23,.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 600px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.5); font-size: 0.75rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll-hint svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── Hero Slider ─────────────────────────────────────────── */
.hero-slider {
  position: relative;
  height: calc(100vh - var(--header-h) - var(--topbar-h));
  min-height: 580px;
  overflow: hidden;
  background: var(--primary-dark);
}
.hs-track { position: relative; height: 100%; }
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
  z-index: 0;
}
.hs-slide--active { opacity: 1; pointer-events: auto; z-index: 1; }
.hs-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.hs-slide--active .hs-slide__bg { transform: scale(1); }
.hs-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,43,30,.88) 0%, rgba(27,67,50,.72) 55%, rgba(13,43,30,.55) 100%);
}
.hs-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 110px;
  max-width: 820px;
  color: var(--white);
}
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.hs-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--primary-dark); }
.hs-arrow svg { width: 24px; height: 24px; }
.hs-arrow--prev { left: 24px; }
.hs-arrow--next { right: 24px; }
.hs-dots {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hs-dot {
  width: 10px; height: 10px;
  border-radius: 6px;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}
.hs-dot--active { background: var(--gold); width: 32px; }
.hs-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.1); z-index: 10; }
.hs-progress__bar { height: 100%; background: var(--gold); width: 0%; }
@media (max-width: 768px) {
  .hero-slider { height: calc(100svh - var(--header-h)); min-height: 500px; }
  .hs-arrow { width: 40px; height: 40px; }
  .hs-arrow svg { width: 18px; height: 18px; }
  .hs-arrow--prev { left: 10px; }
  .hs-arrow--next { right: 10px; }
  .hs-dots { bottom: 48px; }
  .hs-slide__content { padding-bottom: 88px; max-width: 100%; }
}

/* ── Stats Banner ────────────────────────────────────────── */
.stats-banner { background: var(--primary); padding: 48px 0; }
.stats-banner__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-item { text-align: center; padding: 1.5rem 1rem; }
.stat-item__number { display: block; font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-item__label  { display: block; font-size: 0.875rem; color: rgba(255,255,255,.75); margin-top: 6px; text-transform: uppercase; letter-spacing: .06em; }

/* ── About Summary ───────────────────────────────────────── */
.about-summary__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-summary__image-wrap { position: relative; }
.about-summary__img-main img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 480px; object-fit: cover; }
.about-summary__img-main {
  background: linear-gradient(145deg, #1B4332 0%, #2D6B52 60%, #5BB5DC 100%);
  border-radius: var(--radius-lg); height: 480px; overflow: hidden;
  position: relative;
}
.about-summary__img-main::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='75' cy='25' r='40' fill='rgba(212,160,23,0.06)'/%3E%3Ccircle cx='20' cy='75' r='30' fill='rgba(91,181,220,0.06)'/%3E%3C/svg%3E") center / cover;
  pointer-events: none;
}
.about-summary__badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-summary__badge-number { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-summary__badge-text   { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.about-summary__text { padding-left: 2rem; }

.check-list { margin: 1.25rem 0 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: var(--text-light); }
.check-list li::before { content: ''; display: inline-block; width: 20px; height: 20px; flex-shrink: 0; background: var(--gold); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B4332' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }

/* ── Services Grid ───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary); }
.service-card__icon { width: 56px; height: 56px; background: var(--off-white); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: background var(--transition); }
.service-card__icon svg { width: 28px; height: 28px; stroke: var(--primary); }
.service-card:hover .service-card__icon { background: var(--primary); }
.service-card:hover .service-card__icon svg { stroke: var(--gold); }
.service-card__title { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.service-card__desc  { font-size: 0.9rem; color: var(--text-light); flex-grow: 1; margin-bottom: 1.25rem; }
.service-card__link  { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.875rem; color: var(--primary); }
.service-card__link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ── Why Us ──────────────────────────────────────────────── */
.why-us__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-us__item { background: var(--off-white); border-radius: var(--radius-lg); padding: 2rem; transition: transform var(--transition), box-shadow var(--transition); }
.why-us__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-us__icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.why-us__icon--green { background: rgba(27,67,50,.12); }
.why-us__icon--green svg { stroke: var(--primary); }
.why-us__icon--gold  { background: rgba(212,160,23,.12); }
.why-us__icon--gold svg { stroke: var(--gold); }
.why-us__icon--blue  { background: rgba(91,181,220,.15); }
.why-us__icon--blue svg { stroke: var(--blue-dark); }
.why-us__icon svg { width: 26px; height: 26px; }
.why-us__item h3 { font-size: 1.0625rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.why-us__item p  { font-size: 0.9rem; color: var(--text-light); }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials__slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-card__stars { display: flex; gap: 4px; }
.testimonial-card__stars svg { width: 18px; height: 18px; stroke: rgba(255,255,255,.2); }
.testimonial-card__stars svg.filled { fill: var(--gold); stroke: var(--gold); }
.testimonial-card__quote { font-size: 1rem; color: rgba(255,255,255,.85); line-height: 1.7; font-style: italic; flex-grow: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-card__avatar--initials { background: var(--gold); color: var(--primary-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }
.testimonial-card__author strong { display: block; color: var(--white); font-size: 0.9375rem; }
.testimonial-card__author span   { display: block; font-size: 0.8rem; color: rgba(255,255,255,.55); }

/* ── News Grid ───────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.news-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.news-card__img { position: relative; height: 220px; overflow: hidden; background: var(--light-gray); }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card__img img { transform: scale(1.05); }
.news-card__img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%); }
.news-card__category { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--primary-dark); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 10px; border-radius: 50px; }
.news-card__body  { padding: 1.5rem; }
.news-card__date  { font-size: 0.8rem; color: var(--mid-gray); display: block; margin-bottom: 0.5rem; }
.news-card__title { font-size: 1.0625rem; font-weight: 700; line-height: 1.35; margin-bottom: 0.75rem; }
.news-card__title a { color: var(--primary); }
.news-card__title a:hover { color: var(--gold); }
.news-card__excerpt { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1rem; }
.news-card__link  { font-size: 0.875rem; font-weight: 600; color: var(--primary); }
.news-card__link:hover { color: var(--gold); }

/* ── Partners ────────────────────────────────────────────── */
.partners-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; }
.partners-logos__item { filter: grayscale(100%); opacity: 0.6; transition: all var(--transition); }
.partners-logos__item:hover { filter: none; opacity: 1; }
.partners-logos__item img { height: 48px; max-width: 160px; object-fit: contain; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 80px 0; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.cta-banner__inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 0.5rem; }
.cta-banner__inner p  { color: rgba(255,255,255,.75); font-size: 1.0625rem; }
.cta-banner__actions  { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Page Banner ─────────────────────────────────────────── */
.page-banner {
  background:
    linear-gradient(160deg, rgba(13,43,30,.88) 0%, rgba(27,67,50,.82) 100%),
    var(--banner-bg, linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%)) center / cover no-repeat;
  padding: 80px 0;
  color: var(--white);
}
.page-banner__inner h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.page-banner__article-title { font-size: clamp(1.5rem, 3.5vw, 2.5rem); max-width: 800px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.5); }

/* ── About Page ──────────────────────────────────────────── */
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-story__image img { border-radius: var(--radius-lg); width: 100%; height: 500px; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-story__image {
  border-radius: var(--radius-lg); height: 500px; overflow: hidden;
  background: linear-gradient(145deg, #1B4332 0%, #2D6B52 60%, #4CAF50 100%);
}

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card { padding: 3rem; border-radius: var(--radius-xl); }
.mv-card--mission { background: var(--primary); color: var(--white); }
.mv-card--vision  { background: var(--gold); color: var(--primary-dark); }
.mv-card__icon    { width: 60px; height: 60px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.mv-card__icon svg { width: 30px; height: 30px; }
.mv-card--mission .mv-card__icon svg { stroke: var(--gold); }
.mv-card--vision  .mv-card__icon svg { stroke: var(--primary); }
.mv-card h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 1rem; }
.mv-card--mission h2 { color: var(--gold); }
.mv-card p { line-height: 1.8; opacity: 0.92; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-item { padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all var(--transition); }
.value-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.value-item__number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); opacity: 0.5; line-height: 1; margin-bottom: 0.5rem; }
.value-item h3 { font-size: 1.0625rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.value-item p  { font-size: 0.9rem; color: var(--text-light); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-card__photo { height: 240px; overflow: hidden; background: var(--light-gray); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; background: var(--primary); color: var(--gold); }
.team-card__info { padding: 1.25rem; }
.team-card__info h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-card__role { font-size: 0.8125rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: 0.75rem; }
.team-card__info p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.team-card__social { display: flex; gap: 8px; margin-top: 1rem; }
.team-card__social a { width: 32px; height: 32px; background: var(--off-white); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.team-card__social a svg { width: 16px; height: 16px; }
.team-card__social a:hover { background: var(--primary); color: var(--white); }

/* ── Services Page ───────────────────────────────────────── */
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--border); }
.service-row:last-child { border-bottom: none; }
.service-row--reverse { direction: rtl; }
.service-row--reverse > * { direction: ltr; }
.service-row__image { border-radius: var(--radius-lg); overflow: hidden; height: 380px; background: var(--light-gray); }
.service-row__image img { width: 100%; height: 100%; object-fit: cover; }
.service-row__image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%); }
.service-row__image-placeholder svg { width: 80px; height: 80px; stroke: var(--border); }
.service-row__icon { width: 56px; height: 56px; background: rgba(27,67,50,.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-row__icon svg { width: 28px; height: 28px; stroke: var(--primary); }
.service-row__content h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--primary); margin-bottom: 1rem; }
.service-row__content p  { color: var(--text-light); margin-bottom: 1.5rem; font-size: 1rem; }

/* Service Detail */
.service-detail__layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.service-detail__hero-img { border-radius: var(--radius-lg); width: 100%; height: 360px; object-fit: cover; margin-bottom: 2rem; }
.service-detail__icon { width: 64px; height: 64px; background: rgba(27,67,50,.1); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.service-detail__icon svg { width: 32px; height: 32px; stroke: var(--primary); }
.service-detail__main h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--primary); margin-bottom: 1.5rem; }
.service-detail__cta { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }

/* Prose (content area) */
.prose p   { margin-bottom: 1.25rem; line-height: 1.8; color: var(--text-light); }
.prose h3  { font-size: 1.2rem; color: var(--primary); margin: 2rem 0 0.75rem; font-weight: 700; }
.prose ul  { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li  { margin-bottom: 0.4rem; color: var(--text-light); }
.prose strong { color: var(--text); }

/* Sidebar widgets */
.sidebar-widget { background: var(--off-white); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-widget h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gold); }
.sidebar-widget--cta { background: var(--primary); color: var(--white); }
.sidebar-widget--cta h3 { color: var(--gold); border-color: rgba(212,160,23,.3); }
.sidebar-widget--cta p { font-size: 0.9rem; color: rgba(255,255,255,.75); margin-bottom: 1rem; }
.sidebar-services { display: flex; flex-direction: column; gap: 4px; }
.sidebar-services li a { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: var(--radius-sm); color: var(--text); font-size: 0.9rem; transition: all var(--transition); }
.sidebar-services li a:hover, .sidebar-services li.active a { background: var(--primary); color: var(--white); }
.sidebar-services__icon { width: 20px; height: 20px; flex-shrink: 0; }
.sidebar-services__icon svg { width: 100%; height: 100%; }
.small-link { font-size: 0.8rem; color: var(--blue-dark); }

/* ── News Page ───────────────────────────────────────────── */
.news-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.news-layout__sidebar > * { margin-bottom: 1.5rem; }
.news-grid--list .news-card--horizontal { display: grid; grid-template-columns: 260px 1fr; }
.news-grid--list .news-card--horizontal .news-card__img { height: 100%; min-height: 200px; }
.category-list { display: flex; flex-direction: column; gap: 4px; }
.category-list a { display: block; padding: 8px 12px; border-radius: var(--radius-sm); color: var(--text); font-size: 0.9rem; transition: all var(--transition); }
.category-list a:hover, .category-list a.active { background: var(--primary); color: var(--white); }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 0.75rem; }
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--mid-gray); }
.empty-state svg { width: 60px; height: 60px; margin: 0 auto 1rem; stroke: var(--border); }
.empty-state h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 0.5rem; }

/* Article */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.article-main__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 1.5rem; font-size: 0.875rem; color: var(--mid-gray); }
.article-main__hero { border-radius: var(--radius-lg); width: 100%; max-height: 480px; object-fit: cover; margin-bottom: 2rem; }
.article-main__body { font-size: 1.0625rem; line-height: 1.85; }
.article-main__footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; border-top: 1px solid var(--border); margin-top: 2rem; }
.article-main__share { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; }
.share-btn { padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.share-btn--twitter  { background: #1DA1F2; color: #fff; }
.share-btn--linkedin { background: #0A66C2; color: #fff; }
.sidebar-post { padding: 12px 0; border-bottom: 1px solid var(--border); }
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post time { font-size: 0.75rem; color: var(--mid-gray); display: block; margin-bottom: 4px; }
.sidebar-post a    { font-size: 0.9rem; font-weight: 500; color: var(--text); line-height: 1.4; }
.sidebar-post a:hover { color: var(--primary); }

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--primary); margin: 0.75rem 0 1rem; }
.contact-info > p { color: var(--text-light); margin-bottom: 2rem; }
.contact-info__items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-info__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info__icon { width: 44px; height: 44px; background: rgba(27,67,50,.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.contact-info__icon svg { width: 22px; height: 22px; fill: var(--primary); stroke: none; }
.contact-info__item h4 { font-size: 0.875rem; font-weight: 600; color: var(--mid-gray); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.contact-info__item p, .contact-info__item a { font-size: 0.9375rem; color: var(--text); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; height: 220px; background: var(--light-gray); }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.contact-map__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--mid-gray); font-size: 0.9rem; }
.contact-map__placeholder svg { width: 48px; height: 48px; fill: var(--border); stroke: none; }
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--primary); margin-bottom: 1.5rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Footer ──────────────────────────────────────────────── */
.footer__top { background: var(--primary-dark); padding: 72px 0 48px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer__col h3 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 1.25rem; }
.footer__col ul li a { font-size: 0.9rem; color: rgba(255,255,255,.6); display: block; padding: 3px 0; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer__brand { }
.footer__logo  { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer__logo img { width: 52px; height: 52px; }
.footer__logo span { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); font-weight: 700; }
.footer__brand p { font-size: 0.9rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }

.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: all var(--transition); }
.footer__social a svg { width: 16px; height: 16px; fill: none; stroke: currentColor; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--primary-dark); }
.footer__social a:hover svg { stroke: var(--primary-dark); }

.footer__contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 0.75rem; }
.footer__contact .icon { width: 16px; height: 16px; flex-shrink: 0; fill: var(--gold); stroke: none; margin-top: 2px; }
.footer__contact span, .footer__contact a { font-size: 0.875rem; color: rgba(255,255,255,.6); }
.footer__contact a:hover { color: var(--gold); }

.footer__bottom { background: rgba(0,0,0,.3); padding: 18px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer__bottom p { font-size: 0.8125rem; color: rgba(255,255,255,.45); }

/* ── Gallery Page ────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.gallery-filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,43,30,.62);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1rem;
}
.gallery-item__overlay svg { width: 36px; height: 36px; stroke: white; }
.gallery-item__overlay span { color: rgba(255,255,255,.9); font-size: 0.8rem; text-align: center; line-height: 1.4; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item[data-hidden="true"] { display: none; }
.gallery-see-more { text-align: center; padding: 3rem 0 1rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__img {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  display: block;
}
.lightbox__caption { color: rgba(255,255,255,.7); font-size: 0.875rem; margin-top: 1rem; text-align: center; }
.lightbox__close {
  position: absolute;
  top: -52px; right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lightbox__nav:hover { background: var(--gold); border-color: var(--gold); color: var(--primary-dark); }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__prev { left: -68px; }
.lightbox__next { right: -68px; }
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lightbox__prev { left: -52px; }
  .lightbox__next { right: -52px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .lightbox__prev, .lightbox__next { display: none; }
}

/* ── Scroll Animations (AOS) ─────────────────────────────── */
[data-aos] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-aos="fade-up"]    { transform: translateY(28px); }
[data-aos="fade-down"]  { transform: translateY(-28px); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos].aos-visible  { opacity: 1 !important; transform: none !important; }

/* Testimonial slider dots */
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; cursor: pointer; display: inline-block; margin: 0 4px; transition: background 0.2s; padding: 0; }
.dot--active { background: #D4A017; }
#testimonials-dots { text-align: center; margin-top: 1.5rem; }

/* Form field error state */
.field-error { border-color: #EF4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,.12) !important; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid       { grid-template-columns: repeat(2, 1fr); }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .team-grid          { grid-template-columns: repeat(2, 1fr); }
  .about-summary__grid { gap: 3rem; }
  .footer__grid       { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-banner__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__slider { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .topbar { display: none; }
  .section { padding: 56px 0; }
  .hamburger { display: flex; }
  .main-nav {
    position: fixed; top: var(--header-h); right: 0; bottom: 0; left: 0;
    background: var(--white); flex-direction: column; justify-content: flex-start;
    padding: 2rem; z-index: 800;
    transform: translateX(100%); transition: transform 0.3s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav__list { flex-direction: column; width: 100%; gap: 4px; }
  .main-nav__list a { padding: 12px 16px; font-size: 1rem; }
  .nav-cta { width: 100%; justify-content: center; }

  .hero { min-height: 90vh; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .about-summary__grid  { grid-template-columns: 1fr; gap: 3rem; }
  .about-summary__text  { padding-left: 0; }
  .about-summary__badge { right: 0; bottom: -20px; }
  .services-grid        { grid-template-columns: 1fr; }
  .why-us__grid         { grid-template-columns: 1fr; }
  .testimonials__slider { grid-template-columns: 1fr; }
  .news-grid            { grid-template-columns: 1fr; }
  .news-layout          { grid-template-columns: 1fr; }
  .article-layout       { grid-template-columns: 1fr; }
  .article-sidebar      { order: -1; }
  .values-grid          { grid-template-columns: 1fr; }
  .team-grid            { grid-template-columns: repeat(2, 1fr); }
  .mv-grid              { grid-template-columns: 1fr; }
  .about-story__grid    { grid-template-columns: 1fr; }
  .service-row          { grid-template-columns: 1fr; gap: 2rem; direction: ltr !important; }
  .service-detail__layout { grid-template-columns: 1fr; }
  .contact-layout       { grid-template-columns: 1fr; }
  .cta-banner__inner    { flex-direction: column; text-align: center; }
  .footer__grid         { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand p      { max-width: 100%; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .form-row             { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .news-grid--list .news-card--horizontal { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-banner__grid   { grid-template-columns: 1fr 1fr; gap: 0; }
  .team-grid            { grid-template-columns: 1fr; }
  .header__logo-tagline { display: none; }
}
