/* ========== VARIABLES ========== */
:root {
  /* Colors */
  --green: #558B4F;       /* New green from screenshot */
  --green-dark: #3E6639;
  --green-light: #72AF6B;
  --green-pale: #F1F8F0;
  --accent-gold: #D4AF37; /* Premium accent color */
  --accent-gold-light: #fdf3d1;
  --black: #111820;       /* Richer off-black */
  --dark: #2d2d2d;
  --gray: #526065;
  --gray-light: #ffffff;  /* Background is mostly white now */
  --border: #e6eceb;
  --white: #ffffff;
  
  /* Utilities */
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.03);
  --shadow: 0 10px 30px rgba(8, 90, 83, 0.08);
  --shadow-lg: 0 20px 40px rgba(8, 90, 83, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--gray-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  color: var(--black);
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  padding: 6px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 20px;
}

.top-bar-left a {
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.top-bar-left a:hover { color: var(--green-light); }

.top-bar-left i {
  margin-right: 5px;
  color: var(--green-light);
}

.top-bar-right {
  display: flex;
  gap: 4px;
}

.top-link {
  color: rgba(255,255,255,0.85);
  padding: 4px 14px;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
}

.top-link:hover { background: rgba(255,255,255,0.1); }

.top-link:last-child {
  background: var(--green);
  color: var(--white);
}

.top-link:last-child:hover { background: var(--green-light); }

/* ========== HEADER ========== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
}

.logo-mark {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  max-width: 300px;
  line-height: 1.2;
}

.logo-tagline {
  display: none;
}

.logo-accent { color: var(--green); }

/* ========== NAVIGATION ========== */
.nav {
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li > a {
  padding: 5px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2); /* Subtle dark overlay to make text readable */
}

.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-green {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  color: var(--white);
  border: none;
}

.btn-green:hover {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}

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

.btn-white:hover {
  background: var(--white);
  color: var(--green);
}

.btn-outline-white {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

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

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

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-outline:hover {
  background: var(--green-pale);
}

/* ========== SEARCH STRIP ========== */
.search-strip {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: -80px;
  position: relative;
  z-index: 10;
  border: 1px solid #eaeaea;
}

.search-strip h3 {
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-strip h3 i { font-size: 1.1rem; color: var(--text-dark); }

.search-strip-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
}

.search-strip-form select,
.search-strip-form input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #fafafa;
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-family: inherit;
}

.search-strip-form select:focus,
.search-strip-form input:focus {
  outline: none;
  border-color: #1B6B3A;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(8, 90, 83, 0.1);
}

.search-strip-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 14px;
}

.search-strip-form .btn-green {
  padding: 16px 40px;
  border-radius: 8px;
  background: #1B6B3A;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  height: 100%;
}

.search-strip-form .btn-green:hover {
  background: #0D4D2B;
}

.search-advanced {
  margin-top: 12px;
  display: block;
}

.search-advanced a {
  color: var(--text-light);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.search-advanced a:hover {
  color: #1B6B3A;
}

@media (max-width: 768px) {
  .search-strip-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .search-strip {
    padding: 24px;
    margin-top: -40px;
  }
}

/* ========== WELCOME SECTION ========== */
.welcome-section {
  padding: 40px 0;
  background: #fff;
}

.welcome-header {
  text-align: left;
  margin-bottom: 30px;
}

.welcome-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.welcome-header p {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #000;
  max-width: 100%;
  margin-bottom: 15px;
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-box {
  background: var(--green);
  color: #000;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.feature-box:hover {
  opacity: 0.9;
}

/* ========== FEATURES SECTION ========== */
.features-section {
  padding: 80px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
}

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

.feature-img {
  width: 100%;
  height: 220px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--green);
}

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

.feature-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--black);
}

.feature-body p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
}

.feature-link:hover {
  color: var(--green-dark);
  gap: 10px;
}

/* ========== SECTION HEADER ========== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.02em;
}

.view-all {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.view-all:hover {
  color: var(--green-dark);
  gap: 10px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 48px;
}

/* ========== EVENTS SECTION ========== */
.events-section {
  padding: 100px 0;
  background: #f8faf9;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.event-card {
  display: flex;
  background: var(--white);
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.event-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.event-date {
  background: #0D4D2B;
  color: var(--white);
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 110px;
}

.event-day {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.8);
}

.event-info {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.event-meta {
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.event-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.event-link:hover {
  text-decoration: underline;
}

.cpd-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #d4edda;
  color: #155724;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-left: 0;
}

/* ========== QUICK STRIP ========== */
.quick-strip {
  background: linear-gradient(135deg, #0D4D2B 0%, #1B6B3A 50%, #0D4D2B 100%);
  padding: 60px 0;
  position: relative;
  border-top: 3px solid var(--accent-gold);
}

.quick-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.quick-strip-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  padding: 20px 36px;
  position: relative;
  letter-spacing: 0.2px;
}

.quick-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.quick-item:hover {
  transform: translateY(-5px);
  color: var(--white);
}

.quick-item i {
  font-size: 1.3rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quick-item:hover i {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.quick-item.highlight-gold {
  color: var(--accent-gold);
}

.quick-item.highlight-gold i {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

.quick-item.highlight-gold:hover i {
  background: var(--white);
  color: var(--accent-gold);
  border-color: var(--white);
  box-shadow: 0 8px 25px rgba(212,175,55,0.3);
}

/* ========== NEWS SECTION ========== */
.news-section {
  padding: 100px 0;
  background: var(--gray-light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
}

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

.news-image-wrap {
  height: 220px;
  overflow: hidden;
}

.news-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--green);
  transition: transform 0.5s ease;
}

.news-card:hover .news-image-placeholder {
  transform: scale(1.05); /* Subtle zoom effect */
}

.news-image {
  height: 200px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--green);
}

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

.news-date {
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 500;
}

.news-body h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--black);
  line-height: 1.4;
}

