@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
  --green: #2e7d32;
  --green-accent: #43a047;
  --earth: #795548;
  --beige: #f3ede4;
  --white: #fff;
  --shadow: 0 4px 24px rgba(44,62,80,0.10);
  --glass: rgba(255,255,255,0.7);
  --gradient: linear-gradient(120deg, #e8f5e9 0%, #f3ede4 100%);
  --accent: #ffd600;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--gradient);
  color: #222;
  min-height: 100vh;
  transition: background 0.5s;
}

header {
  background: transparent;
  color: var(--white);
  padding: 0;
  box-shadow: none;
  position: relative;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.2rem 1.5rem 1rem 1.5rem;
  border-radius: 0 0 24px 24px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1001;
}

.logo {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  color: var(--green);
  text-shadow: 0 2px 8px rgba(44,62,80,0.08);
}

.logo img {
  height: 48px;
  margin-right: 1rem;
  filter: drop-shadow(0 2px 8px rgba(44,62,80,0.10));
}

.custom-lang-selector {
  position: relative;
  display: inline-block;
  margin-left: 1rem;
  z-index: 1002;
}
.custom-lang-selector.mobile {
  width: 100%;
  margin: 1rem 0 0 0;
}
.lang-selected {
  background: #ffffff;
  border: 2px solid var(--green-accent);
  border-radius: 12px;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  min-width: 90px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(67,160,71,0.15);
}
.lang-selected .lang-arrow {
  margin-left: 0.5rem;
  font-size: 0.9em;
  transition: transform 0.3s ease;
}
.custom-lang-selector.open .lang-arrow {
  transform: rotate(180deg);
}
.lang-selected:focus, .lang-selected:hover {
  box-shadow: 0 4px 16px rgba(67,160,71,0.25);
  transform: translateY(-1px);
}
.lang-options {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  background: #ffffff;
  border: 2px solid var(--green-accent);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(44,62,80,0.15);
  min-width: 120px;
  width: 100%;
  z-index: 1003;
  overflow: hidden;
}
.custom-lang-selector.open .lang-options {
  display: block;
  animation: fadeInDown 0.3s ease;
}
.lang-option {
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-accent);
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(67,160,71,0.1);
}
.lang-option:last-child {
  border-bottom: none;
}
.lang-option:hover {
  background: var(--green-accent);
  color: var(--white);
  transform: translateX(4px);
}
.lang-flag {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(44,62,80,0.15);
  border: 1px solid rgba(0,0,0,0.1);
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .custom-lang-selector {
    width: 100%;
    margin: 1rem 0 0 0;
  }
  .lang-selected {
    width: 100%;
    justify-content: flex-start;
  }
  .lang-options {
    min-width: 100px;
    width: 100%;
  }
  .custom-lang-selector.mobile .lang-options {
    top: auto;
    bottom: 110%;
    margin-bottom: 0.5rem;
  }
  .logo img {
    width: 44px;
    height: 48px;
  }
}
/* Hide old select */
#languageSelector, #mobileLanguageSelector {
  display: none !important;
}

