/* Modern Design - Gerege Tourist Passport */
:root {
  --primary: #641c7a;
  --primary-light: #fc8bda;  /* Lightened from #34495e */
  --secondary: #fb87ff;
  --secondary-light: #f39c12;
  --accent: #3498db;
  --text-dark: #2c3e50;
  --text-light: #ecf0f1;
  --bg-light: #f8f9fa;
  --bg-dark: #2c3e50;
  --success: #2ecc71;
  --warning: #f1c40f;
  --danger: #e74c3c;
  --border-radius: 8px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --transition-slow: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --shadow-3d: 0 10px 30px -5px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.07);
  --gradient-shine: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 100%);
}

/* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--bg-light);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  font-size: 16px;
}

/* Container for all sections */
.container {
  width: 100%;
  max-width: 1600px; /* Increased from 1400px */
  margin: 0 auto;
  padding: 0 2rem; /* Increased padding */
  box-sizing: border-box;
}

/* Ensure all sections respect viewport width */
section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  box-sizing: border-box;
}

/* Fix for images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  width: 100%;
}

/* Fix for grid layouts */
.news-grid,
.tips-grid,
.benefits-container,
.help-columns {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 1.5rem;
}

/* Fix for modals */
.widget-modal {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
}

.widget-content {
  width: 95%;
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Fix for utility widgets */
.fixed-utility-widgets {
  position: fixed;
  right: 40px; /* Increased from 30px */
  bottom: 40px; /* Increased from 30px */
  display: flex;
  flex-direction: column;
  gap: 20px; /* Increased from 15px */
  z-index: 999;
}

.fixed-utility-widgets .weather-widget,
.fixed-utility-widgets .currency-widget {
  width: 65px; /* Increased from 50px */
  height: 65px; /* Increased from 50px */
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.5rem; /* Increased icon size */
}

.buy-gerege-button {
  position: fixed;
  right: 40px; /* Increased from 30px */
  bottom: 180px; /* Increased from 160px */
  padding: 15px 30px; /* Increased padding */
  z-index: 10000;
  font-size: 1.2rem; /* Increased font size */
}

@media (max-width: 768px) {
  .fixed-utility-widgets {
    right: 25px; /* Increased from 20px */
    bottom: 25px; /* Increased from 20px */
    gap: 15px; /* Increased from 12px */
  }

  .fixed-utility-widgets .weather-widget,
  .fixed-utility-widgets .currency-widget {
    width: 55px; /* Increased from 45px */
    height: 55px; /* Increased from 45px */
  }

  .buy-gerege-button {
    right: 25px !important; /* Increased from 20px */
    bottom: 160px; /* Increased from 140px */
    padding: 10px 20px; /* Increased padding */
    font-size: 1.1rem; /* Increased from 0.9rem */
  }
}

@media (max-width: 480px) {
  .fixed-utility-widgets {
    right: 20px; /* Increased from 15px */
    bottom: 20px; /* Increased from 15px */
    gap: 12px; /* Increased from 10px */
  }

  .fixed-utility-widgets .weather-widget,
  .fixed-utility-widgets .currency-widget {
    width: 50px; /* Increased from 40px */
    height: 50px; /* Increased from 40px */
  }

  .buy-gerege-button {
    right: 20px !important; /* Increased from 15px */
    bottom: 140px; /* Increased from 120px */
    padding: 8px 16px; /* Increased padding */
    font-size: 1rem; /* Increased from 0.85rem */
  }
}

/* Fix for buy button */
.buy-gerege-button {
  position: fixed;
  bottom: 2.5rem; /* Increased from 2rem */
  right: 2.5rem; /* Increased from 2rem */
  width: 80px; /* Increased from 65px */
  height: 80px; /* Increased from 65px */
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  border-radius: 20px; /* Increased from 16px */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px; /* Increased from 2px */
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.25);
  z-index: 99;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2); /* Increased border width */
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 0; /* Increased padding */
}

.buy-gerege-button i {
  font-size: 1.4rem; /* Increased from 1.1rem */
  animation: floatUpDown 2s infinite;
  line-height: 1;
}

.buy-gerege-button .price {
  font-size: 0.7rem; /* Increased from 0.5rem */
  background: rgba(255, 255, 255, 0.12);
  padding: 2px 4px; /* Increased padding */
  border-radius: 6px; /* Increased from 4px */
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.3px; /* Increased from 0.2px */
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .buy-gerege-button {
    right: 1.5rem;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    padding: 6px 0;
  }
  
  .buy-gerege-button i {
    font-size: 1rem;
  }
  
  .buy-gerege-button .price {
    font-size: 0.45rem;
    padding: 1px 2px;
  }
}

@media (max-width: 480px) {
  .buy-gerege-button {
    right: 1rem;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    padding: 5px 0;
  }
  
  .buy-gerege-button i {
    font-size: 0.9rem;
  }
  
  .buy-gerege-button .price {
    font-size: 0.4rem;
    padding: 1px 2px;
  }
}

/* Fix for map section */
.map-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.map-image {
  width: 100%;
  max-width: 100%;
}

