@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,400&family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700;900&family=Open+Sans:wght@300;400;600;700&display=swap');

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
  --color-primary: #2C3E50;
  --color-secondary: #BDC3C7;
  --color-accent: #1ABC9C;
  --color-bg: #F7F9FB;
  --color-white: #ffffff;
  --color-border: #E0E0E0;
  --color-text-muted: #7F8C8D;
  --color-dark-bg: #1a252f;
  --font-heading: 'Lora', 'Merriweather', Georgia, serif;
  --font-body: 'Lato', 'Open Sans', Arial, sans-serif;
  --container-max: 1200px;
  --shadow-soft: 0px 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0px 8px 30px rgba(0, 0, 0, 0.10);
  --radius: 6px;
  --transition: 0.2s ease;
}

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

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

body {
  background-color: var(--color-bg);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #16a085;
}

ul, ol {
  padding-left: 1.5em;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 1.2em;
  color: var(--color-primary);
}

blockquote {
  border-left: 4px solid var(--color-accent);
  padding: 20px 30px;
  margin: 30px 0;
  background: var(--color-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

/* ==========================================
   CONTAINER
   ========================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--color-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
  font-size: 18px;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-accent);
  background: rgba(26, 188, 156, 0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  min-width: 220px;
  z-index: 1001;
  padding: 8px 0;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--color-primary);
  border-radius: 0;
}

.dropdown-menu a:hover {
  background: var(--color-bg);
  color: var(--color-accent);
}

.nav-cta {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
}

.nav-cta:hover {
  background: #16a085 !important;
  color: var(--color-white) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26,188,156,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-content .lead {
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
  text-align: left;
}

.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  line-height: 1;
}

.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: #16a085;
  border-color: #16a085;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,188,156,0.3);
}

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

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: var(--color-bg);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 17px;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--color-secondary);
  background: #F0F3F4;
  padding: 100px 0;
}

.section-dark {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 100px 0;
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255,255,255,0.8);
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.section-label-dark {
  color: rgba(26,188,156,0.9);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .lead {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.section-header.dark-text h2 {
  color: var(--color-white);
}

/* ==========================================
   CARDS
   ========================================== */
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.card-body {
  padding: 28px 32px;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 16px;
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 10px;
}

/* ==========================================
   GRIDS
   ========================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }

/* ==========================================
   BREADCRUMBS
   ========================================== */
.breadcrumbs {
  padding: 16px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumbs nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.breadcrumbs nav a {
  color: var(--color-text-muted);
}

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

.breadcrumbs nav span {
  color: var(--color-primary);
  font-weight: 600;
}

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 72px 0 64px;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero .lead {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 700px;
  line-height: 1.65;
}

/* ==========================================
   ARTICLE / CONTENT
   ========================================== */
.article-content {
  max-width: 820px;
}

.article-content h2 {
  font-size: 30px;
  margin: 48px 0 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.article-content h3 {
  font-size: 24px;
  margin: 36px 0 16px;
}

.article-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #3d4f5c;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.2em;
}

.article-content li {
  font-size: 17px;
  line-height: 1.7;
  color: #3d4f5c;
  margin-bottom: 6px;
}

.article-content li::marker {
  color: var(--color-accent);
}

.article-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  margin: 36px 0;
}

/* ==========================================
   SIDEBAR
   ========================================== */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  margin-bottom: 28px;
}

.sidebar-widget h4 {
  font-size: 17px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}

.sidebar-nav li {
  list-style: none;
  padding: 0;
}

.sidebar-nav li a {
  display: block;
  padding: 9px 0;
  font-size: 14px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
}

.sidebar-nav li:last-child a {
  border-bottom: none;
}

.sidebar-nav li a:hover {
  color: var(--color-accent);
  padding-left: 6px;
}

/* ==========================================
   STATISTICS / INFOGRAPHICS
   ========================================== */
.stat-block {
  text-align: center;
  padding: 40px 28px;
}

.stat-block .stat-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  line-height: 1;
}

.stat-block .stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 8px;
  line-height: 1.4;
}

.stat-divider {
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px auto;
  border-radius: 2px;
}