/* Slideshow */
.slideshow {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  height: 340px;
  margin: 0 auto 2.5rem auto;
  background: var(--earth);
  border-radius: 0 0 32px 32px;
  box-shadow: var(--shadow);
}
.slide {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: opacity 1s;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.85) saturate(1.1);
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slide::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(44,62,80,0.10) 0%, rgba(255,255,255,0.05) 100%);
  z-index: 3;
  pointer-events: none;
}
.slide-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  z-index: 4;
  pointer-events: none;
}
.slide-arrow {
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: var(--green-accent);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
  margin: 0 1.5rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-arrow:hover {
  background: var(--green-accent);
  color: var(--white);
  transform: scale(1.12);
}

@media (max-width: 900px) {
  .header-content {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 0.7rem 0.7rem 0.7rem;
  }
  .slideshow {
    height: 200px;
    border-radius: 0 0 18px 18px;
  }
  .logo {
    font-size: 1.3rem;
  }
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
}

.section-title {
  font-size: 2.2rem;
  color: var(--green-accent);
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 8px rgba(44,62,80,0.07);
}

.about {
  background: var(--glass);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
  animation: fadeIn 1s;
  font-size: 1.18rem;
  color: #2e2e2e;
}

.cards {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card {
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(44,62,80,0.13);
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 370px;
  height: 360px;
  margin-bottom: 2.5rem;
  transition: transform 0.25s, box-shadow 0.25s, border 0.25s;
  cursor: pointer;
  animation: fadeInUp 1s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card:hover {
  transform: translateY(-12px) scale(1.045) rotate(-0.5deg);
  box-shadow: 0 12px 36px 0 rgba(67,160,71,0.18);
  border: 2px solid var(--accent);
  z-index: 2;
}

.card-title {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 12px rgba(0,0,0,0.7);
  background: rgba(0,0,0,0.3);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  display: inline-block;
}
.card-desc {
  color: #ffffff !important;
  font-size: 1.08rem;
  line-height: 1.6;
  text-shadow: 0 3px 8px rgba(0,0,0,1), 0 5px 15px rgba(0,0,0,0.9);
  background: rgba(0,0,0,0.6);
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.2);
  z-index: 10;
  position: relative;
}

.card-desc p {
  color: #ffffff !important;
  text-shadow: 0 3px 8px rgba(0,0,0,1), 0 5px 15px rgba(0,0,0,0.9);
  font-weight: 600;
  margin: 0;
}

/* Force white color on all text inside card-desc */
.card-desc,
.card-desc *,
.card .card-desc,
.card .card-desc * {
  color: #ffffff !important;
  text-shadow: 0 3px 8px rgba(0,0,0,1), 0 5px 15px rgba(0,0,0,0.9) !important;
}

footer {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.powered-by {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.aldesigns-link {
  color: #ff4444;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.aldesigns-link:hover {
  color: #ff6666;
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

/* Navbar styles */
.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-left: 2rem;
}
.main-nav a {
  color: var(--green-accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.main-nav a:hover {
  background: var(--green-accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(67,160,71,0.10);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: transparent;
  transition: background 0.2s, transform 0.2s;
  padding: 6px;
  margin-left: 6px;
  border: 2px solid transparent;
}
.social-icons a:first-child {
  margin-left: 0;
}
.social-icons a svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}
.social-icons a[aria-label="Instagram"] {
  color: var(--green-accent);
}
.social-icons a[aria-label="Facebook"] {
  color: var(--green-accent);
}
.social-icons a[aria-label="WhatsApp"] {
  color: var(--green-accent);
}
.social-icons a:hover {
  background: var(--green-accent);
  color: var(--white);
  transform: translateY(-2px);
  border: 2px solid var(--green-accent);
}
.social-icons a:hover svg {
  fill: var(--white);
}

@media (max-width: 900px) {
  .main-nav {
    gap: 0.7rem;
    margin-left: 0.5rem;
  }
  .header-actions {
    margin-left: 0.5rem;
  }
}
@media (max-width: 700px) {
  .header-content {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 0.7rem 0.7rem 0.7rem;
  }
  .main-nav {
    flex-direction: column;
    gap: 0.5rem;
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  .header-actions {
    margin-left: 0;
  }
}

/* Contact Section */
.contact-section {
  background: var(--glass);
  box-shadow: var(--shadow);
  border-radius: 24px;
  max-width: 1200px;
  margin: 2.5rem auto 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.contact-container {
  display: flex;
  gap: 2.5rem;
  width: 100%;
}
.contact-form {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: transparent;
}
.contact-form label {
  font-weight: 600;
  color: var(--green-accent);
  margin-top: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
}

.contact-form select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(67,160,71,0.1);
}

.contact-form button {
  background: var(--green-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0.7rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(67,160,71,0.10);
  transition: background 0.2s, transform 0.2s;
}
.contact-form button:hover {
  background: var(--green);
  transform: translateY(-2px) scale(1.03);
}
.map-container {
  flex: 1 1 340px;
  min-width: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44,62,80,0.10);
  background: #e0e0e0;
  display: flex;
  align-items: stretch;
  height: 100%;
  min-height: 340px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 340px;
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }
  .map-container {
    min-height: 220px;
    height: 220px;
  }
}

/* News Section */
.news-section {
  max-width: 1200px;
  margin: 2.5rem auto 0 auto;
  padding: 2.5rem 2rem 0 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.news-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(44,62,80,0.10);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.news-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 30px rgba(67,160,71,0.15);
  border: 2px solid var(--accent);
}

.news-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-accent);
  margin-bottom: 1rem;
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.news-snippet {
  color: #555;
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
}

.news-link {
  display: inline-block;
  background: var(--green-accent);
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 1.5rem 1.5rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(67,160,71,0.20);
}

.news-link:hover {
  background: var(--green);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67,160,71,0.30);
}

.news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

/* Upcoming Activities Section */
.upcoming-section {
  max-width: 1200px;
  margin: 2.5rem auto 0 auto;
  padding: 2.5rem 2rem 0 2rem;
  background: var(--glass);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.upcoming-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(44,62,80,0.13);
  padding: 0;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--accent);
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.upcoming-overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 2.2rem 2rem 2rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}
.upcoming-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.upcoming-meta {
  font-size: 1.08rem;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}
.upcoming-desc {
  color: #f0f0f0;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  flex-grow: 1;
}
.upcoming-note {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-weight: 600;
  margin-top: 0.7rem;
  font-size: 1.05rem;
  backdrop-filter: blur(4px);
}
.upcoming-btn {
  display: inline-block;
  background: var(--green-accent);
  color: #fff;
  border-radius: 10px;
  padding: 0.8rem 2.2rem;
  font-size: 1.13rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(67,160,71,0.10);
  margin-top: 1.2rem;
  align-self: flex-start;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.upcoming-btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .upcoming-card {
    min-height: 350px;
  }
  .upcoming-overlay {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
}

/* Mobile Navigation Styles */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 3px;
  background: var(--green-accent);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
}
.desktop-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.desktop-nav .nav-links a {
  text-decoration: none;
  color: var(--green);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}
.desktop-nav .nav-links a:hover {
  color: var(--green-accent);
}
.desktop-nav .social-icons {
  display: flex;
  gap: 0.8rem;
  margin-left: 2rem;
}
.desktop-nav .social-icons a {
  color: var(--green);
  font-size: 1.4rem;
  transition: color 0.3s, transform 0.3s;
}
.desktop-nav .social-icons a:hover {
  color: var(--green-accent);
  transform: scale(1.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  display: none;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
  display: flex;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(67, 160, 71, 0.2);
}

.mobile-menu-header .logo {
  color: var(--green);
  font-size: 2rem;
}

.mobile-menu-close {
  background: var(--green);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
}

.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--green-accent);
  transform: rotate(90deg) scale(1.1);
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-nav a {
  color: var(--green-accent);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(67, 160, 71, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-nav a:hover {
  color: var(--green);
  padding-left: 1rem;
  background: rgba(67, 160, 71, 0.1);
  border-radius: 8px;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(67, 160, 71, 0.2);
}

.mobile-language-selector {
  margin-bottom: 1rem;
}

.mobile-language-selector select {
  width: 100%;
  padding: 0.8rem;
  background: var(--white);
  border: 2px solid var(--green-accent);
  border-radius: 8px;
  color: var(--green-accent);
  font-size: 1rem;
  font-weight: 600;
}

.mobile-social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.mobile-social-icons a {
  color: var(--green-accent);
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-social-icons a:hover {
  color: var(--green);
  transform: scale(1.1);
}

/* Responsive Design */
@media (min-width: 769px) {
  .mobile-nav-toggle,
  .mobile-menu,
  .mobile-menu-overlay {
    display: none !important;
  }
  .desktop-nav {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0.8rem 1rem;
  }
  
  .header-content {
    justify-content: space-between;
    padding: 1.2rem 0.7rem 0.7rem 0.7rem;
    border-radius: 0 0 18px 18px;
    background: var(--glass);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
    position: relative;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .logo img {
    width: 44px;
    height: 48px;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu-overlay {
    display: block;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  /* Hero Section Mobile */
  .hero {
    padding: 4rem 1rem 3rem 1rem;
    min-height: 60vh;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin: 1rem 0 1.5rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
  }
  
  /* Slideshow Mobile */
  .slideshow {
    height: 300px;
  }
  
  .slide-content h2 {
    font-size: 1.8rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  /* Sections Mobile */
  .mission-section,
  .what-we-do,
  .news-section,
  .upcoming-section,
  .contact-section {
    padding: 2rem 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  /* Cards Mobile */
  .cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card {
    min-height: 250px;
  }
  
  /* News Cards Mobile */
  .news-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .news-card {
    min-height: 200px;
  }
  
  /* Contact Form Mobile */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 2rem 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-section h3 {
    font-size: 1.3rem;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  /* Upcoming Card Mobile */
  .upcoming-card {
    min-height: 350px;
  }
  
  .upcoming-overlay {
    padding: 1.5rem 1rem;
  }
  
  .upcoming-title {
    font-size: 1.2rem;
  }
  
  .upcoming-meta,
  .upcoming-desc {
    font-size: 1rem;
  }
  
  .upcoming-btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .slideshow {
    height: 250px;
  }
  
  .slide-content h2 {
    font-size: 1.5rem;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .upcoming-card {
    min-height: 300px;
  }
  
  .upcoming-overlay {
    padding: 1rem 0.8rem;
  }
  
  .upcoming-title {
    font-size: 1.1rem;
  }
  
  .upcoming-meta,
  .upcoming-desc {
    font-size: 0.9rem;
  }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
  .card:hover,
  .news-card:hover,
  .upcoming-btn:hover {
    transform: none;
  }
  
  .card:active,
  .news-card:active {
    transform: scale(0.98);
  }
  
  .upcoming-btn:active {
    transform: scale(0.95);
  }
  
  .mobile-nav-toggle:active span {
    background: var(--green);
  }
  
  .mobile-menu-nav a:active {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 50vh;
    padding: 2rem 1rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .slideshow {
    height: 200px;
  }
  
  .mobile-menu {
    width: 300px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .mobile-menu,
  .mobile-menu-overlay {
    transition: none;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #1a1a1a;
    --light-gray: #2a2a2a;
    --gray: #3a3a3a;
  }
  
  .mobile-menu {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  }
  
  /* Keep language selector white even in dark mode */
  .lang-selected,
  .lang-options {
    background: #ffffff !important;
  }
  
  /* Keep news cards and sections light even in dark mode */
  .news-section,
  .upcoming-section,
  .about,
  .what-we-do,
  .contact-section {
    background: rgba(255, 255, 255, 0.9) !important;
  }
  
  .news-card {
    background: #ffffff !important;
  }
  
  .news-title,
  .card-title,
  .section-title {
    color: var(--green-accent) !important;
  }
  
  .news-snippet,
  .card-desc {
    color: #555 !important;
  }
}

/* Project Content Styles */
.project-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.project-intro {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(46, 125, 50, 0.1);
}

.project-intro h3 {
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.project-intro h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-accent) 100%);
  border-radius: 2px;
}

.project-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.project-section {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(46, 125, 50, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.project-section h3 {
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.8rem;
}

.project-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-accent) 100%);
  border-radius: 2px;
}

.project-section h4 {
  color: var(--earth);
  font-size: 1.4rem;
  margin: 2rem 0 1.2rem 0;
  font-weight: 600;
  padding-left: 1rem;
  border-left: 4px solid var(--green-accent);
}

.project-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #34495e;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.project-section ul {
  margin: 1.5rem 0;
  padding-left: 1.8rem;
}

.project-section li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #34495e;
  margin-bottom: 0.8rem;
  position: relative;
}

.project-section li::before {
  content: '•';
  color: var(--green);
  font-weight: bold;
  position: absolute;
  left: -1.2rem;
}

.project-section strong {
  color: var(--green);
  font-weight: 600;
}

/* Opportunities Grid */
.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.opportunity-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 16px;
  border-left: 5px solid var(--green);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.opportunity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-accent) 100%);
}

.opportunity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.opportunity-card h4 {
  color: var(--green);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  padding-left: 0;
  border-left: none;
}

.opportunity-card p {
  color: #495057;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-style: italic;
  background: rgba(255,255,255,0.7);
  padding: 0.8rem;
  border-radius: 8px;
}

.opportunity-card ul {
  margin: 0;
  padding-left: 1.5rem;
}

.opportunity-card li {
  font-size: 1rem;
  color: #495057;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.opportunity-card li::before {
  content: '→';
  color: var(--green-accent);
  font-weight: bold;
  position: absolute;
  left: -1.2rem;
}

/* PDF Download Section */
.pdf-download-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-accent) 100%);
  padding: 3.5rem 2.5rem;
  border-radius: 24px;
  text-align: center;
  margin-top: 4rem;
  box-shadow: 0 12px 40px rgba(46, 125, 50, 0.3);
  position: relative;
  overflow: hidden;
}

.pdf-download-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.pdf-download-section h3 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.pdf-download-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  color: var(--green);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.pdf-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  background: var(--accent);
  color: var(--green);
}

.pdf-download-btn svg {
  width: 28px;
  height: 28px;
}

.pdf-info {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1rem !important;
  margin-top: 2rem !important;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
  .project-content {
    padding: 1rem;
  }
  
  .project-intro,
  .project-section {
    padding: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .project-intro h3,
  .project-section h3 {
    font-size: 1.6rem;
  }
  
  .opportunities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .opportunity-card {
    padding: 1.5rem;
  }
  
  .pdf-download-section {
    padding: 2.5rem 1.5rem;
    margin-top: 3rem;
  }
  
  .pdf-download-section h3 {
    font-size: 1.8rem;
  }
  
  .pdf-download-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .project-intro,
  .project-section {
    padding: 1.5rem;
  }
  
  .project-intro h3,
  .project-section h3 {
    font-size: 1.4rem;
  }
  
  .pdf-download-section {
    padding: 2rem 1rem;
  }
  
  .pdf-download-section h3 {
    font-size: 1.6rem;
  }
  
  .pdf-download-btn {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.2rem;
  }
}

/* Energy Efficiency Section Styles */
.energy-efficiency-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin: 2rem 0;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.energy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.energy-text h3 {
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.energy-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

.energy-text ul {
  list-style: none;
  padding: 0;
}

.energy-text li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
  color: #666;
}

.energy-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.energy-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.energy-visual {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-accent) 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 12px 40px rgba(46,125,50,0.3);
  position: relative;
  overflow: hidden;
}

.energy-visual::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.energy-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.energy-stats {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Rural Tourism Section Styles */
.rural-tourism-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fff9f0 0%, #f5f5f5 100%);
  margin: 2rem 0;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.tourism-content {
  max-width: 1200px;
  margin: 0 auto;
}

.tourism-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.tourism-intro h3 {
  color: var(--earth);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.tourism-intro p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.tourism-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.highlight-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-color: var(--green-accent);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight-item h4 {
  color: var(--green);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.highlight-item p {
  color: #666;
  line-height: 1.6;
}

.tourism-cta {
  text-align: center;
}

.look-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-accent) 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(46,125,50,0.3);
  border: none;
  cursor: pointer;
}

.look-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46,125,50,0.4);
  color: white;
  text-decoration: none;
}

.look-more-btn svg {
  transition: transform 0.3s ease;
}

.look-more-btn:hover svg {
  transform: translateX(3px);
}

/* Discover More Section Styles */
.discover-more-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  margin: 2rem 0;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.discover-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.discover-card {
  position: relative;
  height: 430px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
}

.discover-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46,125,50,0.8) 0%, rgba(67,160,71,0.9) 100%);
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.discover-card:hover::before {
  opacity: 0.95;
}

