/* ============================================
   AKANESI MATAITONGA TRUST - Modern Stylesheet
   ============================================ */

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

:root {
  --gold: #d4a843;
  --gold-light: #f0d68a;
  --navy: #1a2744;
  --navy-light: #2a3d5e;
  --red: #c0392b;
  --white: #ffffff;
  --off-white: #f8f7f3;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--navy);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.3;
}

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

/* --- Header & Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  margin-left: 8px;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.35);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  margin-bottom: 2px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: var(--gray-100);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #0f1b2e 0%, var(--navy) 30%, var(--navy-light) 60%, #2e6b8a 100%);
  overflow: hidden;
  margin-top: 72px;
  padding-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212, 168, 67, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(46, 107, 138, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(212, 168, 67, 0.1) 0%, transparent 40%);
}

/* Island decorative palm silhouettes */
.hero-deco {
  position: absolute;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.hero-deco-palm-left {
  left: -40px;
  bottom: 40px;
  width: 220px;
}

.hero-deco-palm-right {
  right: -40px;
  bottom: 40px;
  width: 200px;
}

/* Floating decorative elements */
.hero-float {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-float-1 {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  opacity: 0.3;
  top: 25%;
  left: 15%;
  animation: float-slow 6s ease-in-out infinite;
}

.hero-float-2 {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  top: 35%;
  right: 20%;
  animation: float-slow 8s ease-in-out infinite 1s;
}

.hero-float-3 {
  width: 8px;
  height: 8px;
  background: var(--gold);
  opacity: 0.15;
  bottom: 35%;
  left: 25%;
  animation: float-slow 7s ease-in-out infinite 2s;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-15px) translateX(5px); }
  50% { transform: translateY(-8px) translateX(-5px); }
  75% { transform: translateY(-20px) translateX(3px); }
}

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.wave-divider-top {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.wave-divider-top svg {
  width: 100%;
  height: 40px;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 50px 24px 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--gold);
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.hero p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin: 0 auto 28px;
  font-style: italic;
  font-family: var(--font-heading);
}

.hero-tagline {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Glowing CTA button */
.btn-cta-glow {
  background: linear-gradient(135deg, var(--gold) 0%, #e8c050 100%);
  color: var(--navy);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.4), 0 0 60px rgba(212, 168, 67, 0.15);
  animation: glow-pulse 3s ease-in-out infinite;
}

.btn-cta-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.6), 0 0 80px rgba(212, 168, 67, 0.25);
  color: var(--navy);
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 67, 0.4), 0 0 60px rgba(212, 168, 67, 0.15); }
  50% { box-shadow: 0 0 30px rgba(212, 168, 67, 0.6), 0 0 80px rgba(212, 168, 67, 0.25); }
}

/* Outline dark variant */
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* Outline navy variant (used on dark backgrounds) */
.btn-outline-navy {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-navy:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

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

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, #e8c050 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4), 0 8px 40px rgba(0,0,0,0.15);
  transition: all var(--transition);
  text-decoration: none;
  animation: float-cta 3s ease-in-out infinite;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 30px rgba(212, 168, 67, 0.5), 0 12px 50px rgba(0,0,0,0.2);
  color: var(--navy);
}

.floating-cta svg {
  flex-shrink: 0;
}

@keyframes float-cta {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* --- Sections --- */
.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

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

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.15), rgba(212, 168, 67, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
}

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

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat {
  padding: 24px 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* --- Impact Banner --- */
.impact-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #e8c050 50%, #c89b30 100%);
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impact-banner h2 {
  color: var(--navy);
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.impact-banner p {
  color: var(--navy);
  opacity: 0.8;
  margin-top: 8px;
  font-size: 1.1rem;
}

/* --- Final CTA Section --- */
.cta-final {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, #2e6b8a 100%);
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
}

.cta-final-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-final-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 32px;
}

/* --- Team --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.team-member {
  text-align: center;
  padding: 32px 16px;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
}

.team-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  background: var(--gray-100);
}

.team-member h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-member p {
  color: var(--gray-600);
  font-size: 0.85rem;
}

/* --- Partners --- */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  height: 50px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Why Work With Us --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: linear-gradient(160deg, #0f1b2e 0%, var(--navy) 30%, var(--navy-light) 60%, #2e6b8a 100%);
  padding: 120px 0 80px;
  text-align: center;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212, 168, 67, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(46, 107, 138, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Content Blocks --- */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--gray-600);
}

.content-block p:first-of-type {
  font-size: 1.15rem;
  color: var(--gray-800);
}

/* --- Project Cards --- */
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.project-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

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

.project-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.project-card-body p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.contact-info-card .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-800);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 20px;
  transition: border-color var(--transition);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

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

/* --- News --- */
.news-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  margin-bottom: 24px;
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
}

.news-card-img {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  min-height: 200px;
}

.news-card-body {
  padding: 32px 32px 32px 0;
}

.news-date {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-card-body h3 {
  font-size: 1.3rem;
  margin: 8px 0 12px;
}

.news-card-body p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
  transition: transform var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
}

/* --- Footer --- */
.footer {
  background: var(--gray-800);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
  font-size: 1rem;
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    background: var(--white);
    backdrop-filter: none;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 10001;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid var(--gray-200);
    -webkit-overflow-scrolling: touch;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav a {
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
    text-align: left;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown > a {
    text-align: left;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
    display: none;
  }

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

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 8px;
    text-align: center !important;
    width: auto !important;
    align-self: flex-start;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 55vh;
  }

  .hero-deco-palm-left,
  .hero-deco-palm-right {
    width: 120px;
    opacity: 0.5;
  }

  .floating-cta span {
    display: none;
  }

  .floating-cta {
    padding: 14px;
    border-radius: 50%;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card-body {
    padding: 24px;
  }

  .section {
    padding: 60px 0;
  }

  .hero-deco-palm-left,
  .hero-deco-palm-right {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }
}
