/* 
   Alice Talk World (ATW) React Stylesheet
   Design Guidelines: Premium, Glassmorphism, Purple & Gold Branding, Floating Stats
*/

@import url('https://fonts.googleapis.com/css2?family=Finlandica:ital,wght@0,400..700;1,400..700&family=Manrope:wght@400;500;600;700;800;900&display=swap');

:root {
  --atw-primary: #1e5c3f; /* Premium Forest Green */
  --atw-primary-hover: #143e2a; /* Darker Forest Green */
  --atw-primary-rgb: 30, 92, 63;
  --atw-accent: #fabc09; /* Warm golden yellow */
  --atw-dark: #0f0a14;
  --atw-dark-rgb: 15, 10, 20;
  --atw-light: #f7f5f8;
  --atw-white: #ffffff;
  --atw-text-dark: #2d2633;
  --atw-text-gray: #6b6370;
  
  --font-display: 'Finlandica', sans-serif; /* Finlandica Headline Font */
  --font-body: 'Manrope', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* Base Styles */
.atw-root {
  font-family: var(--font-body);
  background-color: var(--atw-light);
  color: var(--atw-text-dark);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.atw-root *, .atw-root *::before, .atw-root *::after {
  box-sizing: inherit;
}

/* ==========================================================================
   NAVIGATION BAR (AtwNavbar)
   ========================================================================== */
.atw-navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

/* Transparent State */
.atw-navbar-header.transparent {
  background-color: transparent;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.atw-navbar-header.transparent .atw-nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.atw-navbar-header.transparent .atw-nav-link:hover {
  color: var(--atw-accent);
}

/* Scrolled State */
.atw-navbar-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.atw-navbar-header.scrolled .atw-nav-link {
  color: var(--atw-text-dark);
}

.atw-navbar-header.scrolled .atw-nav-link:hover {
  color: var(--atw-primary);
}

.atw-navbar-header.scrolled .atw-nav-toggle span {
  background-color: var(--atw-text-dark);
}

/* Container */
.atw-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo */
.atw-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.atw-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.atw-navbar-header.scrolled .atw-logo-img {
  height: 46px;
}

/* Menu links */
.atw-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

.atw-nav-item {
  position: static; /* Set to static on desktop so absolute child spans the full header width */
}

.atw-nav-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 0;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.atw-nav-toggle-indicator-mobile {
  display: none;
}

.atw-nav-arrow-desktop {
  display: inline-flex;
  align-items: center;
}

.atw-mobile-get-involved-menu {
  display: none;
}

.atw-mobile-drawer-footer {
  display: none;
}



/* ==========================================================================
   MEGA MENU STYLING (Full-width custom dropdown)
   ========================================================================== */
.atw-mega-menu {
  position: absolute; /* Set to absolute so it anchors directly beneath the header */
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 40px 0;
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), 
              visibility 0.35s;
  pointer-events: none;
}

/* Mega menu content container to center it and prevent stretching */
.atw-mega-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* Mega menu visibility triggered via activeDropdown in React */
.atw-mega-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Adjust top padding offset on scroll state */
.atw-navbar-header.transparent .atw-mega-menu {
  background-color: rgba(74, 21, 75, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.atw-navbar-header.scrolled .atw-mega-menu {
  background-color: var(--atw-white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Mega Menu Links List (Left Column) */
.atw-mega-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-content: start;
}

.atw-mega-item-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

/* Links color states */
.atw-navbar-header.transparent .atw-mega-item-link {
  color: rgba(255, 255, 255, 0.8);
}

.atw-navbar-header.transparent .atw-mega-item-link:hover {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--atw-accent);
}

.atw-navbar-header.scrolled .atw-mega-item-link {
  color: var(--atw-text-dark);
}

.atw-navbar-header.scrolled .atw-mega-item-link:hover {
  background-color: rgba(74, 21, 75, 0.04);
  color: var(--atw-primary);
}

.atw-mega-item-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.atw-mega-item-desc {
  font-size: 12px;
  opacity: 0.7;
}

/* Mega Menu Right Sidebar (Placeholder Image Card) */
.atw-mega-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.atw-mega-card-placeholder {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

/* Sidebar color states */
.atw-navbar-header.transparent .atw-mega-card-placeholder {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.6);
}

.atw-navbar-header.scrolled .atw-mega-card-placeholder {
  border: 2px dashed rgba(var(--atw-primary-rgb), 0.15);
  background-color: rgba(74, 21, 75, 0.02);
  color: var(--atw-text-gray);
}

.atw-mega-card-placeholder:hover {
  transform: translateY(-2px);
}

.atw-navbar-header.transparent .atw-mega-card-placeholder:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--atw-accent);
  color: var(--atw-accent);
}

.atw-navbar-header.scrolled .atw-mega-card-placeholder:hover {
  background-color: rgba(74, 21, 75, 0.04);
  border-color: var(--atw-primary);
  color: var(--atw-primary);
}

.atw-mega-placeholder-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.atw-mega-sidebar-meta {
  display: flex;
  flex-direction: column;
}

.atw-mega-meta-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--atw-accent);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.atw-navbar-header.scrolled .atw-mega-meta-title {
  color: var(--atw-primary);
}

.atw-mega-meta-desc {
  font-size: 11px;
  opacity: 0.7;
}

.atw-navbar-header.transparent .atw-mega-meta-desc {
  color: rgba(255, 255, 255, 0.65);
}

.atw-navbar-header.scrolled .atw-mega-meta-desc {
  color: var(--atw-text-gray);
}


/* ==========================================================================
   Actions Section
   ========================================================================== */
.atw-navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Solid Purple Rounded Rect Button */
.atw-btn-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--atw-primary);
  color: var(--atw-white);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: none;
}