.discover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.discover-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: white;
}

.discover-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.discover-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.discover-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  max-width: 280px;
}

.discover-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.discover-features span {
  background: rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
}

.discover-btn {
  background: rgba(255,255,255,0.9);
  color: var(--green);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.discover-btn:hover {
  background: white;
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-decoration: none;
}

/* Responsive Design for Discover More Section */
@media (max-width: 768px) {
  .discover-more-section {
    padding: 2rem 1rem;
    margin: 1rem 0;
  }

  .discover-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .discover-card {
    height: 430px;
  }

  .discover-overlay {
    padding: 1.5rem;
  }

  .discover-icon {
    font-size: 3rem;
  }

  .discover-card h3 {
    font-size: 1.2rem;
  }

  .discover-card p {
    font-size: 1rem;
  }

  .discover-features {
    margin-bottom: 1.5rem;
  }

  .discover-features span {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }

  .discover-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .discover-more-section {
    padding: 1.5rem 0.8rem;
  }

  .discover-card {
    height: 394px;
  }

  .discover-overlay {
    padding: 1rem;
  }

  .discover-icon {
    font-size: 2.5rem;
  }

  .discover-card h3 {
    font-size: 1.2rem;
  }

  .discover-card p {
    font-size: 0.9rem;
  }

  .discover-features span {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }

  .discover-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

/* Responsive Design for Energy Efficiency and Rural Tourism Sections */
@media (max-width: 768px) {
  .energy-efficiency-section,
  .rural-tourism-section {
    padding: 2rem 1rem;
    margin: 1rem 0;
  }

  .energy-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .energy-text h3 {
    font-size: 1.5rem;
  }

  .energy-text p {
    font-size: 1rem;
  }

  .energy-visual {
    padding: 2rem 1rem;
  }

  .energy-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .tourism-intro h3 {
    font-size: 1.6rem;
  }

  .tourism-intro p {
    font-size: 1rem;
  }

  .tourism-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .highlight-item {
    padding: 1.5rem;
  }

  .look-more-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .energy-efficiency-section,
  .rural-tourism-section {
    padding: 1.5rem 0.8rem;
  }

  .energy-text h3 {
    font-size: 1.3rem;
  }

  .tourism-intro h3 {
    font-size: 1.4rem;
  }

  .highlight-item {
    padding: 1rem;
  }

  .look-more-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Partners Section */
.partners-section {
  padding: 3rem 1rem 2rem 1rem;
  background: var(--glass);
  margin: 0 auto 2rem auto;
  max-width: 1200px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}
.partners-section .section-title {
  margin-bottom: 2rem;
}
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.partners-logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.85;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}
.partners-logos img:hover {
  filter: grayscale(0%) contrast(1.2);
  opacity: 1;
  transform: scale(1.07);
}
@media (max-width: 700px) {
  .partners-logos {
    gap: 1rem;
  }
  .partners-logos img {
    height: 40px;
  }
} 