.news-body p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.news-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

/* ========== FOOTER ========== */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-mark {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.footer-logo .logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: normal;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--green);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-col ul li a {
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
}

.contact-list li i {
  color: var(--green-light);
  margin-top: 3px;
}

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

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--white);
}

/* Hidden by default on desktop */
.mobile-lang-switcher { display: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .nav-list > li > a { padding: 10px 9px; font-size: 0.82rem; }
  .logo-name { font-size: 1.2rem; }
}

@media (max-width: 1024px) {
  .welcome-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-list > li > a { padding: 10px 8px; font-size: 0.78rem; }
  .logo-name { font-size: 0.82rem; }
  .logo { gap: 10px; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    padding: 80px 20px 20px;
    transition: var(--transition);
    overflow-y: auto;
    z-index: 998;
  }

  .nav.open { right: 0; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list > li > a {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
  }

  .nav-list > li > a::after { display: none; }

  .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: var(--gray-light);
    border-radius: 0;
  }

  .has-dropdown.active .dropdown { display: block; }

  .top-bar-inner { flex-direction: column; gap: 6px; text-align: center; }
  .top-bar-left { justify-content: center; flex-wrap: wrap; }
  .top-bar-right { justify-content: center; flex-wrap: wrap; }

  .header-inner { padding-top: 10px; padding-bottom: 10px; }

  .hero { min-height: auto; }
  .hero-content { padding: 70px 0 60px; }
  .hero-content h1 { font-size: 2rem; line-height: 1.3; }
  .hero-content p { font-size: 0.95rem; }
  .hero-badge { font-size: 0.65rem; }

  .search-strip {
    padding: 24px;
    margin-top: -40px;
  }
  .search-strip-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .search-strip h3 { font-size: 1.1rem; }

  .welcome-section { padding: 60px 0 50px; }
  .welcome-header h2 { font-size: 1.8rem; }
  .welcome-grid { grid-template-columns: 1fr; }

  .features-section { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; }

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

  .quick-strip { padding: 40px 0; }
  .quick-strip-grid {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .quick-item { padding: 16px 24px; }
  .quick-item:not(:last-child)::after { display: none; }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer { padding: 50px 0 30px; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Mobile lang dropdown adjustments */
  .lang-dropdown-menu { right: auto; left: 0; }

  /* Mobile nav lang switcher */
  .mobile-lang-switcher {
    display: flex;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid #eee;
    margin-top: 10px;
  }
  .mobile-lang-switcher .lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    background: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .mobile-lang-switcher .lang-btn.active {
    background: #1B6B3A;
    color: #fff;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.5rem; }
  .hero-content p { font-size: 0.9rem; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .search-strip { padding: 20px; margin-top: -30px; }

  .quick-strip-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .quick-item { 
    flex-direction: row;
    gap: 14px;
    padding: 14px 24px;
    width: 100%;
    text-align: left;
  }
  .quick-item i {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .quick-item:not(:last-child)::after {
    display: block;
    top: auto;
    bottom: 0;
    left: 15%;
    right: auto;
    width: 70%;
    height: 1px;
  }

  .welcome-header h2 { font-size: 1.5rem; }

  .top-bar-left { font-size: 0.7rem; }
  .footer-col h4 { font-size: 1rem; }

  .container { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 360px) {
  .hero-content h1 { font-size: 1.3rem; }
  .logo-name { font-size: 0.9rem; }
  .logo-mark { width: 40px; height: 40px; font-size: 0.9rem; }
}

/* Mobile menu overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 997;
}

.nav-overlay.active { display: block; }
/* ========== FORMS ========== */
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(8, 90, 83, 0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ========== LANGUAGE DROPDOWN ========== */
.lang-dropdown {
  position: relative;
  margin-right: 12px;
}

.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 5px 12px;
  color: #fff;
  font-size: 0.8rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-dropdown-toggle:hover {
  background: rgba(255,255,255,0.2);
}

.lang-dropdown-toggle .fa-globe {
  font-size: 0.9rem;
}

.lang-arrow {
  font-size: 0.5rem !important;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border: 1px solid #eaeaea;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s ease;
  z-index: 1100;
  list-style: none;
}

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

.lang-dropdown-menu li {
  list-style: none;
}

.lang-dropdown-menu .lang-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #333;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lang-dropdown-menu .lang-btn:hover {
  background: #EDF7F0;
  color: #1B6B3A;
}

.lang-dropdown-menu .lang-btn.active {
  background: #EDF7F0;
  color: #1B6B3A;
  font-weight: 600;
}

.lang-dropdown-menu .lang-btn.active::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  margin-left: auto;
  color: #1B6B3A;
}

.lang-flag {
  font-size: 1.1rem;
}

/* ========== NEW DESIGN UPDATES ========== */
.feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-box {
  background: var(--green);
  color: #000;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.feature-box:hover {
  opacity: 0.9;
}

.footer-strip {
  background: var(--green);
  padding: 50px 0;
  color: #000;
  margin-top: 40px;
}

.footer-strip-inner {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.footer-logo-box .logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.footer-contact h4, .footer-links h4 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-contact p, .footer-links a {
  font-size: 1.4rem;
  line-height: 1.4;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  color: #000;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-strip-inner {
    flex-direction: column;
    gap: 40px;
  }
  
  .nav-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
  }
}