.atw-btn-partner:hover {
  background-color: var(--atw-primary-hover);
  box-shadow: 0 8px 20px rgba(74, 21, 75, 0.25);
  transform: translateY(-1px);
}

.atw-search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: white;
  transition: var(--transition-fast);
}

.atw-navbar-header.scrolled .atw-search-btn {
  color: var(--atw-text-dark);
}

.atw-search-btn:hover {
  color: var(--atw-accent) !important;
}

/* ==========================================================================
   Custom Language Selector & Google Translate Styling
   ========================================================================== */
.atw-lang-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.atw-lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  color: white;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast, all 0.2s ease);
}

.atw-navbar-header.scrolled .atw-lang-btn {
  color: var(--atw-text-dark, #0f0a14);
}

.atw-lang-btn:hover {
  color: var(--atw-accent, #ffb703) !important;
}

.atw-lang-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: rgba(15, 10, 20, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  min-width: 140px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.atw-lang-option {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.atw-lang-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--atw-accent, #ffb703);
}

.atw-lang-option.active {
  color: var(--atw-accent, #ffb703);
  font-weight: bold;
}

/* Override Google Translate Default Elements */
.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
iframe.goog-te-banner-frame,
.goog-te-banner-frame {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0 !important;
}

/* Mobile Toggle Hamburger */
.atw-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1020;
}

.atw-nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--atw-white);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Toggle open states */
.atw-nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.atw-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.atw-nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}


/* ==========================================================================
   HERO CAROUSEL SLIDER (AtwHero)
   ========================================================================== */
.atw-hero-slider {
  position: relative;
  width: 100%;
  height: 800px; /* Locked height to 800px as requested */
  overflow: visible; /* Changed to visible to prevent stats bar from hiding */
  background-color: var(--atw-dark);
}

.atw-hero-track {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; /* Clips background images properly inside the track */
}

.atw-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  z-index: 1;
}

.atw-hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Image background */
.atw-slide-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 25%; /* Slightly shifted up to center subjects */
  transition: transform 8s ease;
}

.atw-hero-slide.active .atw-slide-bg {
  transform: scale(1);
}

/* Linear & radial gradients for mockup text contrast */
.atw-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(15, 10, 20, 0.95) 0%,
    rgba(15, 10, 20, 0.8) 40%,
    rgba(15, 10, 20, 0.3) 70%,
    rgba(15, 10, 20, 0.1) 100%
  );
  z-index: 3;
}

/* Layout - text on the left */
.atw-hero-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 4;
}

.atw-hero-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Mockup gold prefix label */
.atw-hero-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--atw-accent);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}

.atw-hero-prefix::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: var(--atw-accent);
}