/* Fix for testimonial slider */
.testimonial-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Fix for footer */
footer {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.footer-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .container,
  .news-grid,
  .tips-grid,
  .benefits-container,
  .help-columns,
  .footer-content {
    padding: 0 1rem;
  }
  
  .fixed-utility-widgets {
    right: 1rem;
  }
  
  .buy-gerege-button {
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .container,
  .news-grid,
  .tips-grid,
  .benefits-container,
  .help-columns,
  .footer-content {
    padding: 0 0.75rem;
  }
  
  .fixed-utility-widgets {
    right: 0.75rem;
  }
  
  .buy-gerege-button {
    right: 0.75rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary);
}

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

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

p {
  color: #333;
  margin-bottom: 1rem;
}

/* Modern Header */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 0.8rem 2.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

header.header-hidden {
  transform: translateY(-100%);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo img {
  width: 120px;
  height: 40px;
  border-radius: 0;
  object-fit: contain;
  filter: none;
  transition: all 0.3s ease;
  border: none;
}

@media (max-width: 768px) {
  .logo img {
    width: auto;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: auto;
    height: 55px;
  }
}

.logo:hover img {
  transform: rotate(5deg);
}

.logo span {
  font-weight: 700;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

/* Weather and Currency Widget */
.utility-widgets {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  margin-right: 1.5rem;
}

.weather-widget, 
.currency-widget {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
}

.weather-widget:hover, 
.currency-widget:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
  border-color: rgba(230, 126, 34, 0.3);
}

.weather-widget i, 
.currency-widget i {
  color: var(--secondary);
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.weather-widget:hover i, 
.currency-widget:hover i {
  transform: scale(1.15);
  color: var(--secondary-light);
}

.weather-temp, 
.currency-rate {
  font-weight: 700;
  color: var(--primary);
  transition: all 0.3s ease;
}

.weather-widget:hover .weather-temp, 
.currency-widget:hover .currency-rate {
  color: var(--secondary);
}

.weather-city, 
.currency-name {
  color: var(--primary-light);
  font-size: 0.8rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.weather-widget:hover .weather-city, 
.currency-widget:hover .currency-name {
  opacity: 1;
  color: var(--secondary-light);
}

/* Weather and Currency Modal */
.widget-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  padding: 30px 0;
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.widget-content {
  background: linear-gradient(145deg, #ffffff, #fafbfc);
  border-radius: 16px;
  max-width: 700px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  position: relative;
  padding: 2rem 2rem 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 
              0 8px 24px rgba(0, 0, 0, 0.15),
              0 0 1px rgba(0, 0, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(20px);
  opacity: 0;
  animation: modalFadeIn 0.5s forwards;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

@keyframes modalFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.widget-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--primary-light);
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
}

.widget-close:hover {
  color: white;
  background: var(--secondary);
  transform: rotate(90deg);
  box-shadow: 0 3px 8px rgba(230, 126, 34, 0.3);
}

.widget-content h3 {
  color: var(--primary);
  margin-bottom: 1.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  font-size: 1.5rem;
  position: relative;
}

.widget-content h3:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: 2px;
}

.weather-details,
.currency-details {
  margin-bottom: 1.5rem;
}

.weather-details div,
.currency-details div {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.weather-details div:last-child,
.currency-details div:last-child {
  border-bottom: none;
}

.weather-details span:first-child,
.currency-details span:first-child {
  color: var(--primary-light);
}

.weather-details span:last-child,
.currency-details span:last-child {
  font-weight: 500;
  color: var(--primary);
}

.weather-forecast {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.forecast-day {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  text-align: center;
}

.forecast-date {
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.forecast-temp {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
}

.currency-converter {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.currency-converter h4 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.1rem;
}

.converter-inputs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  max-width: 100%; /* Ensure no overflow */
}

.converter-inputs input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 100%; /* Ensure no overflow */
}

.converter-inputs input:focus {
  border-color: var(--accent);
  outline: none;
}

.converter-selects {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  max-width: 100%; /* Ensure no overflow */
  width: 100%;
}

.converter-selects select {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  background-color: white;
  appearance: auto;
  max-width: 100%; /* Ensure no overflow */
}

.converter-selects select:focus {
  border-color: var(--accent);
  outline: none;
}

.converter-swap {
  display: flex;
  align-items: center;
  justify-content: center;
}

#swap-currencies {
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

#swap-currencies:hover {
  transform: rotate(180deg);
  background-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.data-source {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.75rem;
  gap: 0.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

.data-source a {
  color: var(--primary);
  text-decoration: none;
}

.data-source a:hover {
  text-decoration: underline;
}

.last-updated {
  font-style: italic;
  color: #888;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

nav a {
  color: var(--primary);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: linear-gradient(to right, var(--secondary), var(--accent));
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 10px;
}

nav a:hover {
  color: var(--secondary);
  transform: translateY(-2px);
}

nav a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  z-index: -1;
  transition: all 0.5s ease;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(230, 126, 34, 0.35);
  color: white;
}

.cta-button:hover::before {
  transform: scale(1.1) rotate(-2deg);
}

.cta-button:hover::after {
  left: 100%;
}

.cta-button:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.5);
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.slide {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    transform: scale(1.05);
    z-index: 0;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(44, 62, 80, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transform: scale(1);
}

.slide-content {
    max-width: 800px;
    margin-left: 10%;
    position: relative;
    z-index: 2;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transform-style: preserve-3d;
    perspective: 1000px;
    padding: 0 20px;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
    font-weight: 800;
    position: relative;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateZ(20px);
    transition: var(--transition-slow);
}

@media (max-width: 1024px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
    }

    .slide {
        background-position: center center;
    }

    .slide-content {
        margin-left: 5%;
        margin-right: 5%;
        text-align: center;
        padding: 0 15px;
    }

    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 70vh;
    }

    .slide {
        background-position: center center;
        background-size: cover;
    }

    .slide-content {
        margin: 0 auto;
        width: 90%;
        padding: 0 10px;
    }

    .slide-content h1 {
        font-size: 1.75rem;
        margin-bottom: 0.6rem;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }

    .hero-cta {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }

    .slider-controls {
        display: none;
    }
}

.hero-cta {
  background-color: var(--secondary);
  color: white;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  transition: var(--transition-slow);
  transform-style: preserve-3d;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 10;
  pointer-events: none;
}

.slider-controls .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.7rem;
    margin-left: auto;
    z-index: 100;
}

.slider-controls button {
  background: transparent;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
  pointer-events: auto;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.slider-controls button:hover {
  opacity: 1;
  transform: scale(1.1);
}

.slider-indicators {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: white;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .hero-cta {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
  
  .slider-controls {
    padding: 0 1rem;
  }
  
  .slider-controls button {
    font-size: 2rem;
  }
}

/* Benefit Cards */
.benefits {
  padding: 6rem 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(52, 152, 219, 0.05);
  z-index: 0;
}

.benefits::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(230, 126, 34, 0.05);
  z-index: 0;
}

.benefits h1 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.benefits > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  color: #666;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
  color: var(--text-dark);
  padding: 2rem;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transform: translateY(0);
  text-decoration: none;
  height: 100%;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(230, 126, 34, 0.05) 100%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 0;
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  background: white;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  margin-bottom: 1.5rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 10px 20px rgba(44, 62, 80, 0.15);
  position: relative;
  overflow: hidden;
}

.benefit-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  opacity: 0;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 35px rgba(44, 62, 80, 0.2);
}

.benefit-card:hover .benefit-icon::after {
  left: 100%;
  opacity: 1;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.benefit-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: all 0.5s ease;
}

.benefit-card:hover h3 {
  color: var(--secondary);
}

.benefit-card:hover h3::after {
  width: 50px;
}

.benefit-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0;
  flex-grow: 1;
}

.benefit-card-arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.benefit-card:hover .benefit-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.benefit-card-arrow i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-card-arrow i {
  animation: arrowPulse 1.5s infinite;
}

@keyframes arrowPulse {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}

/* For specific benefit pages */
.filter-container {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.filter-button {
  background-color: var(--bg-light);
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-button:hover,
.filter-button.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.search-bar {
  position: relative;
  margin-bottom: 1rem;
}

.search-bar input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.search-bar input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(52, 73, 94, 0.2);
  outline: none;
}

.search-bar i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animated {
  animation: fadeIn 0.8s ease forwards;
}

/* Testimonials */
.testimonials {
  background-color: var(--primary);
  color: white;
  padding: 5rem 0;
}

.testimonials h2 {
  color: white;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.testimonials .subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
}

.testimonial-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.testimonial-stars {
  color: var(--warning);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  color: #333;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Section transitions */
section {
  position: relative;
  padding: 5rem 0;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  z-index: -1;
}

/* Value proposition section */
.value-summary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  padding: 4rem 0;
}

.value-summary h2 {
  color: white;
  text-align: center;
}

.value-summary .subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.value-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.value-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  width: 200px;
}

.value-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.value-item.highlight {
  background-color: var(--secondary);
  transform: scale(1.05);
}

.value-item.highlight:hover {
  transform: scale(1.05) translateY(-10px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.value-item h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.value-cta {
  background-color: white;
  color: var(--primary);
  display: block;
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
}

.value-cta:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .slide-content h1 {
    font-size: 2.8rem;
  }
  
  .value-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .value-item {
    width: 280px;
  }
}

@media (max-width: 991px) {
  .benefit-card {
    padding: 1.75rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 90px;
  }
  
  body {
    padding-top: var(--header-height);
  }
  
  header {
    padding: 1.2rem 1.5rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    overflow-y: auto;
    z-index: 100;
  }
  
  nav.active {
    transform: translateX(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
  }
  
  nav ul li {
    margin: 0 0 1.2rem 0;
    width: 100%;
  }
  
  nav ul li a {
    display: block;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.35rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.03);
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .hero-slider .slide-content {
    padding: 2rem 1rem;
    max-width: 100%;
  }
  
  .hero-slider .slide-content h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-slider .slide-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .benefit-card h3 {
    font-size: 1.1rem;
  }
  
  .fixed-utility-widgets {
    bottom: 5rem;
    right: 1rem;
  }
  
  .fixed-utility-widgets .weather-widget,
  .fixed-utility-widgets .currency-widget {
    width: 50px;
    height: 50px;
  }
  
  .buy-gerege-button {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
  
  /* Improve touch targets for mobile */
  .benefit-card,
  .faq-item,
  .nav-link,
  .btn,
  .back-to-top,
  .fixed-utility-widgets .weather-widget,
  .fixed-utility-widgets .currency-widget,
  .buy-gerege-button {
    touch-action: manipulation;
  }
  
  /* Adjust utility widgets spacing on mobile */
  .utility-widgets {
    gap: 0.5rem;
  }
  
  .weather-widget, 
  .currency-widget {
    padding: 0.3rem 0.6rem;
  }
  
  /* Ensure modals are usable on mobile */
  .widget-content {
    width: 95%;
    max-width: 600px;
    padding: 1.25rem 1.25rem 1.75rem;
  }
  
  .widget-close {
    top: 0.75rem;
    right: 0.75rem;
  }
  
  /* Improve scrolling experience */
  html {
    scroll-padding-top: calc(var(--header-height) + 20px);
  }
  
  /* Benefits section responsive */
  .benefits {
    padding: 4rem 0;
  }
  
  .benefits h1 {
    font-size: 2.2rem;
  }
  
  .benefits > p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .benefits-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .live-weather-widget {
    height: 250px;
  }
  
  .weatherwidget-io {
    height: 250px !important;
  }
  
  /* Fix for currency converter layout on mobile */
  .converter-selects {
    flex-direction: column;
    gap: 1rem;
  }
  
  .converter-swap {
    margin: 0.5rem 0;
  }
  
  #swap-currencies {
    transform: rotate(90deg);
  }
  
  #swap-currencies:hover {
    transform: rotate(270deg);
  }
}

@media (max-width: 480px) {
  .benefits-container {
    grid-template-columns: 1fr;
  }
  
  .hero-slider .slide-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-slider .slide-content p {
    font-size: 0.9rem;
  }
  
  .fixed-utility-widgets {
    bottom: 4.5rem;
    right: 0.75rem;
  }
  
  .fixed-utility-widgets .weather-widget,
  .fixed-utility-widgets .currency-widget {
    width: 45px;
    height: 45px;
  }
  
  .fixed-utility-widgets .weather-widget i,
  .fixed-utility-widgets .currency-widget i {
    font-size: 1.2rem;
  }
  
  .buy-gerege-button {
    font-size: 0.9rem;
    padding: 0.7rem 1.1rem;
    gap: 0.5rem;
  }
  
  .buy-gerege-button i {
    font-size: 1.1rem;
  }
  
  /* Touch-friendly form elements */
  input, select, button {
    min-height: 44px;
  }
  
  .widget-content {
    padding: 1rem;
    width: 92%;
  }
  
  .live-weather-widget {
    height: 230px;
  }
  
  .weatherwidget-io {
    height: 230px !important;
  }
}

/* FAQ Accordion */
.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: white;
}

.faq-item h3 {
  padding: 1.25rem;
  margin: 0;
  background-color: var(--primary-light);
  color: white;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-item.active h3::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 1.25rem;
  margin: 0;
  display: none;
}

.faq-item.active p {
  display: block;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: white;
  padding-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-logo h3 {
  color: white;
  margin-top: 1rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-social h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-links a i {
  color: var(--secondary);
  font-size: 0.8rem;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 50%;
  color: white;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(230, 126, 34, 0.2);
}

.social-icons a[aria-label="Facebook"] {
  background: linear-gradient(135deg, #1877f2, #0d6efd);
}

.social-icons a[aria-label="Instagram"] {
  background: linear-gradient(135deg, #e1306c, #833ab4);
}

.social-icons a:hover {
  transform: translateY(-3px) rotate(8deg);
  box-shadow: 0 6px 15px rgba(230, 126, 34, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
}

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

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2.5rem; /* Increased from 2rem */
  right: 2.5rem; /* Increased from 2rem */
  width: 65px; /* Increased from 55px */
  height: 65px; /* Increased from 55px */
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 99;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2); /* Increased border width */
}

.back-to-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  z-index: -1;
  transition: all 0.5s ease;
}

.back-to-top::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  animation: fadeInUp 0.5s forwards;
}

.back-to-top:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(230, 126, 34, 0.4);
}

.back-to-top:hover::before {
  transform: scale(1.1) rotate(-5deg);
}

.back-to-top:hover::after {
  left: 100%;
}

.back-to-top i {
  font-size: 1.5rem; /* Increased from 1.3rem */
  animation: floatUpDown 2s infinite;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

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

/* Fixed Utility Widgets */
.fixed-utility-widgets {
  position: fixed;
  bottom: 2rem;
  right: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
}

.fixed-utility-widgets .weather-widget,
.fixed-utility-widgets .currency-widget {
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  visibility: hidden;
  border: 2px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transform: translateY(20px);
}

.fixed-utility-widgets .weather-widget::after,
.fixed-utility-widgets .currency-widget::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: all 0.6s;
}

.fixed-utility-widgets .weather-widget.show,
.fixed-utility-widgets .currency-widget.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fixed-utility-widgets .weather-widget:hover,
.fixed-utility-widgets .currency-widget:hover {
  transform: translateY(-8px) scale(1.05);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 30px rgba(230, 126, 34, 0.3);
}

.fixed-utility-widgets .weather-widget i,
.fixed-utility-widgets .currency-widget i {
  font-size: 1.5rem;
  color: var(--secondary);
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.fixed-utility-widgets .weather-widget:hover i,
.fixed-utility-widgets .currency-widget:hover i {
  color: white;
  animation: pulse-icon 1.5s infinite;
}

@keyframes pulse-icon {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* Floating Buy Gerege Button */
.buy-gerege-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.25);
  z-index: 99;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
}

.buy-gerege-button i {
  font-size: 1.1rem;
  animation: floatUpDown 2s infinite;
  line-height: 1;
}

.buy-gerege-button .price {
  font-size: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 1px 2px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.2px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .buy-gerege-button {
    right: 1.5rem;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    padding: 6px 0;
  }
  
  .buy-gerege-button i {
    font-size: 1rem;
  }
  
  .buy-gerege-button .price {
    font-size: 0.45rem;
    padding: 1px 2px;
  }
}

@media (max-width: 480px) {
  .buy-gerege-button {
    right: 1rem;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    padding: 5px 0;
  }
  
  .buy-gerege-button i {
    font-size: 0.9rem;
  }
  
  .buy-gerege-button .price {
    font-size: 0.4rem;
    padding: 1px 2px;
  }
}

/* Newsletter */
.newsletter h4 {
  margin-top: 2rem;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
  background-color: var(--secondary);
  color: white;
  border: none;
  padding: 0 1.25rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--secondary-light);
}

