/* ===== CSS VARIABLES ===== */
:root {
  --primary-color: #3b82f6;
  --primary-dark: #2563eb;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --bg-color: #ffffff;
  --bg-secondary: #f9fafb;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --border-radius: 0.5rem;
  --transition: all 0.3s ease;
}

/* Dark mode variables */
[data-theme="dark"] {
  --text-color: #f9fafb;
  --text-light: #d1d5db;
  --bg-color: #111827;
  --bg-secondary: #1f2937;
  --border-color: #374151;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
}

/* Dark mode specific hero background */
[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero__shape--1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #10b981, #059669);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero__shape--2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.hero__shape--3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  top: 60%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--hero-padding-desktop);
}

.hero__content {
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero__badge i,
.hero__badge {
  font-size: 1rem;
}

.hero__badge > * {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.hero__title-highlight {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero__features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 500;
}

.hero__feature i,
.hero__feature > *:first-child {
  color: #10b981;
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
}

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

.hero__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.hero__button--primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.hero__button--primary:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.hero__button--secondary {
  background: transparent;
  color: var(--text-color);
  border-color: var(--border-color);
}

.hero__button--secondary:hover {
  background: var(--bg-secondary);
  border-color: #10b981;
  color: #059669;
  transform: translateY(-2px);
}

/* Hero Visual Elements */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__main-visual {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero__main-visual i,
.hero__main-visual {
  font-size: 4rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 25px 80px rgba(16, 185, 129, 0.5);
    transform: scale(1.05);
  }
}

.hero__floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-pill {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float-around 8s ease-in-out infinite;
}

.floating-pill i,
.floating-pill {
  font-size: 1.5rem;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-pill--1 {
  top: 10%;
  right: 20%;
  animation-delay: 0s;
}

.floating-pill--2 {
  bottom: 15%;
  left: 10%;
  animation-delay: 2.5s;
}

.floating-pill--3 {
  top: 50%;
  right: 5%;
  animation-delay: 5s;
}

@keyframes float-around {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) translateX(10px) rotate(90deg);
  }
  50% {
    transform: translateY(-10px) translateX(-5px) rotate(180deg);
  }
  75% {
    transform: translateY(5px) translateX(-10px) rotate(270deg);
  }
}

/* Hero Responsive Design */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero__title {
    font-size: 3rem;
  }
  
  .hero__features {
    justify-content: center;
  }
  
  .hero__image-container {
    width: 300px;
    height: 300px;
  }
  
  .hero__main-visual {
    width: 150px;
    height: 150px;
  }
  
  .hero__main-visual i {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.1rem;
  }
  
  .hero__features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero__image-container {
    width: 250px;
    height: 250px;
  }
  
  .floating-pill {
    width: 50px;
    height: 50px;
  }
  
  .floating-pill i {
    font-size: 1.2rem;
  }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--nav-padding-desktop);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1f2937;
  text-decoration: none;
}