.atw-hero-head {
  font-family: var(--font-display); /* Finlandica headline font */
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  color: var(--atw-white);
  font-weight: 800;
  margin: 0 0 20px 0;
  max-width: 700px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.38s;
}

/* Highlight style for text */
.atw-highlight {
  color: var(--atw-accent);
}

.atw-hero-sub {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 0 36px 0;
  font-weight: 500;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.54s;
}

/* White CTA Button with Purple Text */
.atw-hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--atw-white);
  color: var(--atw-primary);
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), 
              background-color 0.25s ease, 
              color 0.25s ease, 
              box-shadow 0.25s ease;
}

.atw-hero-cta-btn:hover {
  background-color: var(--atw-primary);
  color: var(--atw-white);
  box-shadow: 0 10px 30px rgba(74, 21, 75, 0.35);
  transform: translateY(-2px);
}

.atw-hero-cta-btn svg {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.atw-hero-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Active transitions */
.atw-hero-slide.active .atw-hero-prefix,
.atw-hero-slide.active .atw-hero-head,
.atw-hero-slide.active .atw-hero-sub {
  opacity: 1;
  transform: translateY(0);
}

.atw-hero-slide.active .atw-hero-cta-btn {
  animation: atwCtaSlideIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.7s both;
}

@keyframes atwCtaSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide Indicators (Dots aligned with the left text margin) */
.atw-hero-dots-outer {
  position: absolute;
  bottom: 140px; /* Nicely separated from the overlapping stats bar */
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 5;
}

.atw-hero-dots-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.atw-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  padding: 0;
}

.atw-hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.atw-hero-dot.active {
  width: 24px;
  border-radius: 20px;
  background: var(--atw-accent);
}


/* ==========================================================================
   FLOATING STATS BAR (Mockup Stat Grid)
   ========================================================================== */
.atw-stats-floating-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: calc(100% - 80px);
  max-width: 1400px;
  background-color: var(--atw-white);
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  padding: 24px 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.atw-stat-col {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 10px;
}

.atw-stat-col:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.atw-stat-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(74, 21, 75, 0.07); /* Light purple background */
  color: var(--atw-primary);
  flex-shrink: 0;
}

.atw-stat-text {
  display: flex;
  flex-direction: column;
}

.atw-stat-number {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 800;
  color: var(--atw-primary);
  line-height: 1.1;
  margin-bottom: 3px;
}

.atw-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--atw-text-gray);
  line-height: 1.3;
}


/* ==========================================================================
   WHY WE EXIST & VISION/MISSION SECTION
   ========================================================================== */
/* ==========================================================================
   OUR PARTNERS & SUPPORTERS SECTION
   ========================================================================== */
.atw-partners-section {
  background-color: var(--atw-white);
  padding: 120px 40px 60px 40px; /* Accommodate floating stats bar */
  position: relative;
  z-index: 9;
  border-bottom: 1px solid rgba(74, 21, 75, 0.06);
}

.atw-mobile-stats-bar {
  display: none;
}

.atw-partners-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.atw-partners-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--atw-text-gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  min-width: 220px;
  position: relative;
  padding-right: 20px;
}

.atw-partners-label::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 24px;
  background-color: rgba(74, 21, 75, 0.15);
}

.atw-partners-marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
  /* Add smooth gradient fade-out edges on the left and right */
  mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}

.atw-partners-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 60px;
  animation: atwPartnersScroll 30s linear infinite;
}

.atw-partners-marquee-container:hover .atw-partners-marquee-track {
  animation-play-state: paused;
}

@keyframes atwPartnersScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  }
}