/* About section specific styles */
.about {
  background-color: white;
  padding: 3rem 0;
}

.about h1, .about h2 {
  color: var(--primary);
}

.about .subtitle {
  color: #333;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text p {
  color: #333;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #333;
  margin: 0;
}

.pillars {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
}

.pillar {
  flex: 1;
  background-color: var(--primary);
  color: white;
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.pillar:hover {
  transform: translateY(-10px);
  background-color: var(--secondary);
}

.conclusion {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 3rem auto;
  color: var(--primary);
  font-weight: 500;
}

/* FAQ section */
.faq {
  background-color: var(--bg-light);
  padding: 0rem;
}

.faq h1 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-item p {
  color: #333;
}

.contact-info,
.address-info,
.emergency-info,
.socials {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.contact-info h3,
.address-info h3,
.emergency-info h3,
.socials h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-info p,
.address-info p,
.emergency-info p {
  color: #333;
  margin: 0.5rem 0;
}

/* News section */
.news {
  background-color: white;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.news::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(52, 152, 219, 0.05);
  z-index: 0;
}

.news::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(230, 126, 34, 0.05);
  z-index: 0;
}

.news h1 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.news > p {
  text-align: center;
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.news-item {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 126, 34, 0.2);
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.news-item:hover .news-image img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.news-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-item h3 {
  color: var(--primary);
  margin: 0 0 1rem;
  font-size: 1.4rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-item:hover h3 {
  color: var(--secondary);
}

.news-item p {
  color: #666;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.news-category {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.news-read-more {
  color: var(--secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.news-read-more i {
  transition: transform 0.3s ease;
}

.news-item:hover .news-read-more {
  color: var(--primary);
}

.news-item:hover .news-read-more i {
  transform: translateX(5px);
}

/* Tips Section */
.tips {
  background-color: var(--bg-light);
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.tips h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tip-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(230, 126, 34, 0.05) 100%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 0;
}

.tip-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 126, 34, 0.2);
}

.tip-card:hover::before {
  opacity: 1;
}

.tip-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}

.tip-card:hover .tip-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.tip-icon i {
  font-size: 1.8rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.tip-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.tip-card:hover h3 {
  color: var(--secondary);
}

.tip-card p {
  color: #666;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.tip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.tip-tag {
  background: var(--bg-light);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tip-card:hover .tip-tag {
  background: var(--primary);
  color: white;
}

@media (max-width: 768px) {
  .tips-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .tip-card {
    padding: 1.5rem;
  }
  
  .tip-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.25rem;
  }
  
  .tip-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .tips h2 {
    font-size: 2rem;
  }
  
  .tip-card {
    padding: 1.25rem;
  }
  
  .tip-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 1rem;
  }
  
  .tip-icon i {
    font-size: 1.3rem;
  }
}

/* Modal improvements */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px);
  opacity: 0;
  transition: var(--transition);
}

