/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar {
  display: none;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header styles */
.app-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(33, 150, 243, 0.1);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 8px;
}

.header-title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 400px;
}

.header-title {
  color: #2196F3;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.header-subtitle {
  color: #666;
  font-size: 0.9rem;
  margin: 0.2rem 0 0 0;
  font-weight: 500;
  opacity: 0.8;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #2196F3;
  background: rgba(33, 150, 243, 0.1);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #2196F3;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.auth-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.login-btn {
  background: transparent;
  color: #2196F3;
  border: 2px solid #2196F3;
}

.login-btn:hover {
  background: #2196F3;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.register-btn {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.register-btn:hover {
  background: linear-gradient(135deg, #1976D2, #1565C0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.install-app-btn {
  background: linear-gradient(135deg, #FF9800, #FF5722);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.install-app-btn:hover {
  background: linear-gradient(135deg, #FF5722, #E64A19);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.install-app-btn i {
  font-size: 0.8rem;
}

.install-app-btn span {
  display: inline;
}

/* Profile Dropdown Styles */
.profile-dropdown {
  position: relative;
  display: inline-block;
}

.profile-btn {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.profile-btn:hover {
  background: linear-gradient(135deg, #1976D2, #1565C0);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.profile-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(33, 150, 243, 0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

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

.profile-dropdown-header {
  padding: 15px 20px;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.profile-dropdown-header i {
  font-size: 1.1rem;
}

.profile-dropdown-item {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-dropdown-item:last-child {
  border-bottom: none;
}

.profile-dropdown-item:hover {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
}

.profile-dropdown-item i {
  width: 16px;
  text-align: center;
  font-size: 0.9rem;
}

.profile-dropdown-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 5px 0;
}

@media (max-width: 768px) {
  .install-app-btn span {
    display: none;
  }
  
  .install-app-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .profile-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .profile-dropdown-menu {
    min-width: 180px;
    right: -10px;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1000;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: auto;
}

.mobile-menu-toggle:hover {
  background: rgba(33, 150, 243, 0.1);
  transform: scale(1.05);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: #2196F3;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Install Button */
.install-btn {
  background: #2196F3;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.install-btn:hover {
  background: #1976D2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

/* Install Button Positioning */
#installBtn {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 99;
}

/* Menu Styles */
.menu-toggle {
  background: #2196F3;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.menu-toggle:hover {
  background: #1976D2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.menu-toggle i {
  font-size: 1.2rem;
}

.menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.menu-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  background: #f8f9fa;
  color: #2196F3;
  transform: translateX(5px);
}

.menu-item i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.menu-item span {
  font-weight: 500;
  font-size: 0.9rem;
}

.menu-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0.5rem 0;
}

/* Mobile Sidebar Styles */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 2000;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  display: none; /* Hidden by default, shown only on mobile */
  flex-direction: column;
  overflow-y: auto;
}

.mobile-sidebar.active {
  left: 0;
  display: flex; /* Show the sidebar when active */
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sidebar-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}

.sidebar-logo h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.sidebar-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.sidebar-nav {
  flex: 1;
  padding: 1rem 0;
}

.sidebar-section {
  margin-bottom: 2rem;
}

.sidebar-section h4 {
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 1.5rem 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  border-left: 3px solid transparent;
}

.sidebar-item:hover {
  background: #f8f9fa;
  color: #2196F3;
  border-left-color: #2196F3;
  transform: translateX(5px);
}

.sidebar-item i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.sidebar-item span {
  font-weight: 500;
  font-size: 1rem;
}

.sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  background: #f8f9fa;
}

.sidebar-footer p {
  margin: 0.25rem 0;
  color: #666;
  font-size: 0.9rem;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none; /* Hidden by default, shown only on mobile */
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
  display: block; /* Show the overlay when active */
}

/* Main content */
.app-main {
  flex: 1;
  padding: 0;
}

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

.section-title {
  text-align: center;
  color: #2196F3;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

/* 1. Notice Marquee */
.notice-marquee {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.notice-item {
  display: inline-block;
  margin-right: 3rem;
  color: #2196F3;
  font-weight: 500;
  font-size: 1rem;
}

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

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 2. Image Slider */
.image-slider {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin: 2rem 0;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 150px;
}

.slide-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.slide-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

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

.dot.active {
  background: white;
  transform: scale(1.2);
}

/* 2.5. Amenities Section */
.amenities-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  margin: 2rem 0;
}

.amenities-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.amenities-track {
  display: flex;
  animation: marquee-scroll 30s linear infinite;
  width: fit-content;
  gap: 2rem;
}

.amenity-slide {
  flex: 0 0 280px; /* Fixed width for each card */
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.amenity-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.amenity-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: bounce 2s infinite;
}

.amenity-slide h3 {
  font-size: 1.5rem;
  color: #2196F3;
  margin-bottom: 1rem;
  font-weight: 600;
}

.amenity-slide p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.amenity-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.amenity-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.amenity-dot.active {
  background: #2196F3;
  transform: scale(1.2);
}

.amenity-dot:hover {
  background: #2196F3;
  transform: scale(1.1);
}

/* 3. Features Section */
.features-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  margin: 2rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  position: relative;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #2196F3;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2196F3;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Bus Tracker Card Special Styling */
.bus-tracker-card {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: 2px solid #4CAF50;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bus-tracker-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border-color: #45a049;
}

.bus-tracker-card h3,
.bus-tracker-card p {
  color: white;
}

.bus-tracker-card .feature-icon {
  font-size: 3.5rem;
  animation: pulse 2s infinite;
}

.tracker-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #4CAF50;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: blink 1.5s infinite;
}

.e-ticket-card {
  background: linear-gradient(135deg, #FF9800, #FF5722);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

.e-ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
}

.e-ticket-card .feature-icon {
  color: white;
  font-size: 2.5rem;
}

.e-ticket-card h3 {
  color: white;
}

.e-ticket-card p {
  color: rgba(255, 255, 255, 0.9);
}

.e-ticket-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #FF9800;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

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

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.7; }
}

/* 4. Counters Section */
.counters-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  margin: 2rem 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.counter-card {
  position: relative;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  color: white;
  border: 2px solid #FF4757;
  border-radius: 15px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.counter-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 71, 87, 0.3);
  border-color: #FF3742;
}

.counter-card h3,
.counter-card p {
  color: white;
}

.counter-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

.counter-info {
  display: flex;
  gap: 0.5rem;
  margin: 0.5rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.counter-location {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.counter-hours {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.counter-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #FF4757;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: pulse 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* 4. Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin: 2rem 0;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  display: none;
  text-align: center;
  padding: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.testimonial.active {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

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

.testimonial-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.stars {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #FFD700;
}

.testimonial-content p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.6;
}

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

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

.author-info h4 {
  color: #2196F3;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

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

.testimonial-dot.active {
  background: white;
  transform: scale(1.2);
}

/* Feedback Section */
.feedback-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.feedback-section .section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feedback-container {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.feedback-form-container {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.1);
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feedback-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: #2196F3;
  background: white;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.feedback-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #6b7280;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #2196F3;
}

.feedback-submit-btn {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.feedback-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
}

.feedback-submit-btn:active {
  transform: translateY(0);
}

.feedback-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 100%;
}

.feedback-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.feedback-card:nth-child(3) {
  grid-column: 1 / -1;
}

.feedback-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feedback-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.feedback-card h3 {
  color: #1f2937;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feedback-card p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Owner Section - Redesigned */
.owner-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.owner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.owner-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.owner-header .section-title {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.owner-header .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.owner-hero {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.owner-profile-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.owner-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.owner-image-frame {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

.owner-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.owner-image-frame:hover .owner-profile-img {
  transform: scale(1.05);
}

.owner-image-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
}

.owner-quote-bubble {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 20px;
  position: relative;
  max-width: 280px;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.owner-quote-bubble::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #667eea;
}

.owner-quote-bubble i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.owner-quote-bubble p {
  font-size: 1rem;
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}

.owner-info-card {
  padding: 1rem;
}

.owner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.owner-badge i {
  font-size: 0.8rem;
}

.owner-name {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.owner-title {
  font-size: 1.3rem;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.owner-description p {
  color: #6b7280;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.owner-expertise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.expertise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
}

.expertise-item i {
  font-size: 1.5rem;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.expertise-item span {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.owner-achievements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.achievement-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.achievement-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.achievement-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.owner-social-section {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.social-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.social-intro h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.social-intro p {
  color: #6b7280;
  font-size: 1rem;
}

.owner-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-card.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
}

.social-card.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d6efd 100%);
  color: white;
}

.social-card.linkedin {
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
  color: white;
}

.social-card.instagram {
  background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
  color: white;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.social-info h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.social-info p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Footer */
.app-footer {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #2196F3;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

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

.footer-logo h3 {
  color: #2196F3;
  margin: 0;
}

.footer-description {
  color: #ccc;
  line-height: 1.6;
}

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

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2196F3;
}

.contact-info p {
  color: #ccc;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.twitter {
  background: #1da1f2;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.linkedin {
  background: #0077b5;
}

.social-icon.youtube {
  background: #ff0000;
}

.social-icon.whatsapp {
  background: #25d366;
}

.social-icon.messenger {
  background: #0084FF;
}

.social-icon.messenger:hover {
  background: #0073E6;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #ccc;
  margin: 0;
}

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

.footer-bottom-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #2196F3;
}

/* Heartbeat animation for footer heart */
.footer-bottom .heart {
  animation: heartbeat 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .app-header {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(33, 150, 243, 0.15);
  }
  
  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: 100%;
  }
  
  .header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  
  .header-title-section {
    flex: 1;
    text-align: left;
    margin: 0 0.5rem;
    min-width: 0; /* Allow text to shrink */
  }
  
  .header-title {
    font-size: 1.2rem;
    line-height: 1.1;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .header-subtitle {
    font-size: 0.7rem;
    margin: 0.1rem 0 0 0;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .header-nav {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .nav-links {
    display: none; /* Hide nav links on mobile */
  }
  
  .nav-actions {
    display: none; /* Hide auth buttons on mobile */
  }
  
  .mobile-menu-toggle {
    display: flex; /* Show mobile menu toggle */
    padding: 0.4rem;
    border-radius: 8px;
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.2);
    transition: all 0.3s ease;
  }
  
  .mobile-menu-toggle:hover {
    background: rgba(33, 150, 243, 0.15);
    transform: scale(1.05);
  }
  
  .logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: transform 0.3s ease;
  }
  
  .header-logo:hover .logo-img {
    transform: scale(1.1);
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .image-slider {
    height: 300px;
  }
  
  .slide-content h2 {
    font-size: 1.5rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .counters-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .counter-card {
    padding: 1.5rem;
  }
  
  .testimonial-content {
    padding: 2rem;
  }
  
  .testimonial-content p {
    font-size: 1.1rem;
  }
  
  .notice-item {
    font-size: 0.9rem;
    margin-right: 2rem;
  }
  
  .amenities-slider {
    max-width: 100%;
  }
  
  .amenities-track {
    gap: 1.5rem;
  }
  
  .amenity-slide {
    flex: 0 0 240px; /* Smaller fixed width for tablets */
    padding: 1.5rem 0.5rem;
    min-height: 160px;
  }
  
  .amenity-icon {
    font-size: 2.5rem;
  }
  
  .amenity-slide h3 {
    font-size: 1.2rem;
  }
  
  .amenity-slide p {
    font-size: 0.9rem;
  }
  
  .feedback-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .feedback-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feedback-card:nth-child(3) {
    grid-column: 1;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .feedback-form-container {
    padding: 1rem;
  }
  
  .feedback-form {
    gap: 0.75rem;
  }
  
  .feedback-form input,
  .feedback-form select,
  .feedback-form textarea {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .feedback-submit-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .feedback-card {
    padding: 0.75rem;
  }
  
  .feedback-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .feedback-card h3 {
    font-size: 1rem;
  }
  
  .feedback-card p {
    font-size: 0.85rem;
  }
  
    .owner-section {
    padding: 2rem 0;
  }
  .owner-header .section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .owner-header .section-subtitle {
    font-size: 1rem;
  }
  .owner-profile-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  .owner-image-frame {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
  }
  .owner-image-badge {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .owner-quote-bubble {
    padding: 1rem;
    max-width: 220px;
    font-size: 0.9rem;
  }
  .owner-quote-bubble i {
    font-size: 1.2rem;
  }
  .owner-quote-bubble p {
    font-size: 0.9rem;
  }
  .owner-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  .owner-name {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }
  .owner-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .owner-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .owner-expertise {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .expertise-item {
    padding: 0.8rem;
  }
  .expertise-item i {
    font-size: 1.2rem;
  }
  .expertise-item span {
    font-size: 0.8rem;
  }
  .owner-achievements {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .achievement-card {
    padding: 1.5rem 1rem;
  }
  .achievement-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .achievement-number {
    font-size: 1.8rem;
  }
  .achievement-label {
    font-size: 0.8rem;
  }
  .owner-social-section {
    padding: 2rem;
  }
  .social-intro h4 {
    font-size: 1.5rem;
  }
  .social-intro p {
    font-size: 0.9rem;
  }
  .owner-social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .social-card {
    padding: 1.5rem 0.8rem;
  }
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .social-info h5 {
    font-size: 1rem;
  }
  .social-info p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .app-header {
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.99) 100%);
    backdrop-filter: blur(20px);
  }
  
  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  
  .header-logo {
    flex-shrink: 0;
  }
  
  .header-title-section {
    flex: 1;
    margin: 0 0.25rem;
  }
  
  .header-title {
    font-size: 1rem;
    line-height: 1.1;
  }
  
  .header-subtitle {
    font-size: 0.65rem;
    margin: 0.05rem 0 0 0;
  }
  
  .header-nav {
    flex-shrink: 0;
  }
  
  .nav-links {
    display: none; /* Hide nav links on mobile */
  }
  
  .nav-actions {
    display: none; /* Hide auth buttons on mobile */
  }
  
  .mobile-menu-toggle {
    display: flex; /* Show mobile menu toggle */
    padding: 0.35rem;
    border-radius: 6px;
  }
  
  .logo-img {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    transition: transform 0.3s ease;
  }
  
  .header-logo:hover .logo-img {
    transform: scale(1.1);
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .image-slider {
    height: 250px;
  }
  
  .slide-content {
    padding: 1.5rem;
  }
  
  .slide-content h2 {
    font-size: 1.3rem;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
  
  .testimonial-content {
    padding: 1.5rem;
  }
  
  .testimonial-content p {
    font-size: 1rem;
  }
  
  .notice-item {
    font-size: 0.8rem;
    margin-right: 1.5rem;
  }
  
  .bus-tracker-card .feature-icon {
    font-size: 3rem;
  }
  
  .tracker-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
  
  .counter-card .feature-icon {
    font-size: 3rem;
  }
  
  .counter-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
  
  .amenities-track {
    gap: 1rem;
  }
  
  .amenity-slide {
    flex: 0 0 200px; /* Even smaller fixed width for mobile */
    padding: 1rem 0.25rem;
    min-height: 120px;
  }
  
  .amenity-icon {
    font-size: 2rem;
  }
  
  .amenity-slide h3 {
    font-size: 1.1rem;
  }
  
  .amenity-slide p {
    font-size: 0.8rem;
  }
  
  /* Footer responsive */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .menu-item {
    padding: 0.8rem;
    gap: 0.8rem;
  }
  
  .menu-item i {
    font-size: 1.1rem;
    width: 20px;
  }
  
  .menu-item span {
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  /* Mobile sidebar optimizations for very small screens */
  .mobile-sidebar {
    width: 280px;
  }
  
  .sidebar-header {
    padding: 1rem;
  }
  
  .sidebar-logo h3 {
    font-size: 1rem;
  }
  
  .sidebar-item {
    padding: 0.8rem 1rem;
  }
  
  .sidebar-item i {
    font-size: 1.1rem;
    width: 20px;
  }
  
  .sidebar-item span {
    font-size: 0.9rem;
  }

  /* Owner section mobile optimizations */
  .owner-section {
    padding: 1.5rem 0;
  }
  .owner-header .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }
  .owner-header .section-subtitle {
    font-size: 0.9rem;
  }
  .owner-profile-card {
    padding: 1rem;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .owner-image-frame {
    width: 100px;
    height: 100px;
    margin-bottom: 0.8rem;
  }
  .owner-image-badge {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  .owner-quote-bubble {
    padding: 0.8rem;
    max-width: 180px;
    font-size: 0.8rem;
  }
  .owner-quote-bubble i {
    font-size: 1rem;
  }
  .owner-quote-bubble p {
    font-size: 0.8rem;
  }
  .owner-badge {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }
  .owner-name {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
  }
  .owner-title {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  .owner-description p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  .owner-expertise {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-bottom: 1rem;
  }
  .expertise-item {
    padding: 0.6rem;
  }
  .expertise-item i {
    font-size: 1rem;
  }
  .expertise-item span {
    font-size: 0.75rem;
  }
  .owner-achievements {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .achievement-card {
    padding: 1rem 0.8rem;
  }
  .achievement-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  .achievement-number {
    font-size: 1.5rem;
  }
  .achievement-label {
    font-size: 0.75rem;
  }
  .owner-social-section {
    padding: 1.5rem;
  }
  .social-intro h4 {
    font-size: 1.3rem;
  }
  .social-intro p {
    font-size: 0.8rem;
  }
  .owner-social-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .social-card {
    padding: 1rem 0.6rem;
  }
  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .social-info h5 {
    font-size: 0.9rem;
  }
  .social-info p {
    font-size: 0.75rem;
  }
}

/* PWA specific styles */
@media (display-mode: standalone) {
  .app-header {
    padding-top: calc(1rem + env(safe-area-inset-top));
  }
  
  .app-footer {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }
}

/* Loading animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
  }
  
  .notice-marquee,
  .features-section,
  .app-header,
  .app-footer {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  
  .feature-card,
  .testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  
  .feature-card h3,
  .app-header h1,
  .section-title,
  .author-info h4 {
    color: #64B5F6;
  }
  
  .feature-card p,
  .testimonial-content p,
  .author-info span {
    color: #ccc;
  }
  
  .notice-item {
    color: #64B5F6;
  }
}

/* Authentication Modals */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.auth-modal.active {
  opacity: 1;
  visibility: visible;
}

.auth-modal-content {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
}

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

.auth-modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-modal-header h2 {
  color: #2196F3;
  margin-bottom: 0.5rem;
}

.auth-modal-header p {
  color: #666;
  font-size: 0.9rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.form-group input {
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #2196F3;
}

.form-group input.error {
  border-color: #f44336;
}

.error-message {
  color: #f44336;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.auth-submit-btn {
  background: #2196F3;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.auth-submit-btn:hover {
  background: #1976D2;
  transform: translateY(-2px);
}

.auth-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.auth-modal-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.auth-modal-footer p {
  color: #666;
  margin-bottom: 1rem;
}

.auth-toggle-btn {
  background: none;
  border: none;
  color: #2196F3;
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
}

.auth-toggle-btn:hover {
  color: #1976D2;
}

.close-modal-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.close-modal-btn:hover {
  color: #f44336;
}

/* Social Login Buttons */
.social-login {
  margin-top: 1rem;
}

.social-login-btn {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.social-login-btn:hover {
  background: #f5f5f5;
  border-color: #2196F3;
}

.social-login-btn.google {
  color: #db4437;
}

.social-login-btn.facebook {
  color: #1877f2;
}

.social-login-btn.apple {
  color: #000;
}

/* Responsive adjustments for auth modals */
@media (max-width: 480px) {
  .auth-modal-content {
    padding: 1.5rem;
    width: 95%;
  }
  
  .auth-modal-header h2 {
    font-size: 1.5rem;
  }
  
  .form-group input {
    padding: 0.6rem;
  }
}

/* User Info Styles */
.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-email {
  color: #2196F3;
  font-weight: 500;
  font-size: 0.9rem;
}

.logout-btn {
  background: #f44336 !important;
  color: white !important;
  border: none !important;
}

.logout-btn:hover {
  background: #d32f2f !important;
  transform: translateY(-2px);
} 

/* Bus Tracker Modal Styles */
.bus-tracker-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bus-tracker-modal.active {
  opacity: 1;
  visibility: visible;
}

.bus-tracker-modal-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 95%;
  max-width: 1200px;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.bus-tracker-modal.active .bus-tracker-modal-content {
  transform: scale(1);
}

.modal-header {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px 20px 0 0;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.modal-body {
  padding: 0;
  max-height: calc(90vh - 80px);
  overflow: hidden;
}

.bus-tracker-iframe-container {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  position: relative;
  background: #f5f5f5;
}

.bus-tracker-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
}

.modal-actions {
  padding: 1.5rem 2rem;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.action-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.action-btn.primary {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
}

.action-btn.primary:hover {
  background: linear-gradient(135deg, #1976D2, #1565C0);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.action-btn.secondary {
  background: #6c757d;
  color: white;
}

.action-btn.secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.action-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.action-btn.whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Schedule Modal Styles */
.schedule-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
}

.schedule-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.schedule-details h3 {
  margin: 0 0 0.5rem 0;
  color: #333;
  font-size: 1.2rem;
}

.time-range {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2196F3;
  margin: 0.25rem 0;
}

.time-note {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.current-time-info {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border: 2px solid #e9ecef;
}

.current-time-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.status-closed {
  color: #dc3545;
  font-weight: 600;
}

.next-opening {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.next-opening h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.next-opening p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive Bus Tracker Modal */
@media (max-width: 768px) {
  .bus-tracker-modal-content {
    width: 95%;
    margin: 1rem;
    max-height: 95vh;
  }
  
  .modal-header {
    padding: 1rem 1.5rem;
  }
  
  .modal-header h2 {
    font-size: 1.3rem;
  }
  
  .bus-tracker-iframe-container {
    height: 60vh;
    min-height: 400px;
  }
  
  .modal-actions {
    padding: 1rem 1.5rem;
    flex-direction: column;
  }
  
  .action-btn {
    width: 100%;
    justify-content: center;
  }
  
  .schedule-info {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .schedule-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .bus-tracker-modal-content {
    width: 98%;
    margin: 0.5rem;
    border-radius: 15px;
  }
  
  .modal-header {
    padding: 0.75rem 1rem;
    border-radius: 15px 15px 0 0;
  }
  
  .modal-header h2 {
    font-size: 1.1rem;
  }
  
  .close-btn {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .bus-tracker-iframe-container {
    height: 50vh;
    min-height: 300px;
  }
  
  .modal-actions {
    padding: 0.75rem 1rem;
  }
  
  .action-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* E-Ticket Modal Styles */
.e-ticket-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.e-ticket-modal.active {
  opacity: 1;
  visibility: visible;
}

.e-ticket-modal-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 95%;
  max-width: 600px;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.e-ticket-modal.active .e-ticket-modal-content {
  transform: scale(1);
}

.e-ticket-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.e-ticket-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.e-ticket-form label {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.e-ticket-form input,
.e-ticket-form select {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.e-ticket-form input:focus,
.e-ticket-form select:focus {
  outline: none;
  border-color: #FF9800;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.price-display {
  background: linear-gradient(135deg, #FF9800, #FF5722);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  margin: 1rem 0;
}

.price-display h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.price-display span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.e-ticket-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.e-ticket-actions .action-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.e-ticket-actions .action-btn.primary {
  background: linear-gradient(135deg, #FF9800, #FF5722);
  color: white;
}

.e-ticket-actions .action-btn.primary:hover {
  background: linear-gradient(135deg, #FF5722, #E64A19);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.e-ticket-actions .action-btn.secondary {
  background: #6c757d;
  color: white;
}

.e-ticket-actions .action-btn.secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

/* Responsive E-Ticket Modal */
@media (max-width: 768px) {
  .e-ticket-modal-content {
    width: 95%;
    margin: 1rem;
    max-height: 95vh;
  }
  
  .e-ticket-form {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .e-ticket-actions {
    flex-direction: column;
  }
  
  .e-ticket-actions .action-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .e-ticket-modal-content {
    width: 98%;
    margin: 0.5rem;
    border-radius: 15px;
  }
  
  .e-ticket-form {
    padding: 1rem;
  }
  
  .price-display {
    padding: 1rem;
  }
  
  .price-display h3 {
    font-size: 1.1rem;
  }
  
  .price-display span {
    font-size: 1.3rem;
  }
}

/* Install Prompt Styles */
.install-prompt {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(33, 150, 243, 0.1);
  animation: slideInUp 0.3s ease-out;
  overflow: hidden;
}

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

.install-prompt-content {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.install-prompt-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.install-prompt-text {
  flex: 1;
  min-width: 0;
}

.install-prompt-text h3 {
  color: #2196F3;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.install-prompt-text p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.install-prompt-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.install-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.install-btn.primary {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
}

.install-btn.primary:hover {
  background: linear-gradient(135deg, #1976D2, #1565C0);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.install-btn.secondary {
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
}

.install-btn.secondary:hover {
  background: #f5f5f5;
  color: #333;
}

/* Install Success Modal */
#installSuccessModal .modal-content {
  max-width: 400px;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: #4CAF50;
  margin-bottom: 20px;
}

.success-icon i {
  animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Install Prompt */
@media (max-width: 768px) {
  .install-prompt {
    bottom: 15px;
    right: 15px;
    left: 15px;
    max-width: none;
  }
  
  .install-prompt-content {
    padding: 15px;
    gap: 12px;
  }
  
  .install-prompt-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .install-prompt-text h3 {
    font-size: 1rem;
  }
  
  .install-prompt-text p {
    font-size: 0.85rem;
  }
  
  .install-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .install-prompt {
    bottom: 10px;
    right: 10px;
    left: 10px;
  }
  
  .install-prompt-content {
    padding: 12px;
    gap: 10px;
  }
  
  .install-prompt-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .install-prompt-text h3 {
    font-size: 0.95rem;
  }
  
  .install-prompt-text p {
    font-size: 0.8rem;
  }
  
  .install-btn {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
} 