.atw-partner-logo-item {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.atw-partner-logo-item img {
  max-height: 100%;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.atw-partner-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .atw-partners-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .atw-partners-label::after {
    display: none;
  }
  .atw-partners-logos {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .atw-partners-section {
    padding: 140px 20px 40px 20px;
  }
  .atw-partner-logo-item {
    height: 35px;
  }
}

.atw-why-we-exist-section {
  background-color: var(--atw-white);
  padding: 80px 40px 100px 40px; /* Reduced top padding since stats bar overlaps partners section now */
  position: relative;
  z-index: 9;
}

.atw-why-exist-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.atw-why-exist-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.atw-why-exist-tagline {
  color: var(--atw-primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: block;
}

.atw-why-exist-main-statement {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.35;
  color: var(--atw-dark);
  font-weight: 800;
  margin: 0 0 24px 0;
}

.atw-why-exist-supporting {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  color: var(--atw-text-gray);
  margin: 0 0 16px 0;
  font-weight: 500;
}

.atw-why-exist-supporting:last-child {
  margin-bottom: 0;
}

/* Cards styling */
.atw-card-vision, .atw-card-mission {
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.3s ease;
}

/* Vision Card (White, subtle border/shadow) */
.atw-card-vision {
  background-color: var(--atw-white);
  border: 1px solid rgba(74, 21, 75, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
}

.atw-card-vision:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(74, 21, 75, 0.06);
  border-color: rgba(250, 188, 9, 0.35); /* Subtle gold border on hover */
}

/* Mission Card (Purple, solid color) */
.atw-card-mission {
  background-color: var(--atw-primary);
  color: var(--atw-white);
  box-shadow: 0 10px 30px rgba(74, 21, 75, 0.1);
}

.atw-card-mission:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(74, 21, 75, 0.25);
}

/* Icon wrappers */
.atw-card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.vision-icon {
  background-color: rgba(250, 188, 9, 0.1);
  color: var(--atw-accent);
}

.mission-icon {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--atw-white);
}

/* Titles */
.atw-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 16px 0;
}

.vision-title {
  color: #d97706; /* Warm golden title */
}

.mission-title {
  color: var(--atw-white);
}

/* Texts */
.atw-card-text {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}

.vision-text {
  color: var(--atw-text-gray);
}

.mission-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Media Queries for responsiveness */
@media (max-width: 1100px) {
  .atw-why-exist-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .atw-why-exist-text-col {
    grid-column: span 2;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .atw-why-we-exist-section {
    padding: 120px 24px 60px 24px;
  }
  .atw-why-exist-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .atw-why-exist-text-col {
    grid-column: span 1;
    margin-bottom: 10px;
  }
  .atw-card-vision, .atw-card-mission {
    padding: 30px 24px;
  }
}


/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1200px) {
  .atw-stats-floating-bar {
    grid-template-columns: repeat(3, 1fr);
    transform: translate(-50%, 0);
    position: relative;
    margin: -40px auto 40px auto;
    width: calc(100% - 80px);
  }
  .atw-stat-col:nth-child(3) {
    border-right: none;
  }
  .atw-hero-dots-outer {
    bottom: 40px;
  }
}