.nav__logo-img {
  width: 32px;
  height: 32px;
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav__link {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover {
  color: #10b981;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #10b981;
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

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

.theme-toggle {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #4b5563;
  font-size: 1.2rem;
  line-height: 1;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.theme-toggle:hover {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.theme-toggle i {
  font-size: 1.1rem;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* Ensure Font Awesome icons are visible */
.theme-toggle .fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: inherit;
}

/* Theme toggle uses Font Awesome icons */



.nav__close {
  display: none;
  cursor: pointer;
  color: #4b5563;
  transition: color 0.3s ease;
}

.nav__close:hover {
  color: #10b981;
}

/* Mobile Navigation Toggle */
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  transition: all 0.3s ease;
}

.nav__toggle:hover {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.nav__toggle i {
  font-size: 1.2rem;
}

/* Header Responsive - Mobile Menu */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }
  
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 100;
  }
  
  .nav__menu.show-menu {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 2rem;
  }
  
  .nav__link {
    font-size: 1.25rem;
  }
  
  .nav__close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4b5563;
  }
}

/* Dark mode header */
[data-theme="dark"] .header {
  background: rgba(17, 24, 39, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .nav__logo {
  color: #f9fafb;
  text-decoration: none;
}

[data-theme="dark"] .nav__logo:hover {
  color: #f9fafb;
  text-decoration: none;
  opacity: 0.8;
}

[data-theme="dark"] .nav__link {
  color: #d1d5db;
}

[data-theme="dark"] .nav__link:hover {
  color: #10b981;
}

[data-theme="dark"] .theme-toggle {
  color: #d1d5db;
}

[data-theme="dark"] .nav__menu {
  background: #1f2937;
}

[data-theme="dark"] .nav__close {
  color: #d1d5db;
}

[data-theme="dark"] .nav__toggle {
  color: #d1d5db;
}

[data-theme="dark"] .nav__toggle:hover {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}



/* ===== BASE ===== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-color);
  font-weight: 600;
  line-height: 1.2;
}

ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding-desktop);
  box-sizing: border-box;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding: var(--section-padding-desktop);
}

.section__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-light);
  font-size: 1.125rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  z-index: 100;
  transition: var(--transition);
}

.nav {
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  font-size: 1.25rem;
}

.nav__logo-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  display: inline-block;
}

.nav__logo-img {
  width: 2rem;
  height: 2rem;
}

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-weight: 500;
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--primary-color);
}

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

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-color);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.theme-toggle:hover {
  background-color: var(--bg-secondary);
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.25rem;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero__button {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.hero__image {
  position: relative;
}

.hero__img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

/* ===== FEATURES SECTION ===== */
.features__container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature__card {
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.feature__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
  width: 100%;
}

.feature__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.feature__description {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== CITIES SECTION ===== */
.cities {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

[data-theme="light"] .cities {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%);
}

.cities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cities .container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
}

.cities .section__title {
  color: #1f2937;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}

.cities .section__subtitle {
  color: #4b5563;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.cities__search {
  position: relative;
  max-width: 500px;
  margin: 0 auto 4rem;
}

.cities__search-input {
  width: 100%;
  padding: 1.25rem 1.5rem 1.25rem 3.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  color: white;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cities__search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.cities__search-input:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.8);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

.cities__search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
}

/* Map Layout */
.cities__map-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

/* Map Container */
.cities__map-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.map__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.map__title {
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.map__legend {
  display: flex;
  gap: 1.5rem;
}

.legend__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
}

.legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}

.legend__dot--available {
  background: #10b981;
  color: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.legend__dot--coming-soon {
  background: #f59e0b;
  color: #f59e0b;
}

/* Interactive Map */
.interactive-map {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.3);
}

.map__region {
  position: relative;
  width: 100%;
  height: 100%;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><path d="M80 50 L120 45 L160 55 L200 50 L240 60 L280 55 L320 65 L350 80 L360 120 L350 160 L340 200 L320 240 L280 250 L240 245 L200 250 L160 245 L120 240 L80 230 L50 200 L40 160 L45 120 L60 80 Z" fill="%234b5563" stroke="%236b7280" stroke-width="2" opacity="0.8"/><text x="200" y="150" text-anchor="middle" fill="%239ca3af" font-size="14" font-weight="bold">NRW</text></svg>') center/80% no-repeat,
    radial-gradient(circle at 30% 30%, rgba(99, 179, 237, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(129, 140, 248, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #374151 0%, #4b5563 50%, #6b7280 100%);
  background-size: 80% 80%, 100% 100%, 100% 100%, 100% 100%;
}

.map__tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.map__tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

/* Cities Pills Container */
.cities__pills-container {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cities__pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.city__pill {
  background: linear-gradient(135deg, #10b981, #059669);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(16, 185, 129, 0.8);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  /* Centrado perfecto del contenido */
  display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center; /* Centrado vertical */
}

.city__pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.city__pill:hover {
  background: linear-gradient(135deg, #34d399, #10b981);
  border-color: rgba(52, 211, 153, 0.9);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 30px rgba(52, 211, 153, 0.4);
  color: white;
}

.city__pill:hover::before {
  left: 100%;
}

.city__pill.active {
  background: linear-gradient(135deg, #059669, #047857);
  border-color: #059669;
  color: white;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

.city__pill.featured {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-color: #f59e0b;
  color: white;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

/* Eliminada la estrella automática para que solo aparezca la controlada por el administrador */
.city__pill.featured::after {
  content: '';
}

/* City Stats */
.cities__stats {
  display: flex;
  justify-content: space-around;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat__item {
  text-align: center;
}

.stat__number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #1f2937;
}

.stat__label {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Map Dots */
.map__dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 currentColor;
  animation: pulse 2s infinite;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.map__dot.available {
  background: #10b981;
  color: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.map__dot.coming-soon {
  background: #fbbf24;
  color: #fbbf24;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.map__dot:hover {
  transform: scale(1.8);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.15);
}

/* City Labels on Map */
.city__label {
  position: absolute;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  transform: translate(-50%, -100%);
  margin-top: -8px;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.map__dot:hover + .city__label,
.city__label.show {
  opacity: 1;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 currentColor;
  }
  70% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

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

/* Ensure city pills are visible */
.city__pill {
  opacity: 1 !important;
  display: inline-block !important;
  visibility: visible !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cities__map-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cities .section__title {
    font-size: 2.5rem;
  }
  
  .interactive-map {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .cities {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .cities .section__title {
    font-size: 2rem;
  }
  
  .cities__map-container,
  .cities__pills-container {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .interactive-map {
    height: 250px;
  }
  
  .city__pill {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

.city__card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

[data-theme="dark"] .city__card {
  background: linear-gradient(145deg, rgba(31, 41, 55, 0.95), rgba(31, 41, 55, 0.8));
  border: 1px solid rgba(75, 85, 99, 0.3);
}

.city__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
  border-radius: 20px;
}

.city__card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.city__card:hover::before {
  opacity: 0.05;
}

.city__image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gradient);
}

.city__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9) contrast(1.1);
}

.city__card:hover .city__image {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.2);
}

.city__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(16, 185, 129, 0.3));
  opacity: 0;
  transition: var(--transition);
}

.city__card:hover .city__overlay {
  opacity: 1;
}

.city__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .city__badge {
  background: rgba(31, 41, 55, 0.9);
  color: var(--primary-color);
}

.city__content {
  padding: 2rem;
  position: relative;
}

.city__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.city__description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.city__stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.city__stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.city__stat-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary-color);
}

.city__delivery-badge {
  background: linear-gradient(135deg, var(--secondary-color), #059669);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.cities__grid-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0.5rem;
}

.grid-toggle-btn {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  background: var(--bg-color);
  color: var(--text-color);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
  font-weight: 500;
}

.grid-toggle-btn.active {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}

.grid-toggle-btn:hover:not(.active) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Grid variations */
.cities__container.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.cities__container.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.cities__container.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Search suggestions */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
  margin-top: 0.5rem;
  overflow: hidden;
  animation: slideDown 0.3s ease;
}

[data-theme="dark"] .search-suggestions {
  background: rgba(31, 41, 55, 0.95);
  border: 1px solid rgba(75, 85, 99, 0.3);
}

.suggestion-item {
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 500;
  color: var(--text-color);
}

[data-theme="dark"] .suggestion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.suggestion-item:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

/* No results message */
.no-results-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

[data-theme="dark"] .no-results-message {
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid rgba(75, 85, 99, 0.3);
}

.no-results-content {
  max-width: 400px;
  margin: 0 auto;
}

.no-results-icon {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.no-results-message h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.no-results-message p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cityCardHover {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.01);
  }
  100% {
    transform: translateY(-10px) scale(1.02);
  }
}

/* Enhanced mobile responsiveness for cities */
@media screen and (max-width: 768px) {
  .cities__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cities__container.grid-2,
  .cities__container.grid-3,
  .cities__container.grid-4 {
    grid-template-columns: 1fr;
  }
  
  .cities__grid-toggle {
    display: none;
  }
  
  .city__card {
    margin: 0 auto;
    max-width: 400px;
  }
  
  .cities__search {
    margin-bottom: 2rem;
  }
  
  .cities__search-input {
    font-size: 1rem;
    padding: 1rem 1.25rem 1rem 3rem;
  }
}

@media screen and (max-width: 480px) {
  .city__content {
    padding: 1.5rem;
  }
  
  .city__name {
    font-size: 1.25rem;
  }
  
  .city__description {
    font-size: 0.9rem;
  }
  
  .city__stats {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .city__delivery-badge {
    align-self: flex-end;
  }
}

/* ===== OPENING HOURS SECTION ===== */
.hours__container {
  max-width: 600px;
  margin: 0 auto;
}

.hours__table {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.hours__row:last-child {
  border-bottom: none;
}

.hours__day {
  font-weight: 500;
  color: var(--text-color);
}

.hours__time {
  color: var(--text-light);
}

.hours__status {
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.hours__status--open {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--secondary-color);
}

.hours__status--closed {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: var(--bg-secondary);
}

.contact__container {
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__data {
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact__item:last-child {
  margin-bottom: 0;
}

.contact__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__text {
  color: var(--text-color);
}

.contact__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.contact__social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--bg-secondary);
  color: var(--text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.contact__social-link:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-2px);
}

.contact__form {
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

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

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

.contact__form-input,
.contact__form-textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: var(--transition);
}

.contact__form-input:focus,
.contact__form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form-button {
  width: 100%;
  justify-content: center;
  font-size: 1.125rem;
  padding: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--text-color);
  color: var(--bg-color);
  padding: 3rem 0 1rem;
}

.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: inherit;
}

.footer__logo-img {
  width: 2rem;
  height: 2rem;
}

.footer__company-name-logo {
  max-height: 2rem;
  width: auto;
  margin-left: 0.5rem;
  object-fit: contain;
}

.footer__description {
  color: var(--text-light);
  line-height: 1.6;
}

.footer__title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--bg-color);
}

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

.footer__link {
  color: var(--text-light);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--primary-color);
}

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

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copy {
  color: var(--text-light);
}

/* ===== LOADING & MESSAGES ===== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loading.show {
  display: flex;
}

.loading__spinner {
  width: 3rem;
  height: 3rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.message {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  z-index: 1000;
  display: none;
  transform: translateX(100%);
  transition: var(--transition);
  max-width: 400px;
}

.message.show {
  display: block;
  transform: translateX(0);
}

.message.success {
  border-left: 4px solid var(--secondary-color);
}

.message.error {
  border-left: 4px solid #ef4444;
}

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

.message__icon {
  font-size: 1.25rem;
}

.message.success .message__icon {
  color: var(--secondary-color);
}

.message.error .message__icon {
  color: #ef4444;
}

.message__text {
  color: var(--text-color);
  font-weight: 500;
}

.message__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    padding: 6rem 2rem 2rem;
    transition: var(--transition);
    z-index: 100;
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
  }

  .nav__link {
    font-size: 1.25rem;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
  }

  .nav__toggle {
    display: block;
  }

  .section__title {
    font-size: 2rem;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .contact__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .message {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .section {
    padding: 3rem 0 1rem;
  }

  .hero {
    padding: 6rem 0 2rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .cities__container,
  .features__container {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== OPENING HOURS SECTION ===== */
.hours {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

.hours::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
  z-index: 1;
}

.hours .container {
  position: relative;
  z-index: 2;
}

.hours .section__title {
  color: #ffffff !important;
  text-shadow: 
    0 3px 6px rgba(0, 0, 0, 0.9),
    0 1px 0 rgba(0, 0, 0, 1);
  font-weight: 900 !important;
  letter-spacing: 1.5px;
  font-size: 3.2rem !important;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  filter: contrast(1.2) brightness(1.1);
}

.hours .section__subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hours__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Display Layout */
.hours__main-display {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: center;
}

/* Clock Container */
.hours__clock-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hours__clock {
  width: 200px;
  height: 200px;
  position: relative;
}

.clock__face {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.8),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock__numbers {
  position: absolute;
  width: 100%;
  height: 100%;
}

.clock__number {
  position: absolute;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  transform: rotate(calc(var(--i) * 30deg)) translateY(-70px) rotate(calc(var(--i) * -30deg));
  top: 50%;
  left: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
}

.clock__hand {
  position: absolute;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 10px;
  transform-origin: bottom center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.clock__hand--hour {
  width: 4px;
  height: 50px;
  top: calc(50% - 50px);
  left: calc(50% - 2px);
  transform: rotate(240deg); /* Will be updated by JavaScript */
  transition: transform 0.5s ease;
  z-index: 5;
}

.clock__hand--minute {
  width: 2px;
  height: 70px;
  top: calc(50% - 70px);
  left: calc(50% - 1px);
  transform: rotate(0deg); /* Will be updated by JavaScript */
  transition: transform 0.5s ease;
  z-index: 6;
}

.clock__center {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Clock hands are now controlled by JavaScript for real-time Berlin timezone */

/* Status Indicator */
.hours__status-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.status__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
}

.status__dot--active {
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
  animation: pulse 2s infinite;
}

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

.status__text {
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Schedule Section */
.hours__schedule {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 2rem;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.schedule__header {
  margin-bottom: 2rem;
}

.schedule__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.schedule__title i {
  color: #fbbf24;
  font-size: 1.5rem;
}

.schedule__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.schedule__time-block {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.schedule__time-block:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.schedule__time-block--closed {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.3);
}

.time-block__label {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.time__start, .time__end {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  font-family: 'Courier New', monospace;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.time__separator {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.separator__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.separator__dots {
  display: flex;
  gap: 0.25rem;
}

.separator__dots span {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: dotPulse 1.5s infinite;
}

.separator__dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.separator__dots span:nth-child(3) {
  animation-delay: 0.4s;
}

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

.time-block__time--closed {
  justify-content: space-between;
}

.time__closed {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fca5a5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.time-block__duration {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* Features Section */
.hours__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature__card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature__card:hover::before {
  opacity: 1;
}

.feature__icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.feature__icon i {
  font-size: 1.75rem;
  color: #fbbf24;
}

.feature__content {
  position: relative;
  z-index: 2;
}

.feature__content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature__content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
}

.feature__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 1.5rem 1.5rem 0 0;
}

.feature__card--delivery .feature__accent {
  background: linear-gradient(90deg, #10b981, #059669);
}

.feature__card--emergency .feature__accent {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.feature__card--reliability .feature__accent {
  background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hours__main-display {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hours__clock {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .hours {
    padding: 4rem 0;
  }
  
  .hours__main-display {
    gap: 2rem;
  }
  
  .hours__clock {
    width: 150px;
    height: 150px;
  }
  
  .clock__hand--hour {
    height: 40px;
    top: calc(50% - 40px);
    left: calc(50% - 2px);
  }
  
  .clock__hand--minute {
    height: 55px;
    top: calc(50% - 55px);
    left: calc(50% - 1px);
  }
  
  .schedule__title {
    font-size: 1.5rem;
  }
  
  .time__start, .time__end {
    font-size: 1.25rem;
  }
  
  .hours__features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hours {
    padding: 3rem 0;
  }
  
  .hours__schedule {
    padding: 2rem;
  }
  
  .feature__card {
    padding: 1.5rem;
  }
  
  .time-block__time {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .time__separator {
    width: 100%;
    justify-content: center;
  }
}
