    :root {
  --primary-color: #056839;
  --secondary-color: #ffce00;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e9ecef;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
  z-index: 1000;
  max-width: 90%;
  width: 400px;
}

.success-popup.hidden {
  display: none;
}

.success-popup .checkmark {
  font-size: 3rem;
  color: #056839;
  margin-bottom: 1rem;
}

.success-popup h3 {
  color: #056839;
  margin-bottom: 0.5rem;
}

.success-popup p {
  color: #666;
}

/* Hero Section */
.hero {
  height: 70vh;
  background: linear-gradient(rgba(5, 104, 57, 0.7), rgba(5, 104, 57, 0.7)),
    url("https://upload.wikimedia.org/wikipedia/commons/3/37/Ugandan_kobs_%28Kobus_kob_thomasi%29_female_and_calf.jpg") center / cover;
    background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
    display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);

}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.cta-button {
  background: var(--secondary-color);
  color: var(--text-dark);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.cta-button.primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.cta-button.primary:hover {
  background: #cfc207;
}

.cta-button.secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.cta-button.secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Main Content Layout */
.main-wrapper {
  padding: 4rem 0;
  background: var(--background-light);
}

.content-grid {
  display: grid;
  grid-template-columns: 75% 25%;
  gap: 1rem;
}

.main-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Introduction Section */
.intro-section {
  margin-bottom: 3rem;
}

.intro-section h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.intro-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.weather-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--background-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Seasons Section */
.seasons-section h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.season-section {
  margin-bottom: 4rem;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.season-section:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.season-header {
  background: linear-gradient(135deg, var(--primary-color), #067a42);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.season-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

.season-badge {
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.season-content {
  padding: 2rem;
}

.season-image {
  width: 100%;
  margin-bottom: 2rem;
}

.season-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.season-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: justify;
  line-height: 1.8;
}

.season-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.info-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-item i {
  font-size: 1.2rem;
}

.season-quote {
  background: var(--primary-color);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  font-style: italic;
  font-size: 1.1rem;
  margin: 2rem 0;
  position: relative;
}

.season-quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -10px;
  left: 15px;
  opacity: 0.3;
}

.season-highlights {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.season-highlights h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.season-highlights ul {
  list-style: none;
}

.season-highlights li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.season-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.season-highlights strong {
  color: var(--primary-color);
}

/* Monthly Guide Section */
.monthly-section {
  margin: 4rem 0;
}

.monthly-section h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.monthly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.month-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.month-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.month-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.month-card h3 {
  color: var(--primary-color);
  padding: 1rem 1.5rem 0.5rem;
  font-size: 1.3rem;
}

.month-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

/* Activities Section */
.activities-section {
  margin: 4rem 0;
  background: var(--background-light);
  padding: 3rem;
  border-radius: 15px;
}

.activities-section h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.activities-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.activities-text h3 {
  color: var(--primary-color);
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.activities-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.activities-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.activities-image img {
  width: 100%;
  border-radius: 10px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #067a42);
  color: var(--white);
  padding: 4rem 2rem;
  border-radius: 15px;
  text-align: center;
  margin: 4rem 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sidebar Styles */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: fit-content;
}

.sidebar-section {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.sidebar-section:hover {
  transform: translateY(-2px);
}

.sidebar-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
}

.sidebar-section i {
  font-size: 1.2rem;
}

.tips-list {
  list-style: none;
}

.tips-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.6;
}

.tips-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

.fact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--background-light);
  border-radius: 8px;
  align-items: flex-start;
}

.fact-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.fact-item div {
  flex-grow: 1;
}

.fact-item h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.fact-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.spot-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--background-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.spot-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.spot-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.spot-badge {
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-section {
  background: linear-gradient(135deg, var(--primary-color), #067a42);
  color: var(--white);
}

.contact-section h3 {
  color: var(--white);
}

.contact-info p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-button {
  background: var(--secondary-color);
  color: var(--text-dark);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
}

.contact-button:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
  color: var(--text-light);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close {
  color: var(--text-light);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.close:hover {
  color: var(--text-dark);
}

.modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  background: #044a2a;
  transform: translateY(-2px);
}

/* Enhanced Cards */
.month-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.month-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.month-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.month-card:hover img {
  transform: scale(1.05);
}

.month-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.month-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.month-card p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
}

.month-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.month-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  background: var(--background-light);
  padding: 0.5rem;
  border-radius: 5px;
}

.month-stats i {
  color: var(--primary-color);
  width: 16px;
}

/* Season Image Gallery */
.season-image-gallery {
  margin-bottom: 2rem;
}

.main-season-image {
  margin-bottom: 1rem;
}

.main-season-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.season-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.season-image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.season-image-grid img:hover {
  transform: scale(1.05);
}

/* Did You Know Section */
.did-you-know-container {
  position: relative;
}

.fact-carousel {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--background-light);
}

.fact-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
  text-align: center;
}

.fact-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.fact-slide.prev {
  transform: translateX(-100%);
}

.fact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--primary-color);
}

.fact-slide h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.fact-slide p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.fact-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 0 0.5rem;
}

.fact-nav-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.fact-nav-btn:hover {
  background: #044a2a;
  transform: scale(1.1);
}

.fact-indicators {
  display: flex;
  gap: 0.5rem;
}

.fact-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: background 0.3s ease;
}