@media (max-width: 900px) {
  .atw-navbar-header {
    background: rgba(15, 10, 20, 0.9) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }



  .atw-navbar-header .atw-nav-toggle span {
    background-color: white !important;
  }

  .atw-logo-img,
  .atw-navbar-header.scrolled .atw-logo-img {
    height: 64px !important;
  }

  .atw-nav-toggle {
    display: block;
    margin-left: auto;
  }
  
  .atw-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--atw-white);
    flex-direction: column;
    padding: 30px 24px;
    align-items: flex-start;
    gap: 15px;
    max-height: 0;
    overflow-y: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .atw-nav-menu.open {
    max-height: 85vh;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
  }
  
  .atw-nav-link {
    color: var(--atw-text-dark) !important;
    font-size: 16px;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .atw-nav-toggle-indicator-mobile {
    display: inline-block;
    margin-left: auto;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    color: var(--atw-primary);
    pointer-events: none;
  }
  
  .atw-nav-arrow-desktop {
    display: none;
  }
  
  /* Mobile mega menu is simple accordions */
  .atw-mega-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 8px 0 15px 12px;
    box-shadow: none;
    border: none;
    background: rgba(74, 21, 75, 0.02) !important;
    margin-top: 5px;
    width: 100%;
    border-radius: 8px;
  }

  .atw-mega-container {
    display: contents;
  }

  .atw-mega-links-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .atw-mega-item-link {
    padding: 8px 10px;
    color: var(--atw-text-dark) !important;
  }

  .atw-mega-sidebar {
    display: none; /* Hide placeholder image on mobile menus to keep it compact */
  }
  
  .atw-nav-item:hover .atw-mega-menu,
  .atw-mega-menu.show {
    display: grid;
  }

  .atw-navbar-actions {
    display: none;
  }

  .atw-desktop-only-grid,
  .atw-desktop-only-sidebar {
    display: none !important;
  }

  /* Mobile Get Involved Cards Custom Styling */
  .atw-mobile-get-involved-menu {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .atw-mobile-get-involved-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--atw-text-gray);
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .atw-mobile-get-involved-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .atw-mobile-get-involved-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 21, 75, 0.03);
    border: 1px solid rgba(74, 21, 75, 0.05);
    padding: 10px 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-fast);
  }
  .atw-mobile-get-involved-card:active {
    background: rgba(74, 21, 75, 0.06);
  }
  .atw-get-involved-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(74, 21, 75, 0.08);
    color: var(--atw-primary);
    flex-shrink: 0;
  }
  .atw-get-involved-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow: hidden;
  }
  .atw-get-involved-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--atw-text-dark);
  }
  .atw-get-involved-desc {
    font-size: 9px;
    color: var(--atw-text-gray);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  /* Mobile Drawer Footer with Lang selector and CTA buttons */
  .atw-mobile-drawer-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(74, 21, 75, 0.15);
  }
  .atw-mobile-lang-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 5px 0;
  }
  .atw-mobile-lang-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    color: var(--atw-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .atw-mobile-lang-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .atw-mobile-lang-btn-link {
    background: transparent;
    border: 1px solid rgba(74, 21, 75, 0.12);
    color: var(--atw-text-dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition-fast);
  }
  .atw-mobile-lang-btn-link.active {
    background: var(--atw-primary);
    color: var(--atw-white);
    border-color: var(--atw-primary);
  }
  .atw-mobile-cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 5px;
  }
  .atw-mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-fast);
  }
  .atw-mobile-cta-btn.donate {
    background: var(--atw-primary);
    color: var(--atw-white);
  }
  .atw-mobile-cta-btn.partner {
    background: var(--atw-accent);
    color: var(--atw-primary);
  }

  
  .atw-stats-floating-bar {
    display: none !important;
  }
  
  .atw-hero-slider {
    height: 100vh !important;
  }

  .atw-hero-cta-btn {
    width: 85% !important;
    max-width: 320px !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
    justify-content: center !important;
  }

  /* Mobile-only Stats Bar Styling */
  .atw-mobile-stats-bar {
    display: block !important;
    width: calc(100% - 40px);
    max-width: 600px;
    margin: 40px auto 0 auto;
    background: #0f0a14 !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .atw-mobile-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .atw-mobile-stat-col {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .atw-mobile-stat-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .atw-mobile-stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(157, 78, 221, 0.1);
    color: var(--atw-accent);
    flex-shrink: 0;
  }

  .atw-mobile-stat-text {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .atw-mobile-stat-number {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
  }

  .atw-mobile-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
  }

  .atw-hero-dots-outer {
    bottom: 30px;
  }
  .atw-hero-dots-container {
    justify-content: center;
  }
}

/* ==========================================================================
   OUR IMPACT: 5 YEARS & GROWING SECTION
   ========================================================================== */
.atw-impact-section {
  background-color: var(--atw-dark);
  padding: 120px 40px;
  position: relative;
  z-index: 9;
  color: var(--atw-white);
}

.atw-impact-header {
  max-width: 900px;
  margin: 0 auto 80px auto;
  text-align: center;
}

.atw-impact-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--atw-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.atw-impact-subtitle {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 20px;
}

.atw-impact-header-link {
  color: var(--atw-accent);
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  transition: var(--transition-fast);
}

.atw-impact-header-link:hover {
  color: var(--atw-white);
}

/* Row elements */
.atw-impact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 100px auto;
  align-items: center;
}

.atw-impact-row:last-child {
  margin-bottom: 0;
}

/* Image wrappers */
.atw-impact-image-container {
  width: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Fade slider */
.atw-fade-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.atw-fade-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.atw-fade-slide.active {
  opacity: 1;
}

/* Content Column */
.atw-impact-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.atw-impact-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--atw-accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.atw-impact-row-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--atw-white);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.atw-impact-row-text {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

/* Bordered tags style from mockup */
.atw-impact-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.atw-impact-tag {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition-fast);
}