.modal-content.active {
  transform: translateY(0);
  opacity: 1;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.close-modal:hover {
  color: var(--danger);
}

.modal h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.modal p {
  color: #333;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.required {
  color: var(--danger);
}

input, 
select, 
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  background-color: white;
  color: #333;
  font-family: inherit;
  transition: var(--transition);
}

input:focus, 
select:focus, 
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none;
}

.error {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2) !important;
}

.payment-options {
  margin-top: 1.5rem;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.payment-method {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.payment-method:hover {
  background-color: #e9ecef;
}

.payment-method input {
  width: auto;
  margin-right: 0.75rem;
}

.payment-method span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
}

.submit-btn {
  background-color: var(--secondary);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: block;
  width: 100%;
  margin-top: 2rem;
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 1.5rem;
}

/* Help Center section */
.help-center {
  background-color: white;
  padding: 5rem 0;
}

.help-center h1 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
}

.help-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.help-column {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.help-column h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.help-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary);
}

.help-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.help-list li {
  margin-bottom: 1rem;
  color: #333;
}

.help-list li strong {
  color: var(--primary);
  font-weight: 600;
}

.help-additional {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.help-additional h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.help-tips {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.help-tips li {
  background-color: var(--bg-light);
  padding: 1.25rem;
  border-radius: var(--border-radius);
  color: #333;
  position: relative;
  padding-left: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.help-tips li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--success);
  position: absolute;
  left: 1rem;
  top: 1.25rem;
}

/* Download guide section */
.download-guide {
  background-color: var(--primary-light);
  color: white;
  padding: 5rem 0;
}

.download-guide .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.guide-content {
  flex: 1;
}

.guide-content h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.guide-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.guide-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.guide-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.guide-features li i {
  color: var(--success);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: white;
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.download-btn:hover {
  background-color: var(--secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.guide-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.guide-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .download-guide .container {
    flex-direction: column;
  }
  
  .guide-image {
    order: -1;
    max-width: 500px;
    width: 100%;
  }
}

/* Enhanced Animations and Transitions */
:root {
  --transition-slow: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --shadow-3d: 0 10px 30px -5px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.07);
  --gradient-shine: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 100%);
}

/* Staggered Animations */
.benefit-card.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.benefit-card.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.benefit-card.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.benefit-card.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.benefit-card.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.benefit-card.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }
.benefit-card.animate-on-scroll:nth-child(7) { transition-delay: 0.7s; }
.benefit-card.animate-on-scroll:nth-child(8) { transition-delay: 0.8s; }