.fact-indicator.active {
  background: var(--primary-color);
}

/* Enhanced Sidebar Sections */
.season-guide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.season-item {
  background: var(--background-light);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.season-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.season-item p {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.season-item strong {
  color: var(--text-dark);
}

/* Activities Calendar */
.activities-calendar {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.month-item {
  background: var(--background-light);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--secondary-color);
}

.month-item h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.month-item p {
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Event Stories */
.event-story {
  background: var(--background-light);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--secondary-color);
}

.event-story h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.event-story p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Photography Tips */
.photo-tips {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-item {
  background: var(--background-light);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.tip-item h4 {
  color: var(--primary-color);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.tip-item p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

/* Packing Checklist */
.packing-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pack-category {
  background: var(--background-light);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.pack-category h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.pack-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pack-category li {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}

.pack-category li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Cultural Tips */
.culture-tips {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.culture-item {
  background: var(--background-light);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.culture-item h4 {
  color: var(--primary-color);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.culture-item p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

/* Enhanced Contact Section */
.contact-hours {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.contact-hours h4 {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-hours p {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  opacity: 0.9;
}

.emergency-contact {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 206, 0, 0.1);
  border-radius: 8px;
  border: 1px solid var(--secondary-color);
}

.emergency-contact h4 {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.emergency-contact p {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
  color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .activities-content {
    grid-template-columns: 1fr;
  }
  
  .activities-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .nav-menu ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  
  .nav-menu.active ul {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .season-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .monthly-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .season-image-grid {
    grid-template-columns: 1fr;
  }
  
  .monthly-grid {
    grid-template-columns: 1fr;
  }
  
  .activities-stats {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .sidebar-section {
    padding: 1.5rem;
  }
}

/* Image modal for gallery */
.image-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.image-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.image-modal img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 3001;
}

.image-modal-close:hover {
  color: var(--secondary-color);
}

/* Loading animation for images */
.image-loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}



            /* Redesigned sidebar button container with center panel positioning */
        .sidebar-button-container {
            position: fixed;
            right: 0;
            top: 70%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        /* Modern professional button design */
        .sidebar-button {
            background: linear-gradient(135deg, #cc7f0c 0%, #db4905 100%);
            color: white;
            padding: 18px 25px;
            border: none;
            border-radius: 30px 0 0 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 320px;
            position: relative;
            border-right: 4px solid #0bf52a;
        }

        .sidebar-button:hover {
            opacity: 0;
            transform: translateX(20px) translateY(-50%);
        }

        /* Professional logo with SafariBookings colors */
        .safari-logo {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
        }

        /* Centered hover panel with professional SafariBookings design */
        .hover-panel {
            position: fixed;
            left: 27%;
            top: -120%;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            padding: 0;
            width: 480px;
            max-height: 900px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .sidebar-button-container:hover .hover-panel {
            opacity: 1;
            visibility: visible;
        }
        .safari-logo img{
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }
        .partner-text {
            display: inline;
            }
        /* Professional header section */
        .panel-headers {
            background: linear-gradient(135deg, #f58e07 0%, #db5314 100%);
            color: white;
            padding: 25px;
            text-align: center;
            position: relative;
        }

        .panel-headers h3 {
            font-size: 25px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .panel-headers p {
            font-size: 14px;
            opacity: 0.9;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .close-btn:hover {
            opacity: 1;
        }

        /* Trust indicators section */
        .trust-section {
            padding: 20px 25px;
            background: #f8fafc;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .rating-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stars {
            color: #f59e0b;
            font-size: 18px;
        }

        .rating-text {
            font-weight: 600;
            color: #1f2937;
        }

        .verified-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #dcfce7;
            color: #166534;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        /* Professional reviews section matching SafariBookings design */
        .reviews-section {
            padding: 25px;
            max-height: 260px;
            overflow-y: auto;
        }

        .review {
            margin-bottom: 20px;
            padding: 20px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .reviewer-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }

        .reviewer-info {
            flex: 1;
        }

        .reviewer-name {
            font-weight: 600;
            color: #1f2937;
            font-size: 14px;
        }

        .reviewer-details {
            font-size: 12px;
            color: #6b7280;
            margin-top: 2px;
        }

        .review-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .review-stars {
            color: #f59e0b;
            font-size: 14px;
        }

        .review-score {
            font-weight: 600;
            color: #1f2937;
            font-size: 14px;
        }

        .review-text {
            color: #374151;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .review-meta {
            font-size: 11px;
            color: #9ca3af;
            border-top: 1px solid #f3f4f6;
            padding-top: 8px;
        }

        /* Professional action section */
        .action-section {
            max-height: 200px;
            padding: 20px 15px;
            background: #f8fafc;
            border-top: 1px solid #e5e7eb;
            text-align: center;
        }

        .review-count {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 15px;
        }

        .action-button {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
        }

        .action-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
        }

        /* Custom scrollbar for reviews */
        .reviews-section::-webkit-scrollbar {
            width: 6px;
        }

        .reviews-section::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 3px;
        }

        .reviews-section::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }

        .reviews-section::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .sidebar-button {
                min-width: 80px;
                font-size: 14px;
                padding: 15px 20px;
            }
            
            .hover-panel {
                left: -180%;
                width: 90vw;
                max-width: 500px;
                max-height: 80vh;
            }
              .partner-text {
                display: none;
            }
        
        }