.atw-impact-tag:hover {
  border-color: var(--atw-accent);
  color: var(--atw-accent);
  background-color: rgba(250, 188, 9, 0.05);
}

/* Button style outline */
.atw-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--atw-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  margin-top: 10px;
}

.atw-btn-outline:hover {
  background-color: var(--atw-white);
  color: var(--atw-primary);
  border-color: var(--atw-white);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* Media Queries for responsiveness */
@media (max-width: 992px) {
  .atw-impact-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  /* On mobile/tablet, order the image first in all rows */
  .atw-impact-row:nth-child(even) .atw-impact-image-container {
    order: -1;
  }
  .atw-impact-image-container {
    max-width: 600px;
    margin: 0 auto;
  }
  .atw-impact-content-col {
    align-items: center;
    text-align: center;
  }
  .atw-impact-tags-wrapper {
    justify-content: center;
  }
}

/* ==========================================================================
   LATEST NEWS & INSIGHTS SECTION
   ========================================================================== */
.atw-news-section {
  background-color: var(--atw-white);
  padding: 100px 40px;
  position: relative;
  z-index: 9;
}

.atw-news-container {
  max-width: 1400px;
  margin: 0 auto;
}

.atw-news-header {
  max-width: 800px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.atw-news-tagline {
  color: var(--atw-primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.atw-news-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--atw-dark);
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.atw-news-divider {
  width: 60px;
  height: 3px;
  background-color: var(--atw-primary);
  margin: 0 auto;
}

/* Grid Layout */
.atw-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Card Styling */
.atw-news-card {
  background-color: var(--atw-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.3s ease;
}

.atw-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(74, 21, 75, 0.08);
  border-color: rgba(74, 21, 75, 0.12);
}

/* Card Image */
.atw-news-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background-color: var(--atw-dark);
}

.atw-news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.atw-news-card:hover .atw-news-img {
  transform: scale(1.05);
}

/* Card Content */
.atw-news-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.atw-news-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--atw-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.atw-news-card-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--atw-dark);
  margin: 0 0 14px 0;
  flex-shrink: 0;
}

.atw-news-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--atw-text-gray);
  margin: 0 0 12px 0;
  font-weight: 500;
}

.atw-news-card-desc:last-of-type {
  margin-bottom: 24px;
}

/* Read More Link */
.atw-news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--atw-primary);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  margin-top: auto;
  transition: var(--transition-fast);
}

.atw-news-readmore svg {
  transition: transform 0.2s ease;
}

.atw-news-readmore:hover {
  color: var(--atw-accent);
}

.atw-news-readmore:hover svg {
  transform: translateX(4px);
}

/* Footer Section */
.atw-news-footer {
  text-align: center;
}

.atw-news-section-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  color: var(--atw-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border-left: 3px solid var(--atw-accent);
  padding-left: 10px;
}

.atw-featured-card {
  display: flex;
  background-color: var(--atw-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.3s ease;
}

.atw-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(74, 21, 75, 0.08);
  border-color: rgba(74, 21, 75, 0.12);
}

.atw-featured-img-wrapper {
  width: 50%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background-color: var(--atw-dark);
}

.atw-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.atw-featured-card:hover .atw-featured-img {
  transform: scale(1.03);
}

.atw-featured-content {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.atw-featured-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.atw-featured-category {
  font-size: 11px;
  font-weight: 800;
  color: var(--atw-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.atw-featured-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--atw-accent);
}

.atw-featured-card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--atw-dark);
  margin: 0 0 20px 0;
}

.atw-featured-card-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--atw-text-gray);
  margin: 0 0 32px 0;
  font-weight: 500;
}

.two-line-limit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 992px) {
  .atw-featured-card {
    flex-direction: column;
  }
  .atw-featured-img-wrapper,
  .atw-featured-content {
    width: 100%;
  }
  .atw-featured-content {
    padding: 24px;
  }
}