/* ==========================================
   TIMELINE
   ========================================== */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline-year {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ==========================================
   QUOTE / HIGHLIGHT
   ========================================== */
.highlight-box {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 60px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-family: var(--font-heading);
  font-size: 200px;
  color: rgba(26,188,156,0.1);
  line-height: 1;
  pointer-events: none;
}

.highlight-box p {
  font-size: 22px;
  font-family: var(--font-heading);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  position: relative;
}

.highlight-box cite {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-style: normal;
  font-family: var(--font-body);
  color: var(--color-accent);
  letter-spacing: 0.5px;
  position: relative;
}

/* ==========================================
   ACCENT STRIP
   ========================================== */
.accent-strip {
  background: var(--color-accent);
  padding: 60px 0;
  color: var(--color-white);
}

.accent-strip h2 {
  color: var(--color-white);
}

.accent-strip p {
  color: rgba(255,255,255,0.85);
}

/* ==========================================
   TAGS / CATEGORIES
   ========================================== */
.tag {
  display: inline-block;
  background: rgba(26,188,156,0.1);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.tag:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

/* ==========================================
   FORMS
   ========================================== */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-primary);
  background: var(--color-white);
  transition: all var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(26,188,156,0.15);
}

.form-control::placeholder {
  color: #a0aab0;
}

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

select.form-control {
  cursor: pointer;
}

.form-hint {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ==========================================
   ALERT / SUCCESS MESSAGE
   ========================================== */
.alert {
  padding: 18px 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 15px;
  display: none;
}

.alert.show { display: block; }

.alert-success {
  background: rgba(26,188,156,0.12);
  border: 1px solid rgba(26,188,156,0.4);
  color: #0e7a62;
  font-weight: 600;
}

.alert-error {
  background: rgba(231,76,60,0.1);
  border: 1px solid rgba(231,76,60,0.3);
  color: #c0392b;
}

/* ==========================================
   TABLE
   ========================================== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.data-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary);
}

.data-table tr:hover td {
  background: rgba(26,188,156,0.04);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.table-wrap {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: auto;
  border: 1px solid var(--color-border);
}

/* ==========================================
   ACCORDION / FAQ
   ========================================== */
.accordion-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
  transition: background var(--transition);
  user-select: none;
}

.accordion-header:hover {
  background: var(--color-bg);
}

.accordion-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding: 4px 28px 24px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.accordion-item.open .accordion-body {
  display: block;
}

.accordion-item.open .accordion-header {
  color: var(--color-accent);
}

/* ==========================================
   NEWSLETTER / CTA BOX
   ========================================== */
.newsletter-box {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  padding: 40px;
  text-align: center;
}

.newsletter-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.newsletter-box p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form .form-control {
  flex: 1;
}

/* ==========================================
   AUTHOR BOX
   ========================================== */
.author-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info h5 {
  font-size: 16px;
  margin-bottom: 4px;
}

.author-info .role {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.author-info p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ==========================================
   FEATURE LIST
   ========================================== */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--color-dark-bg);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-brand .logo-text {
  color: var(--color-white);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 0;
}

.footer-col h5 {
  color: var(--color-white);
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-contact-icon {
  color: var(--color-accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 48px 0 0;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

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

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-info-block {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}

.contact-info-block h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--color-accent);
}

.contact-info-block p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ==========================================
   POLICY PAGES
   ========================================== */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 26px;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.policy-content h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.policy-content h3 {
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.policy-content p, .policy-content li {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-meta {
  background: #F0F3F4;
  border-left: 4px solid var(--color-accent);
  padding: 18px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ==========================================
   PAGINATION
   ========================================== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition);
}

.pagination a:hover, .pagination span.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* ==========================================
   BANNER / FULL-WIDTH
   ========================================== */
.full-banner {
  position: relative;
  overflow: hidden;
}

.full-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.full-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,62,80,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-banner .banner-content {
  text-align: center;
  color: var(--color-white);
  max-width: 700px;
  padding: 0 40px;
}

.full-banner .banner-content h2 {
  color: var(--color-white);
  font-size: 40px;
  margin-bottom: 20px;
}

.full-banner .banner-content p {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  margin-bottom: 32px;
}

/* ==========================================
   SEARCH BAR
   ========================================== */
.search-bar {
  display: flex;
  gap: 0;
  max-width: 560px;
}

.search-bar .form-control {
  border-radius: var(--radius) 0 0 var(--radius);
  border-right: none;
}

.search-bar .btn {
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 13px 24px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-inner { gap: 48px; }
  .hero-content h1 { font-size: 42px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    border-top: 1px solid var(--color-border);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 16px; font-size: 16px; }
  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 20px;
  }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { display: none; }
  .hero-content h1 { font-size: 36px; }
  .hero-stat-row { gap: 24px; }

  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  .grid-2, .grid-3, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .section, .section-alt, .section-dark { padding: 60px 0; }
  .container { padding: 0 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }

  .header-inner { padding: 0 20px; }
  .highlight-box { padding: 36px 28px; }
  .highlight-box p { font-size: 18px; }

  .page-hero h1 { font-size: 32px; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .btn-group { flex-direction: column; }
  .hero { padding: 80px 0 60px; }
  .hero-stat-row { flex-wrap: wrap; }
}