/* Enhanced Pulse Animation */
@keyframes enhanced-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), 0.7);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(var(--secondary-rgb), 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), 0);
    transform: scale(1);
  }
}

/* Floating Animation for Icons */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.feature-icon i {
  animation: float 3s ease-in-out infinite;
}

/* Glass Morphism Effects */
.fixed-utility-widgets .weather-widget,
.fixed-utility-widgets .currency-widget,
.buy-gerege-button {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Random Tourist Spot Widget */
.random-spot-widget {
  padding: 5rem 0;
  background-color: white;
}

.random-spot-widget h2 {
  text-align: center;
  color: var(--primary);
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.random-spot-widget .subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #666;
  font-size: 1.1rem;
}

.spot-widget {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition);
}

.spot-widget:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.spot-image {
  height: 100%;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.spot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.spot-widget:hover .spot-image img {
  transform: scale(1.05);
}

.spot-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.spot-header {
  margin-bottom: 1.5rem;
}

.spot-header h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.spot-distance {
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.spot-distance i {
  color: var(--secondary);
}

.spot-description {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.spot-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.spot-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--warning);
  font-size: 1.2rem;
}

.spot-rating span {
  color: var(--primary);
  font-weight: 600;
  margin-left: 0.5rem;
}

.badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.spot-actions {
  display: flex;
  gap: 1rem;
}

.btn-generate,
.btn-map {
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
  font-size: 1rem;
}

.btn-generate {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  border: none;
  flex: 2;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-map {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  flex: 1;
  text-decoration: none;
}

.btn-generate:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-map:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .spot-widget {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  
  .spot-image {
    min-height: 300px;
  }
  
  .spot-header h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .random-spot-widget h2 {
    font-size: 2.2rem;
  }
  
  .spot-header h3 {
    font-size: 1.5rem;
  }
  
  .spot-description {
    font-size: 1rem;
  }
  
  .spot-actions {
    flex-direction: column;
  }
  
  .btn-generate, .btn-map {
    width: 100%;
  }
}

/* Live Weather Widget */
.live-weather-widget {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    height: 300px;
}

.weatherwidget-io {
    width: 100% !important;
    height: 300px !important;
    overflow: hidden;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: none !important;
}

/* Additional Weather Data */
.additional-weather-data {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.current-weather-widget {
    height: 160px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.current-weather-widget .weatherwidget-io {
    height: 160px !important;
}

@media (max-width: 768px) {
    .widget-content {
        width: 95%;
        max-width: 600px;
        padding: 1.25rem 1.25rem 1.75rem;
    }
    
    .live-weather-widget {
        height: 250px;
    }
    
    .weatherwidget-io {
        height: 250px !important;
    }
    
    .current-weather-widget {
        height: 140px;
    }
    
    .current-weather-widget .weatherwidget-io {
        height: 140px !important;
    }
    
    /* Fix for currency converter layout on mobile */
    .converter-selects {
        flex-direction: column;
        gap: 1rem;
    }
    
    .converter-swap {
        margin: 0.5rem 0;
    }
    
    #swap-currencies {
        transform: rotate(90deg);
    }
    
    #swap-currencies:hover {
        transform: rotate(270deg);
    }
}

@media (max-width: 480px) {
    .widget-content {
        padding: 1rem;
        width: 92%;
    }
    
    .live-weather-widget {
        height: 230px;
    }
    
    .weatherwidget-io {
        height: 230px !important;
    }
    
    .current-weather-widget {
        height: 120px;
    }
    
    .current-weather-widget .weatherwidget-io {
        height: 120px !important;
    }
}

/* OpenWeatherMap Integration */
.additional-weather-details,
.weather-forecast-container {
    margin-top: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.weather-forecast {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.forecast-day {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.forecast-day:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.forecast-date {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.forecast-temp {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .weather-forecast {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .forecast-day {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .weather-forecast {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
} 

/* Currency Converter Enhancements */
#conversion-result {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary);
    padding: 1rem;
    border-radius: var(--border-radius);
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    text-align: center;
    transition: all 0.4s ease;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    box-shadow: var(--shadow-sm);
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.result-updated {
    animation: resultHighlight 0.5s ease;
    transform: scale(1.05);
}

@keyframes resultHighlight {
    0% {
        background: linear-gradient(145deg, #f8f9fa, #ffffff);
        box-shadow: var(--shadow-sm);
    }
    50% {
        background: linear-gradient(145deg, rgba(230, 126, 34, 0.1), rgba(230, 126, 34, 0.05));
        box-shadow: 0 8px 20px rgba(230, 126, 34, 0.15);
    }
    100% {
        background: linear-gradient(145deg, #f8f9fa, #ffffff);
        box-shadow: var(--shadow-sm);
    }
}

.converter-inputs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    max-width: 100%;
}

.converter-inputs input {
    flex: 1;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.9);
}

.converter-inputs input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2), inset 0 1px 3px rgba(0, 0, 0, 0.05);
    outline: none;
    background: #fff;
}

.converter-selects {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    max-width: 100%;
    width: 100%;
    margin-bottom: 1.25rem;
}

.converter-selects select {
    flex: 1;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.9);
    appearance: auto;
    max-width: 100%;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    color: var(--primary);
}

.converter-selects select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2), inset 0 1px 3px rgba(0, 0, 0, 0.05);
    outline: none;
    background: #fff;
}

.converter-swap {
    display: flex;
    align-items: center;
    justify-content: center;
}

#swap-currencies {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
    font-size: 0.9rem;
}

#swap-currencies:hover {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    box-shadow: 0 6px 15px rgba(230, 126, 34, 0.4);
}

.data-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.25rem;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    background: rgba(0, 0, 0, 0.02);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.data-source a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.data-source a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.last-updated {
    font-style: italic;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.refresh-button {
    background: transparent;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.03);
    width: 36px;
    height: 36px;
}

.refresh-button:hover {
    background-color: var(--secondary);
    transform: rotate(180deg);
    color: white;
    box-shadow: 0 3px 8px rgba(230, 126, 34, 0.3);
}

.refresh-button.refreshing {
    animation: rotating 1s linear infinite;
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 3px 8px rgba(230, 126, 34, 0.3);
}

.currency-converter {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.currency-converter h4 {
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.currency-converter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    border-radius: 2px;
}

@media (max-width: 768px) {
    /* Existing media query styles... */
    
    /* Enhanced mobile styles for currency converter */
    .currency-converter {
        padding: 1.25rem;
        margin-top: 1.25rem;
    }
    
    .converter-selects {
        flex-direction: column;
        gap: 1rem;
    }
    
    .converter-swap {
        margin: 0.75rem 0;
        transform: rotate(90deg);
    }
    
    #swap-currencies {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    #swap-currencies:hover {
        transform: rotate(270deg);
    }
    
    #conversion-result {
        font-size: 1.1rem;
        padding: 0.85rem;
    }
    
    .converter-inputs input,
    .converter-selects select {
        padding: 0.85rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Existing media query styles... */
    
    /* Further enhanced mobile styles for smaller screens */
    .currency-converter {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .currency-converter h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    #conversion-result {
        font-size: 1rem;
        padding: 0.75rem;
    }
}

/* Currency Details Enhancement */
.currency-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.currency-details div {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: var(--border-radius);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.currency-details div:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
}

.currency-details span:first-child {
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.currency-details span:last-child {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .currency-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .currency-details {
        grid-template-columns: 1fr;
    }
}

.rotating {
  animation: rotate360 0.5s ease;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Loading state for currency data */
.currency-rate.loading {
  animation: pulse 1.5s infinite;
  opacity: 0.7;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.7;
  }
}

/* Enhanced rotating animation */
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Add a class to body when modal is open to prevent background scrolling */
body.modal-open {
  overflow: hidden;
}

/* Always show utility buttons */
.back-to-top {
  opacity: 1 !important;
  visibility: visible !important;
}

.fixed-utility-widgets .weather-widget,
.fixed-utility-widgets .currency-widget {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.buy-gerege-button {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Add these rules at the end of the file to ensure UI elements are always visible */
.fixed-utility-widgets .weather-widget,
.fixed-utility-widgets .currency-widget,
.buy-gerege-button {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.back-to-top {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  bottom: 2rem !important;
  right: 2rem !important;
}

/* Force visibility for UI elements */
.back-to-top {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: fixed !important; /* Fixed position to follow scroll */
  bottom: 2rem !important;
  right: 2rem !important;
  z-index: 9999 !important; /* Higher z-index to ensure visibility */
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background-color: var(--secondary) !important;
  color: white !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  transition: transform 0.3s ease !important;
  transform: translateZ(0) !important; /* Force hardware acceleration */
}

.fixed-utility-widgets {
  display: flex !important;
  flex-direction: column !important;
  position: fixed !important; /* Fixed position to follow scroll */
  bottom: 7rem !important;
  right: 2rem !important;
  z-index: 9998 !important; /* Higher z-index to ensure visibility */
  gap: 0.75rem !important;
  pointer-events: auto !important; /* Ensure clicks are registered */
  transform: translateZ(0) !important; /* Force hardware acceleration */
}

.fixed-utility-widgets .weather-widget,
.fixed-utility-widgets .currency-widget {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background-color: var(--primary) !important;
  color: white !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  transition: transform 0.3s ease !important;
  pointer-events: auto !important; /* Ensure clicks are registered */
}

.buy-gerege-button {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: fixed !important; /* Fixed position to follow scroll */
  bottom: 2rem !important;
  right: 2rem !important;
  z-index: 9997 !important; /* Higher z-index to ensure visibility */
  transform: translateZ(0) !important; /* Force hardware acceleration */
  pointer-events: auto !important; /* Ensure clicks are registered */
}

/* Ensure modals appear above everything else */
.widget-modal {
  z-index: 10000 !important;
}

@media (max-width: 768px) {
    .buy-gerege-button {
        position: fixed;
        right: 25px !important; /* Increased from 20px */
        left: auto !important;
        bottom: 180px; /* Increased from 160px */
        padding: 10px 20px; /* Increased padding */
        font-size: 1.1rem; /* Increased from 0.9rem */
        transform: none;
        z-index: 10000;
    }
}

@media (max-width: 480px) {
    .buy-gerege-button {
        position: fixed;
        right: 20px !important; /* Increased from 15px */
        left: auto !important;
        bottom: 160px; /* Increased from 140px */
        padding: 8px 16px; /* Increased padding */
        font-size: 1rem; /* Increased from 0.85rem */
        transform: none;
        z-index: 10000;
    }
}

/* Image container fixes */
.news-image,
.spot-image,
.guide-image,
.about-image,
.gallery-main,
.gallery-thumbnail {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
}

.news-image img,
.spot-image img,
.guide-image img,
.about-image img,
.gallery-main img,
.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile-specific image adjustments */
@media (max-width: 768px) {
  .news-image {
    height: auto;
    aspect-ratio: 16/9;
  }

  .spot-image {
    height: auto;
    min-height: 250px;
  }

  .gallery-main {
    aspect-ratio: 16/9;
    height: auto;
  }

  .gallery-thumbnail {
    aspect-ratio: 1/1;
    height: auto;
  }

  .guide-image {
    height: auto;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .spot-image {
    min-height: 200px;
  }

  .gallery-main {
    margin: 0;
    border-radius: 12px;
  }

  .gallery-thumbnails {
    padding: 0.5rem;
  }

  .gallery-thumbnail {
    aspect-ratio: 4/3;
  }

  /* Ensure images don't overflow their containers */
  .news-item,
  .spot-widget,
  .guide-content,
  .about-content {
    overflow: hidden;
  }
}

/* Header and Navigation Styles */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    nav ul {
        gap: 1.2rem;
    }

    nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.8rem;
    }
}

.benefit-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
    padding: 2rem;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transform: translateY(0);
    text-decoration: none;
    height: 100%;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(230, 126, 34, 0.05) 100%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 0;
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  background: white;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  margin-bottom: 1.5rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 10px 20px rgba(44, 62, 80, 0.15);
  position: relative;
  overflow: hidden;
}

.benefit-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  opacity: 0;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 35px rgba(44, 62, 80, 0.2);
}

.benefit-card:hover .benefit-icon::after {
  left: 100%;
  opacity: 1;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.benefit-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: all 0.5s ease;
}

.benefit-card:hover h3 {
  color: var(--secondary);
}

.benefit-card:hover h3::after {
  width: 50px;
}

.benefit-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0;
  flex-grow: 1;
}

.benefit-card-arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.benefit-card:hover .benefit-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.benefit-card-arrow i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-card-arrow i {
  animation: arrowPulse 1.5s infinite;
}

@keyframes arrowPulse {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}

/* For specific benefit pages */
.filter-container {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.filter-button {
  background-color: var(--bg-light);
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-button:hover,
.filter-button.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.search-bar {
  position: relative;
  margin-bottom: 1rem;
}

.search-bar input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.search-bar input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(52, 73, 94, 0.2);
  outline: none;
}

.search-bar i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animated {
  animation: fadeIn 0.8s ease forwards;
}

/* Testimonials */
.testimonials {
  background-color: var(--primary);
  color: white;
  padding: 5rem 0;
}

.testimonials h2 {
  color: white;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.testimonials .subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
}

.testimonial-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.testimonial-stars {
  color: var(--warning);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  color: #333;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Section transitions */
section {
  position: relative;
  padding: 5rem 0;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  z-index: -1;
}

/* Value proposition section */
.value-summary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  padding: 4rem 0;
}

.value-summary h2 {
  color: white;
  text-align: center;
}

.value-summary .subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.value-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.value-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  width: 200px;
}

.value-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.value-item.highlight {
  background-color: var(--secondary);
  transform: scale(1.05);
}

.value-item.highlight:hover {
  transform: scale(1.05) translateY(-10px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.value-item h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.value-cta {
  background-color: white;
  color: var(--primary);
  display: block;
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
}

.value-cta:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .slide-content h1 {
    font-size: 2.8rem;
  }
  
  .value-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .value-item {
    width: 280px;
  }
}

@media (max-width: 991px) {
  .benefit-card {
    padding: 1.75rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 90px;
  }
  
  body {
    padding-top: var(--header-height);
  }
  
  header {
    padding: 1.2rem 1.5rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    overflow-y: auto;
    z-index: 100;
  }
  
  nav.active {
    transform: translateX(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
  }
  
  nav ul li {
    margin: 0 0 1.2rem 0;
    width: 100%;
  }
  
  nav ul li a {
    display: block;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.35rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.03);
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .hero-slider .slide-content {
    padding: 2rem 1rem;
    max-width: 100%;
  }
  
  .hero-slider .slide-content h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-slider .slide-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .benefit-card h3 {
    font-size: 1.1rem;
  }
  
  .fixed-utility-widgets {
    bottom: 5rem;
    right: 1rem;
  }
  
  .fixed-utility-widgets .weather-widget,
  .fixed-utility-widgets .currency-widget {
    width: 50px;
    height: 50px;
  }
  
  .buy-gerege-button {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
  
  /* Improve touch targets for mobile */
  .benefit-card,
  .faq-item,
  .nav-link,
  .btn,
  .back-to-top,
  .fixed-utility-widgets .weather-widget,
  .fixed-utility-widgets .currency-widget,
  .buy-gerege-button {
    touch-action: manipulation;
  }
  
  /* Adjust utility widgets spacing on mobile */
  .utility-widgets {
    gap: 0.5rem;
  }
  
  .weather-widget, 
  .currency-widget {
    padding: 0.3rem 0.6rem;
  }
  
  /* Ensure modals are usable on mobile */
  .widget-content {
    width: 95%;
    max-width: 600px;
    padding: 1.25rem 1.25rem 1.75rem;
  }
  
  .widget-close {
    top: 0.75rem;
    right: 0.75rem;
  }
  
  /* Improve scrolling experience */
  html {
    scroll-padding-top: calc(var(--header-height) + 20px);
  }
  
  /* Benefits section responsive */
  .benefits {
    padding: 0rem 0;
  }
  
  .benefits h1 {
    font-size: 2.2rem;
  }
  
  .benefits > p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .benefits-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .live-weather-widget {
    height: 250px;
  }
  
  .weatherwidget-io {
    height: 250px !important;
  }
  
  /* Fix for currency converter layout on mobile */
  .converter-selects {
    flex-direction: column;
    gap: 1rem;
  }
  
  .converter-swap {
    margin: 0.5rem 0;
  }
  
  #swap-currencies {
    transform: rotate(90deg);
  }
  
  #swap-currencies:hover {
    transform: rotate(270deg);
  }
}

@media (max-width: 480px) {
  .benefits-container {
    grid-template-columns: 1fr;
  }
  
  .hero-slider .slide-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-slider .slide-content p {
    font-size: 0.9rem;
  }
  
  .fixed-utility-widgets {
    bottom: 4.5rem;
    right: 0.75rem;
  }
  
  .fixed-utility-widgets .weather-widget,
  .fixed-utility-widgets .currency-widget {
    width: 45px;
    height: 45px;
  }
  
  .fixed-utility-widgets .weather-widget i,
  .fixed-utility-widgets .currency-widget i {
    font-size: 1.2rem;
  }
  
  .buy-gerege-button {
    font-size: 0.9rem;
    padding: 0.7rem 1.1rem;
    gap: 0.5rem;
  }
  
  .buy-gerege-button i {
    font-size: 1.1rem;
  }
  
  /* Touch-friendly form elements */
  input, select, button {
    min-height: 44px;
  }
  
  .widget-content {
    padding: 1rem;
    width: 92%;
  }
  
  .live-weather-widget {
    height: 230px;
  }
  
  .weatherwidget-io {
    height: 230px !important;
  }
}

/* FAQ Accordion */
.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: white;
}

.faq-item h3 {
  padding: 1.25rem;
  margin: 0;
  background-color: var(--primary-light);
  color: white;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-item.active h3::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 1.25rem;
  margin: 0;
  display: none;
}

.faq-item.active p {
  display: block;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: white;
  padding-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-logo h3 {
  color: white;
  margin-top: 1rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-social h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-links a i {
  color: var(--secondary);
  font-size: 0.8rem;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 650;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 50%;
  color: white;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(230, 126, 34, 0.2);
}

.social-icons a[aria-label="Facebook"] {
  background: linear-gradient(135deg, #1877f2, #0d6efd);
}

.social-icons a[aria-label="Instagram"] {
  background: linear-gradient(135deg, #e1306c, #833ab4);
}

.social-icons a:hover {
  transform: translateY(-3px) rotate(8deg);
  box-shadow: 0 6px 15px rgba(230, 126, 34, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
}

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

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2.5rem; /* Increased from 2rem */
  right: 2.5rem; /* Increased from 2rem */
  width: 65px; /* Increased from 55px */
  height: 65px; /* Increased from 55px */
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 99;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2); /* Increased border width */
}

.back-to-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  z-index: -1;
  transition: all 0.5s ease;
}

.back-to-top::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  animation: fadeInUp 0.5s forwards;
}

.back-to-top:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(230, 126, 34, 0.4);
}

.back-to-top:hover::before {
  transform: scale(1.1) rotate(-5deg);
}

.back-to-top:hover::after {
  left: 100%;
}

.back-to-top i {
  font-size: 1.5rem; /* Increased from 1.3rem */
  animation: floatUpDown 2s infinite;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

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

/* Fixed Utility Widgets */
.fixed-utility-widgets {
  position: fixed;
  bottom: 2rem;
  right: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
}

.fixed-utility-widgets .weather-widget,
.fixed-utility-widgets .currency-widget {
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  visibility: hidden;
  border: 2px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transform: translateY(20px);
}

.fixed-utility-widgets .weather-widget::after,
.fixed-utility-widgets .currency-widget::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: all 0.6s;
}

.fixed-utility-widgets .weather-widget.show,
.fixed-utility-widgets .currency-widget.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fixed-utility-widgets .weather-widget:hover,
.fixed-utility-widgets .currency-widget:hover {
  transform: translateY(-8px) scale(1.05);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 30px rgba(230, 126, 34, 0.3);
}

.fixed-utility-widgets .weather-widget i,
.fixed-utility-widgets .currency-widget i {
  font-size: 1.5rem;
  color: var(--secondary);
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.fixed-utility-widgets .weather-widget:hover i,
.fixed-utility-widgets .currency-widget:hover i {
  color: white;
  animation: pulse-icon 1.5s infinite;
}

@keyframes pulse-icon {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* Floating Buy Gerege Button */
.buy-gerege-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.25);
  z-index: 99;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
}

.buy-gerege-button i {
  font-size: 1.1rem;
  animation: floatUpDown 2s infinite;
  line-height: 1;
}

.buy-gerege-button .price {
  font-size: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 1px 2px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.2px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .buy-gerege-button {
    right: 1.5rem;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    padding: 6px 0;
  }
  