/* Media Queries */
@media (max-width: 1024px) {
  .atw-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .atw-news-section {
    padding: 60px 20px;
  }
  .atw-news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .atw-news-card {
    flex-direction: row;
    height: 180px;
    align-items: stretch;
  }
  .atw-news-img-wrapper {
    width: 35%;
    height: 100%;
    aspect-ratio: auto;
    flex-shrink: 0;
  }
  .atw-news-content {
    width: 65%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .atw-news-date {
    font-size: 10px;
    margin-bottom: 6px;
  }
  .atw-news-card-title {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .atw-news-card-desc {
    font-size: 11.5px;
    line-height: 1.4;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .atw-news-card-desc:nth-of-type(2) {
    display: none !important;
  }
  .atw-news-readmore {
    font-size: 12px;
    margin-top: 4px;
  }
}

/* ==========================================================================
   GALLERY SECTION (Endless Scrolling Marquee)
   ========================================================================== */
.atw-gallery-section {
  background-color: var(--atw-white);
  padding: 100px 0;
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.atw-gallery-header-container {
  max-width: 1400px;
  margin: 0 auto 50px auto;
  padding: 0 40px;
}

.atw-gallery-tagline {
  color: var(--atw-primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.atw-gallery-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--atw-dark);
  margin: 0 0 12px 0;
}

.atw-gallery-subtitle {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--atw-text-gray);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

/* Marquee Row Wrappers */
.atw-gallery-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
  width: 100%;
}

.atw-marquee-row {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: flex;
}

/* Marquee Track */
.atw-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.atw-marquee-track-left {
  animation: atwMarqueeLeft 45s linear infinite;
}

.atw-marquee-track-right {
  animation: atwMarqueeRight 45s linear infinite;
}

/* Pause on hover */
.atw-marquee-row:hover .atw-marquee-track {
  animation-play-state: paused;
}

/* Marquee Image Item */
.atw-gallery-img-item {
  width: 280px;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  flex-shrink: 0;
}

.atw-gallery-img-item:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 12px 25px rgba(74, 21, 75, 0.1);
}

/* Gallery Footer */
.atw-gallery-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 0 40px;
}

.atw-gallery-view-link {
  color: var(--atw-primary);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.atw-gallery-view-link:hover {
  color: var(--atw-accent);
}

.atw-gallery-view-link svg {
  transition: transform 0.2s ease;
}

.atw-gallery-view-link:hover svg {
  transform: translateX(4px);
}

.atw-gallery-insta-link {
  display: inline-flex;
  align-items: center;
  color: var(--atw-text-gray);
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.atw-gallery-insta-link:hover {
  color: var(--atw-primary);
}

.atw-gallery-insta-link strong {
  font-weight: 700;
}

/* Animations */
@keyframes atwMarqueeLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes atwMarqueeRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .atw-gallery-section {
    padding: 60px 0;
  }
  .atw-gallery-header-container {
    padding: 0 24px;
    margin-bottom: 30px;
  }
  .atw-gallery-marquee-wrapper {
    gap: 16px;
  }
  .atw-gallery-img-item {
    width: 200px;
    height: 140px;
  }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.atw-footer-section {
  background-color: var(--atw-white);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(74, 21, 75, 0.06);
  position: relative;
  z-index: 9;
}

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

.atw-footer-top-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.atw-footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 260px;
}

.atw-footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.atw-footer-mission {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--atw-text-gray);
  margin: 14px 0 0 0;
  font-weight: 500;
  max-width: 320px;
}

.atw-footer-col-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--atw-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.atw-footer-col {
  display: flex;
  flex-direction: column;
  flex: 1 0 130px;
}

.atw-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--atw-text-gray);
  font-size: 14px;
  font-weight: 500;
}

.atw-footer-contact-list a {
  color: var(--atw-primary);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition-fast);
}

.atw-footer-contact-list a:hover {
  color: var(--atw-accent);
}

.atw-footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.atw-footer-links-list a {
  color: var(--atw-text-dark);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  transition: var(--transition-fast);
}

.atw-footer-links-list a:hover {
  color: var(--atw-primary);
  padding-left: 4px;
}

.atw-footer-newsletter-col {
  flex: 0 0 240px;
}

.atw-footer-newsletter-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--atw-text-gray);
  margin: 0 0 14px 0;
  font-weight: 500;
}

.atw-footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.atw-footer-newsletter-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(74, 21, 75, 0.15);
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: var(--atw-light);
  color: var(--atw-text-dark);
  transition: var(--transition-fast);
}

.atw-footer-newsletter-input:focus {
  border-color: var(--atw-primary);
  box-shadow: 0 0 10px rgba(74, 21, 75, 0.08);
}

.atw-footer-newsletter-btn {
  background: var(--atw-primary);
  color: var(--atw-white);
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.atw-footer-newsletter-btn:hover {
  background: var(--atw-primary-hover);
  box-shadow: 0 4px 12px rgba(74, 21, 75, 0.15);
}

.atw-footer-divider {
  border: 0;
  height: 1px;
  background-color: rgba(74, 21, 75, 0.08);
  margin: 0 0 30px 0;
}

.atw-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.atw-footer-social-icon {
  color: var(--atw-text-dark);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}

.atw-footer-social-icon:hover {
  color: var(--atw-primary);
  transform: scale(1.15);
}

.atw-footer-socials-mobile {
  display: none;
}

.atw-footer-desktop-only {
  /* defaults to display block/flex inside top-grid */
}

.atw-footer-legal-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.atw-footer-legal-links {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}

.atw-footer-legal-link {
  color: var(--atw-text-gray);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.atw-footer-legal-link:hover {
  color: var(--atw-primary);
}

.atw-footer-copyright {
  color: var(--atw-text-gray);
  font-size: 12px;
  margin: 0;
  font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .atw-footer-section {
    padding: 60px 0 30px 0;
  }
  .atw-footer-top-grid {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .atw-footer-logo-col,
  .atw-footer-col,
  .atw-footer-newsletter-col {
    flex: 1 1 100%;
    max-width: 100%;
    align-items: center;
  }
  .atw-footer-desktop-only {
    display: none !important;
  }
  .atw-footer-socials-mobile {
    display: flex !important;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
  }
  .atw-footer-mission {
    margin: 14px auto 0 auto;
  }
  .atw-footer-contact-list,
  .atw-footer-links-list {
    align-items: center;
    text-align: center;
  }
  .atw-footer-newsletter-form {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .atw-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .atw-footer-legal-container {
    align-items: center;
  }
  .atw-footer-legal-links {
    justify-content: center;
  }
}

/* ==========================================================================
   SITE-WIDE SEARCH OVERLAY STYLING (AtwNavbar integration)
   ========================================================================== */
.atw-search-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: atwSearchFadeIn 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.atw-search-overlay-blur {
  position: absolute;
  inset: 0;
  background: rgba(18, 8, 24, 0.88); /* Deep rich brand purple translucent overlay */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.atw-search-overlay-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 40px;
  margin: 0 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  opacity: 0;
  animation: atwSearchSlideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.05s forwards;
}

.atw-search-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atw-search-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--atw-accent);
  transform: rotate(90deg);
}

.atw-search-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.atw-search-overlay-heading {
  font-size: 24px;
  font-weight: 850;
  color: var(--atw-white) !important;
  letter-spacing: -0.5px;
  margin: 0;
}

.atw-search-overlay-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 4px 6px 4px 24px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.atw-search-overlay-form:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--atw-accent);
  box-shadow: 0 0 25px rgba(231, 166, 26, 0.25);
}

.atw-search-overlay-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--atw-white) !important;
  padding: 12px 0;
  font-family: inherit;
}

.atw-search-overlay-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.atw-search-overlay-submit {
  background: var(--atw-accent);
  border: none;
  color: var(--atw-primary);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.atw-search-overlay-submit:hover {
  background: var(--atw-white);
  transform: scale(1.05);
}

.atw-search-overlay-suggestions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.atw-suggestion-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.atw-suggestion-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.atw-suggestion-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.atw-suggestion-pill:hover {
  background: rgba(231, 166, 26, 0.15);
  border-color: var(--atw-accent);
  color: var(--atw-accent);
  transform: translateY(-2px);
}

@keyframes atwSearchFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes atwSearchSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 500px) {
  .atw-search-overlay-container {
    padding: 24px 16px;
    margin: 0 16px;
  }
  
  .atw-search-overlay-input {
    font-size: 15px;
  }
  
  .atw-search-overlay-form {
    padding: 2px 4px 2px 14px;
  }
}


