/* ===== GLASS MORPHISM STYLES ===== */

/* Reset și variabile CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Culori principale */
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --accent-color: #9748ff;
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --black: #000000;

  /* Culori glass morphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);

  /* Gradiente */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-hero: linear-gradient(135deg,
      #667eea 0%,
      #764ba2 50%,
      #f093fb 100%);

  /* Fonturi ==== display=Titlu ==== primary=Paragraf */
  --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-primary: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  /* Spacing ==== section-padding=Padding pentru secțiuni ==== container-padding=Padding pentru container ==== border-radius=Border radius pentru carduri ==== border-radius-small=Border radius pentru butoane */
  --section-padding: 50px 0;
  --container-padding: 0 20px;
  --border-radius: 20px;
  --border-radius-small: 10px;

  /* Transitions ==== transition=Transiții pentru elemente */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BODY & BACKGROUND ===== */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  /* CSS pentru a bloca selectarea/copierea textului */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE10+ */
  user-select: none;         /* Standard */
}

/* ===== GLASS MORPHISM UTILITIES ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px var(--glass-shadow);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.glass-navbar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.glass-footer {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  margin-top: 100px;
}

/* ===== NAVIGATION ===== */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo .logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 1.2rem;
  transition: var(--transition);
}

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

.nav-logo i {
  font-size: 1.5rem;
  color: #b983ff;
}

.logo-image {
  height: 100%;
  max-height: 65px;
  width: 125%;
  max-width: 800px;
  object-fit: contain;
  transition: var(--transition);
}

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

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--border-radius-small);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-top: 0px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-card {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-title i {
  color: var(--accent-color);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 56px;
  border: none;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* ===== SECTIONS ===== */
.about-section,
.services-section,
.stats-section {
  padding: var(--section-padding);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== ABOUT SECTION ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.welcome-text {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2rem auto;
}

.welcome-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.welcome-text strong {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
}

.features-list {
  display: grid;
  gap: 1.5rem;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-small);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.feature-point:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-check {
  font-size: 1.5rem;
  color: #b983ff;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-point p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

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

/* ===== ABOUT MAIN IMAGE ===== */
.about-main-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.about-main-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ===== ABOUT IMAGE ===== */
.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  height: 475px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.image-placeholder:hover::before {
  left: 100%;
}

.image-placeholder:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
  transform: scale(1.02);
}

.placeholder-content {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.placeholder-content i {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
  color: #b983ff;
}

.placeholder-content span {
  font-size: 1.2rem;
  font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-small);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.service-item:hover::before {
  left: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 1.8rem;
  color: #ffffff;
  background: linear-gradient(1deg, #667eea, #f193fb94);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-item h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: var(--font-display);
}

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

/* ===== STATS SECTION ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-small);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: #b983ff;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
  transition: var(--transition);
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
  color: var(--white);
}

.stat-label h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.stat-label p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 300;
}

/* ===== FOOTER ===== */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 2rem 0;
}

.footer-section h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section h3 i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-logo i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

/* ===== FOOTER CONTACT INFO ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.35rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  background: none;
  border: none;
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item i {
  color: #ffffff;
  font-size: 1.3rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--accent-color);
}

.contact-item span {
  color: inherit;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

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

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

/* Stiluri specifice pentru Link-uri Rapide */
.footer-links-quick li {
  margin-bottom: 0.8rem;
}

/* Stiluri specifice pentru Informații */
.footer-links-info li {
  margin-bottom: 1.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  white-space: nowrap;
}

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

.footer-links a i {
  width: 20px;
  text-align: center;
  font-size: 1.2rem;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
  text-align: center;
}

.footer-bottom-content p {
  color: rgb(255, 255, 255);
}

/* Break pentru mobile - ascuns pe desktop */
.mobile-break {
  display: none;
}

.footer-credits {
  font-size: 0.9rem;
}

.footer-credits i {
  color: #e74c3c;
}

/* ===== ADMIN PANEL LINK ===== */
.admin-panel-link {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1001;
}

.admin-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-small);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.admin-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-card {
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .btn {
    min-height: 44px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

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

  .welcome-text {
    margin-bottom: 1.5rem;
  }

  .welcome-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .features-list {
    gap: 1rem;
  }

  .feature-point {
    padding: 1rem;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0.8rem;
  }

  .feature-point:hover {
    transform: translateY(-5px);
  }

  .feature-point p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .about-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-main-image {
    height: auto;
    min-height: 300px;
    max-height: 400px;
  }

  .image-placeholder {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .contact-info {
    gap: 1.5rem;
  }

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

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

  .contact-item {
    flex-direction: row; /* Iconița și textul pe același rând pe mobile */
    align-items: center; /* Aliniere verticală centrată */
    text-align: left; /* Text aliniat la stânga */
    gap: 10px;
    justify-content: flex-start; /* Aliniere la stânga */
  }

  .contact-item:hover {
    transform: translateX(5px); /* Transformare orizontală, nu verticală */
  }

  .contact-item i {
    margin-top: 0;
    font-size: 1.3rem;
    width: 20px;
    flex-shrink: 0; /* Iconița nu se micșorează */
  }

  .admin-panel-link {
    right: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .admin-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .admin-btn span {
    display: none;
  }

  /* Break pentru mobile - vizibil pe mobile */
  .mobile-break {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 80vh;
    padding: 1.5rem 0;
  }

  .hero-content {
    padding: 0 0.8rem;
  }

  .hero-card {
    padding: 1.5rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-height: 44px;
  }

  .welcome-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .feature-point {
    padding: 0.8rem;
  }

  .feature-point p {
    font-size: 0.9rem;
  }

  .about-main-image {
    height: auto;
    min-height: 250px;
    max-height: 350px;
  }

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

  .service-item {
    padding: 1.5rem 1rem;
  }

  .service-icon {
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
    margin-bottom: 1rem;
  }

  .service-item h3 {
    font-size: 1.1rem;
  }

  .service-item p {
    font-size: 0.9rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem 0.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }

  .stat-label h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .stat-label p {
    font-size: 0.8rem;
  }

  .image-placeholder {
    height: 250px;
  }

  .placeholder-content i {
    font-size: 3rem;
  }

  .placeholder-content span {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-card {
  animation: fadeInUp 1s ease-out;
}

.glass-card {
  animation: fadeIn 0.8s ease-out;
}

/* ===== SCROLL BEHAVIOR ===== */
html {
  scroll-behavior: smooth;
}

/* ===== SELECTION ===== */
::selection {
  background: var(--accent-color);
  color: var(--white);
}

::-moz-selection {
  background: var(--accent-color);
  color: var(--white);
}

/* ===== DESPRE.PHP - PAGINA DESPRE STILURI ===== */

/* ===== TIMELINE VERTICAL INTERACTIV ===== */
.timeline-despre-section {
  padding: var(--section-padding);
}

.timeline-despre-container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.timeline-despre-years {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.timeline-despre-years::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(180deg,
      rgba(102, 126, 234, 0.3),
      rgba(118, 75, 162, 0.3));
  transform: translateX(-50%);
}

.timeline-despre-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.year-circle-despre {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 3px solid rgba(102, 126, 234, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.year-circle-despre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(102, 126, 234, 0.1),
      rgba(118, 75, 162, 0.1));
  opacity: 0;
  transition: opacity 0.6s ease;
}

.year-number-despre {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2rem;
  z-index: 1;
}

.year-month-despre {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  z-index: 1;
}

.year-label-despre {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  transition: all 0.4s ease;
  text-align: center;
}

.timeline-despre-item:hover .year-circle-despre {
  transform: scale(1.08) rotate(5deg);
  border-color: rgba(102, 126, 234, 0.6);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.timeline-despre-item:hover .year-circle-despre::before {
  opacity: 1;
}

.timeline-despre-item:hover .year-label-despre {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.timeline-despre-item.active .year-circle-despre {
  background: linear-gradient(135deg,
      var(--accent-color),
      var(--secondary-color));
  border-color: var(--accent-color);
  color: white;
  transform: scale(1.2);
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.5);
  animation: glow-despre 2s ease-in-out infinite;
}

.timeline-despre-item.active .year-circle-despre::before {
  opacity: 0.3;
}

.timeline-despre-item.active .year-label-despre {
  color: var(--accent-color);
  font-weight: 600;
  transform: translateY(-5px);
}

@keyframes glow-despre {

  0%,
  100% {
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.5);
  }

  50% {
    box-shadow: 0 16px 48px rgba(118, 75, 162, 0.6),
      0 0 30px rgba(102, 126, 234, 0.4);
  }
}

.timeline-despre-item.active::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--accent-color);
  animation: pulse-despre 2s infinite;
}

@keyframes pulse-despre {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.timeline-despre-content {
  position: relative;
  min-height: 600px;
}

.timeline-despre-content-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.98);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.timeline-despre-content-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.timeline-text-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.timeline-text-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transition: left 0.8s ease;
}

.timeline-text-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(102, 126, 234, 0.4);
}

.timeline-text-card:hover::before {
  left: 100%;
}

.timeline-text-card h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
  background: linear-gradient(174deg, #f093fb, #667eea, #3a1c71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-text-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.timeline-image-card {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.timeline-image-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.timeline-image-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.timeline-image-card:hover::after {
  opacity: 1;
}

.timeline-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: var(--border-radius);
  transition: transform 0.5s ease;
}

.timeline-image-card:hover .timeline-image {
  transform: scale(1.05);
  transition: transform 0.8s ease;
}

/* ===== MISIUNEA ȘI VIZIUNEA ===== */
.mission-vision-despre-section {
  padding: var(--section-padding);
}

.mission-vision-despre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.mission-despre-card,
.vision-despre-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-despre-card::before,
.vision-despre-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--accent-color),
      var(--secondary-color));
}

.mission-despre-card:hover,
.vision-despre-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-despre-card i,
.vision-despre-card i {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: block;
}

.mission-despre-card h3,
.vision-despre-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.mission-despre-card p,
.vision-despre-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1.1rem;
}

/* ===== VALORILE CAROUSEL ===== */
.values-carousel-section {
  padding: var(--section-padding);
}

.values-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  padding: 15px 0;
}

.values-carousel-container {
  flex: 1;
  overflow: hidden;
  padding: 15px 0;
  touch-action: pan-y pinch-zoom;
}

.values-carousel {
  display: flex;
  gap: 2rem;
  will-change: transform;
  touch-action: pan-x;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.values-carousel.carousel-anim {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.value-carousel-card {
  flex: 0 0 calc(33.333% - 1.35rem);
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.value-carousel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transition: left 0.5s;
}

.value-carousel-card:hover::before {
  left: 100%;
}

.value-carousel-card:hover {
  transform: translateY(-10px);
}

.value-carousel-card i {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: block;
}

.value-carousel-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.value-carousel-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ===== ECHIPA CAROUSEL ===== */
.team-carousel-section {
  padding: var(--section-padding);
}

.team-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  padding: 15px 0;
}

.team-carousel-container {
  flex: 1;
  overflow: hidden;
  padding: 15px 0;
  touch-action: pan-y pinch-zoom;
}

.team-carousel {
  display: flex;
  gap: 2rem;
  will-change: transform;
  touch-action: pan-x;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.team-carousel.carousel-anim {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.team-carousel-card {
  flex: 0 0 calc(33.333% - 1.35rem);
  text-align: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.team-carousel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--accent-color),
      var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.team-carousel-card:hover::before {
  transform: scaleX(1);
}

.team-carousel-card:hover {
  transform: translateY(-10px);
}

.team-member-avatar {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.team-carousel-card:hover .team-member-avatar {
  border-color: var(--accent-color);
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      var(--accent-color),
      var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.avatar-placeholder:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.team-carousel-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.team-role {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.team-description {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== CAROUSEL BUTTONS ===== */
.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(102, 126, 234, 0.3);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.carousel-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      var(--accent-color),
      var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.carousel-btn:hover {
  border-color: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.carousel-btn:hover::before {
  opacity: 1;
}

.carousel-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* ===== CTA SECTION DESPRE ===== */
.cta-despre-section {
  padding: var(--section-padding);
}

.cta-card {
  text-align: center;
  background: linear-gradient(135deg,
      rgba(102, 126, 234, 0.1),
      rgba(118, 75, 162, 0.1));
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 1.5rem 0 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cta-buttons .btn::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;
}

.cta-buttons .btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg,
      var(--accent-color),
      var(--secondary-color));
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE DESPRE.PHP ===== */
@media (max-width: 768px) {
  .timeline-despre-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline-despre-years {
    flex-direction: row;
    overflow-x: auto;
    gap: 2rem;
    padding-bottom: 1rem;
    justify-content: flex-start;
  }

  .timeline-despre-years::before {
    display: none;
  }

  .timeline-despre-item {
    flex-shrink: 0;
  }

  .year-circle-despre {
    width: 80px;
    height: 80px;
  }

  .year-number-despre {
    font-size: 1rem;
  }

  .year-month-despre {
    font-size: 0.65rem;
  }

  .year-label-despre {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    text-align: center;
  }

  .timeline-despre-content {
    min-height: auto;
    margin-top: 2rem;
  }

  .timeline-despre-content-item {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-bottom: 2rem;
  }

  .timeline-despre-content-item:not(.active) {
    display: none;
  }

  .timeline-text-card {
    padding: 1.5rem;
  }

  .timeline-text-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .timeline-text-card p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .timeline-image-card {
    height: 300px;
  }

  .mission-vision-despre-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-despre-card,
  .vision-despre-card {
    padding: 2rem 1.5rem;
  }

  .mission-despre-card i,
  .vision-despre-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .mission-despre-card h3,
  .vision-despre-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .mission-despre-card p,
  .vision-despre-card p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .values-carousel-wrapper,
  .team-carousel-wrapper {
    gap: 1rem;
  }

  .value-carousel-card,
  .team-carousel-card {
    flex: 0 0 100%;
  }

  .value-carousel-card {
    padding: 2rem 1.5rem;
  }

  .value-carousel-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .value-carousel-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .value-carousel-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .team-carousel-card {
    padding: 2rem 1.5rem;
  }

  .team-member-avatar {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
  }

  .avatar-placeholder {
    font-size: 2rem;
  }

  .team-carousel-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .team-role {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .team-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    min-width: 44px;
    min-height: 44px;
  }

  .cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    min-height: 44px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .timeline-despre-container {
    gap: 1.5rem;
  }

  .timeline-despre-years {
    gap: 1.5rem;
  }

  .year-circle-despre {
    width: 70px;
    height: 70px;
  }

  .year-number-despre {
    font-size: 0.9rem;
  }

  .year-month-despre {
    font-size: 0.6rem;
  }

  .year-label-despre {
    font-size: 0.75rem;
  }

  .timeline-text-card {
    padding: 1.2rem;
  }

  .timeline-text-card h3 {
    font-size: 1.3rem;
  }

  .timeline-text-card p {
    font-size: 0.95rem;
  }

  .timeline-image-card {
    height: 250px;
  }

  .mission-despre-card,
  .vision-despre-card {
    padding: 1.5rem 1rem;
  }

  .mission-despre-card i,
  .vision-despre-card i {
    font-size: 2rem;
  }

  .mission-despre-card h3,
  .vision-despre-card h3 {
    font-size: 1.3rem;
  }

  .mission-despre-card p,
  .vision-despre-card p {
    font-size: 0.95rem;
  }

  .value-carousel-card {
    padding: 1.5rem 1rem;
  }

  .value-carousel-card i {
    font-size: 1.8rem;
  }

  .value-carousel-card h3 {
    font-size: 1.2rem;
  }

  .value-carousel-card p {
    font-size: 0.9rem;
  }

  .team-carousel-card {
    padding: 1.5rem 1rem;
  }

  .team-member-avatar {
    width: 100px;
    height: 100px;
  }

  .avatar-placeholder {
    font-size: 1.8rem;
  }

  .team-carousel-card h3 {
    font-size: 1.2rem;
  }

  .team-role {
    font-size: 0.85rem;
  }

  .team-description {
    font-size: 0.85rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    min-width: 40px;
    min-height: 40px;
  }

  .cta-description {
    font-size: 1rem;
    margin: 1.2rem 0 1.5rem;
  }

  .cta-buttons .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* ===== SITEMAP STYLES ===== */
/* DOAR STILURI MINIME CUSTOM PENTRU LAYOUT SITEMAP */
.sitemap-content-section {
  padding: 50px 0;
}

.category-panel {
  margin-bottom: 40px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color), transparent) 1;
}

.category-icon-wrapper {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  transition: var(--transition);
}

.glass-card:hover .category-icon-wrapper {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.category-info {
  flex: 1;
}

.category-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.category-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.subpages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.subpage-link {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-decoration: none;
  color: white;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-small);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid transparent;
  transition: var(--transition);
}

.subpage-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-left-color: var(--primary-color);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.subpage-icon {
  width: 65px;
  height: 65px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  transition: var(--transition);
}

.subpage-link:hover .subpage-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.subpage-content {
  flex: 1;
}

.subpage-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.subpage-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-color.priority-high {
  background: #ff6b6b;
}

.legend-color.priority-medium {
  background: #ffd93d;
}

.legend-color.priority-low {
  background: #6bcf7f;
}

.sitemap-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.sitemap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.sitemap-controls {
  display: flex;
  gap: 10px;
}

.hierarchical-structure {
  margin: 30px 0;
}

.sitemap-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.sitemap-item.level-0 {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #ffd700;
}

.sitemap-item.level-1 {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid #ffd700;
  margin-left: 20px;
}

.sitemap-item.level-2 {
  background: rgba(255, 255, 255, 0.06);
  border-left: 2px solid #6bcf7f;
  margin-left: 40px;
}

.item-content {
  padding: 20px;
}

.item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.item-header i {
  color: #ffd700;
  font-size: 1.2rem;
  min-width: 20px;
}

.item-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  flex: 1;
}

.priority-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.priority-badge.priority-high {
  background: #ff6b6b;
  color: #fff;
}

.priority-badge.priority-medium {
  background: #ffd93d;
  color: #333;
}

.priority-badge.priority-low {
  background: #6bcf7f;
  color: #fff;
}

.item-description {
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0;
  font-size: 0.95rem;
}

.item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  text-decoration: none;
  padding: 8px 16px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.item-link:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.subpages-container {
  margin-top: 10px;
  padding-left: 20px;
  border-left: 2px solid rgba(255, 215, 0, 0.3);
  display: none;
  /* Collapsed by default */
}

.subpages-container.expanded {
  display: block;
}

.subpages-container.collapsed {
  display: none;
}

.no-js .subpages-container {
  display: block !important;
  /* Afișează totul dacă JS este dezactivat */
}

.no-js .sitemap-controls {
  display: none;
  /* Ascunde butoanele dacă JS este dezactivat */
}

.sitemap-summary {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sitemap-summary h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.summary-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
}

.summary-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
}

.summary-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .sitemap-header {
    flex-direction: column;
    text-align: center;
  }

  .sitemap-controls {
    justify-content: center;
  }

  .legend {
    flex-direction: column;
    align-items: center;
  }

  .item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .sitemap-item.level-1 {
    margin-left: 10px;
  }

  .sitemap-item.level-2 {
    margin-left: 20px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }
}

/* Optimizări mobile pentru structura sitemap din sitemap.php */
@media (max-width: 768px) {
  .sitemap-content-section {
    padding: 30px 0; /* Padding redus pe mobile */
  }

  .category-panel {
    margin-bottom: 30px; /* Spacing redus între categorii */
  }

  .category-header {
    flex-direction: column; /* Layout vertical pe mobile */
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 15px;
  }

  .category-icon-wrapper {
    width: 70px; /* Iconiță mai mică pe mobile */
    height: 70px;
    font-size: 2rem;
    align-self: center; /* Centrat pe mobile */
  }

  .category-info {
    width: 100%; /* Lățime completă pe mobile */
    text-align: center; /* Text centrat pe mobile */
  }

  .category-title {
    font-size: 1.8rem; /* Font mai mic pe mobile */
    margin-bottom: 8px;
  }

  .category-description {
    font-size: 1rem; /* Font mai mic pe mobile */
  }

  .category-header .btn {
    width: 100%; /* Buton full width pe mobile */
    justify-content: center;
    padding: 12px 24px;
    min-height: 44px; /* Touch target minim */
  }

  .subpages-grid {
    grid-template-columns: 1fr; /* Single column pe mobile */
    gap: 15px;
  }

  .subpage-link {
    flex-direction: column; /* Layout vertical pe mobile */
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }

  .subpage-icon {
    width: 55px; /* Iconiță mai mică pe mobile */
    height: 55px;
    font-size: 1.5rem;
    margin: 0 auto; /* Centrat */
  }

  .subpage-content {
    width: 100%;
  }

  .subpage-title {
    font-size: 1.05rem; /* Font mai mic pe mobile */
    margin-bottom: 6px;
  }

  .subpage-desc {
    font-size: 0.9rem; /* Font mai mic pe mobile */
  }

  .subpage-link:hover {
    transform: translateY(-3px); /* Transformare verticală în loc de orizontală pe mobile */
  }
}

@media (max-width: 480px) {
  .sitemap-content-section {
    padding: 20px 0; /* Padding redus pe telefon */
  }

  .category-panel {
    margin-bottom: 25px;
  }

  .category-icon-wrapper {
    width: 60px; /* Iconiță și mai mică pe telefon */
    height: 60px;
    font-size: 1.8rem;
  }

  .category-title {
    font-size: 1.5rem; /* Font și mai mic pe telefon */
  }

  .category-description {
    font-size: 0.95rem;
  }

  .subpage-link {
    padding: 16px; /* Padding redus pe telefon */
  }

  .subpage-icon {
    width: 50px; /* Iconiță și mai mică pe telefon */
    height: 50px;
    font-size: 1.3rem;
  }

  .subpage-title {
    font-size: 1rem;
  }

  .subpage-desc {
    font-size: 0.85rem;
  }
}

/* ===== STILURI PENTRU PAGINA LEGAL/LEGAL.PHP ===== */

.legal-pages-section {
  padding: 60px 0;
  min-height: 80vh;
}

.legal-pages-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.legal-pages-card .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.legal-pages-card .section-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.legal-pages-card .section-title i {
  color: #9b59b6;
  font-size: 2.2rem;
}

.legal-pages-card .section-subtitle {
  font-size: 1.2rem;
  color: #bbb;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

.legal-pages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Exact 4 coloane egale */
  gap: 20.9px;
  margin-bottom: 50px;
}

.legal-page-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.legal-page-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--page-color, #3498db);
  transition: all 0.3s ease;
}

.legal-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.legal-page-card:hover::before {
  height: 6px;
}

.legal-page-card .page-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.legal-page-card .page-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.legal-page-card:hover .page-icon {
  transform: scale(1.1) rotate(5deg);
}

.legal-page-card .page-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.legal-page-card .page-description {
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.legal-page-card .page-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(52, 152, 219, 0.1);
  border: 1px solid rgba(52, 152, 219, 0.2);
}

.legal-page-card .page-link:hover {
  background: rgba(52, 152, 219, 0.2);
  color: #5dade2;
  transform: translateX(5px);
}

.legal-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.legal-info .info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

.legal-info .info-card i {
  font-size: 2rem;
  color: #9b59b6;
  margin-bottom: 15px;
}

.legal-info .info-card h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.legal-info .info-card p {
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 20px;
}

.legal-info .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.legal-info .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(155, 89, 182, 0.3);
}

/* Responsive Design pentru pagina legal */
@media (max-width: 768px) {
  .legal-pages-section {
    padding: 40px 0; /* Padding redus pe tabletă */
  }

  .legal-pages-card {
    padding: 25px;
    margin: 20px;
  }

  .legal-pages-card .section-header {
    margin-bottom: 35px; /* Spacing redus */
  }

  .legal-pages-card .section-title {
    font-size: 2rem;
    flex-wrap: wrap; /* Permite wrap pentru iconiță */
  }

  .legal-pages-card .section-title i {
    font-size: 1.8rem; /* Iconiță mai mică */
  }

  .legal-pages-card .section-subtitle {
    font-size: 1.1rem; /* Font mai mic pe tabletă */
  }

  .legal-pages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; /* Gap redus */
    margin-bottom: 35px;
  }

  .legal-page-card {
    padding: 25px; /* Padding redus */
  }

  .legal-page-card .page-icon {
    width: 55px; /* Iconiță mai mică */
    height: 55px;
    margin-bottom: 15px;
  }

  .legal-page-card .page-icon i {
    font-size: 1.6rem;
  }

  .legal-page-card .page-title {
    font-size: 1.25rem; /* Font mai mic */
    margin-bottom: 12px;
  }

  .legal-page-card .page-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .legal-page-card .page-link {
    padding: 10px 18px; /* Touch target mai mare */
    min-height: 44px; /* Touch target minim */
    font-size: 0.95rem;
  }

  .legal-info {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 35px;
  }

  .legal-info .info-card {
    padding: 20px;
  }

  .legal-info .info-card i {
    font-size: 2rem; /* Iconiță mai mică */
  }

  .legal-info .info-card h3 {
    font-size: 1.2rem;
  }

  .legal-info .info-card p {
    font-size: 0.95rem;
  }

  .legal-info .btn {
    padding: 12px 24px;
    min-height: 44px; /* Touch target minim */
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .legal-pages-section {
    padding: 30px 0; /* Padding redus pe telefon */
  }

  .legal-pages-card {
    padding: 20px;
    margin: 10px;
  }

  .legal-pages-card .section-header {
    margin-bottom: 30px;
  }

  .legal-pages-card .section-title {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .legal-pages-card .section-title i {
    font-size: 1.6rem;
  }

  .legal-pages-card .section-subtitle {
    font-size: 1rem; /* Font mai mic pe telefon */
  }

  .legal-pages-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .legal-page-card {
    padding: 20px;
  }

  .legal-page-card .page-icon {
    width: 50px; /* Iconiță și mai mică pe telefon */
    height: 50px;
    margin-bottom: 15px;
  }

  .legal-page-card .page-icon i {
    font-size: 1.5rem;
  }

  .legal-page-card .page-title {
    font-size: 1.15rem; /* Font mai mic pe telefon */
    margin-bottom: 10px;
    line-height: 1.3; /* Line height mai mic pentru text pe mai multe linii */
  }

  .legal-page-card .page-description {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .legal-page-card .page-link {
    width: 100%; /* Full width pe telefon */
    justify-content: center;
    padding: 12px 20px;
    min-height: 44px;
    font-size: 0.9rem;
  }

  .legal-info {
    gap: 15px;
    margin-top: 30px;
  }

  .legal-info .info-card {
    padding: 18px;
  }

  .legal-info .info-card i {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .legal-info .info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .legal-info .info-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .legal-info .btn {
    width: 100%; /* Full width pe telefon */
    justify-content: center;
    padding: 14px 24px;
    min-height: 44px;
    font-size: 0.95rem;
  }
}

/* ===== ERROR MESSAGE ===== */
.error-message {
  background: rgba(231, 76, 60, 0.1);
  border-left: 4px solid #e74c3c;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
}

.error-message::before {
  content: "\f071";
  /* Font Awesome exclamation-triangle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.5rem;
  color: #e74c3c;
}

.error-message p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .error-message {
    padding: 15px;
    font-size: 0.9rem;
  }
}

/* ========================================
   TERMS PAGE STYLES
   ======================================== */

/* Terms Page Specific Styles - All classes start with 'terms' */
.terms-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  min-height: 80vh;
  align-items: start;
}

.terms-sidebar {
  margin-top: 0;
  border-radius: 20px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: fit-content;
  position: sticky;
  top: 0;
}

.terms-sidebar-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.terms-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.terms-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
}

.terms-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateX(5px);
}

.terms-nav-item.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.terms-nav-item i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.terms-content {
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 600px;
  overflow: hidden;
}

.terms-content-section {
  display: none;
}

.terms-content-section.active {
  display: block;
}

.terms-section-header {
  background: var(--gradient-primary);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.terms-section-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.terms-section-title-group {
  flex: 1;
}

.terms-section-title {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.terms-section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.terms-section-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  padding: 1rem;
}


.terms-info-box {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 1.5rem;
}

.terms-info-box p {
  margin: 0 0 0.5rem 0;
}

.terms-info-box p:last-child {
  margin-bottom: 0;
}

.terms-info-box i {
  color: #ffc107;
  font-size: 3rem;
  margin-top: 0.2rem;
}


/* Reservation Methods */
.terms-reservation-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.terms-method-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.terms-method-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.terms-method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.terms-method-content {
  flex: 1;
}

.terms-method-content h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.terms-method-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.terms-link {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.terms-link:hover {
  color: #3a00bf;
  text-decoration: none;
}

/* Payment Methods */
.terms-payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.terms-payment-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.terms-payment-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.terms-payment-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.terms-payment-content h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.terms-payment-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
}

.terms-payment-conditions {
  margin: 1.5rem 0;
}

.terms-payment-conditions h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.terms-payment-conditions ul {
  list-style: none;
  padding: 0;
}

.terms-payment-conditions li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.terms-payment-conditions li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.terms-deposit-info {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.terms-deposit-info i {
  color: #ffc107;
  font-size: 3rem;
}

/* Cancellation Policy */
.terms-cancellation-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.terms-tier-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.terms-tier-card.terms-tier-green {
  border-color: #28a745;
}

.terms-tier-card.terms-tier-orange {
  border-color: #fd7e14;
}

.terms-tier-card.terms-tier-red {
  border-color: #dc3545;
}

.terms-tier-card:hover {
  transform: translateY(-5px);
}

.terms-tier-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.terms-tier-green i {
  color: #28a745;
}

.terms-tier-orange i {
  color: #fd7e14;
}

.terms-tier-red i {
  color: #dc3545;
}

.terms-tier-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.terms-tier-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.terms-cancellation-conditions {
  margin: 1.5rem 0;
}

.terms-cancellation-conditions h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.terms-cancellation-conditions ul {
  list-style: none;
  padding: 0;
}

.terms-cancellation-conditions li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.terms-cancellation-conditions li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.terms-exception-box {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.terms-exception-box i {
  color: #dc3545;
  font-size: 3rem;
}

/* Check-in/Check-out */
.terms-checkin-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.terms-checkin-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.terms-checkin-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.terms-checkin-card i {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.terms-checkin-card h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.terms-time-highlight {
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.terms-checkin-rules {
  margin: 1.5rem 0;
}

.terms-checkin-rules h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.terms-checkin-rules ul {
  list-style: none;
  padding: 0;
}

.terms-checkin-rules li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.terms-checkin-rules li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Rules and Responsibilities */
.terms-rules-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.terms-rules-section {
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.terms-rules-section:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.terms-rules-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.terms-rules-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  flex-shrink: 0;
}

.terms-rules-header h3 {
  color: white;
  font-size: 1.3rem;
  margin: 0;
}

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

.terms-rules-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.terms-rules-list li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.terms-warning-box {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.terms-warning-box i {
  color: #ffc107;
  font-size: 3rem;
}

/* Liability Limitations */
.terms-liability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.terms-liability-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.terms-liability-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.terms-liability-item i {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1rem;
  width: 40px;
  height: 34px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0px 0px 20px 10px rgba(102, 126, 234, 0.3);
}

.terms-liability-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Contact */
.terms-contact-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.terms-contact-card {
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.terms-contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.terms-contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.terms-contact-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.terms-contact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
}

.terms-contact-address {
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.terms-contact-address:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.terms-contact-address .terms-contact-icon {
  flex-shrink: 0;
  margin: 0;
}

.terms-contact-content h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.terms-contact-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.terms-update-info {
  background: rgba(52, 152, 219, 0.1);
  border: 1px solid rgba(52, 152, 219, 0.3);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.terms-update-info i {
  color: #3498db;
  font-size: 3rem;
}

/* FAQ Section */
.terms-faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.terms-faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.terms-faq-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.terms-faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
}

.terms-faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.terms-faq-question i:first-child {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.terms-faq-question h3 {
  color: white;
  font-size: 1.1rem;
  margin: 0;
  flex: 1;
  font-weight: 500;
}

.terms-faq-toggle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.terms-faq-item.active .terms-faq-toggle {
  transform: rotate(180deg);
  color: var(--gradient-primary);
}

.terms-faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
}

.terms-faq-item.active .terms-faq-answer {
  max-height: 500px;
}

.terms-faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  padding: 0 1.5rem 1.5rem 4.5rem;
  font-size: 0.95rem;
}

/* Terms Page Responsive Design */
@media (max-width: 768px) {
  .terms-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .terms-sidebar {
    position: static;
    order: 2;
    height: auto;
    margin-top: 1rem;
  }

  .terms-sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .terms-sidebar-nav {
    gap: 0.4rem;
  }

  .terms-nav-item {
    padding: 10px 14px;
    font-size: 0.95rem;
    min-height: 44px; /* Touch target minim */
  }

  .terms-nav-item i {
    font-size: 1rem;
    width: 18px;
  }

  .terms-content {
    order: 1;
  }

  .terms-section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    gap: 15px;
  }

  .terms-section-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .terms-section-title-group {
    width: 100%;
  }

  .terms-section-title {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .terms-section-subtitle {
    font-size: 1rem;
  }

  .terms-section-content {
    padding: 1rem;
  }

  .terms-info-box,
  .terms-deposit-info,
  .terms-exception-box,
  .terms-warning-box {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .terms-info-box i,
  .terms-deposit-info i,
  .terms-exception-box i,
  .terms-warning-box i {
    font-size: 2rem;
    margin: 0 auto;
  }

  .terms-reservation-methods {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .terms-method-card {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .terms-method-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    margin: 0 auto;
  }

  .terms-method-content h3 {
    font-size: 1.05rem;
  }

  .terms-method-content p {
    font-size: 0.85rem;
  }

  .terms-payment-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .terms-payment-card {
    padding: 1.2rem;
  }

  .terms-payment-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .terms-payment-content h3 {
    font-size: 1.05rem;
  }

  .terms-payment-content p {
    font-size: 0.85rem;
  }

  .terms-payment-conditions {
    padding: 1.2rem;
  }

  .terms-payment-conditions h3 {
    font-size: 1.2rem;
  }

  .terms-cancellation-tiers {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .terms-tier-card {
    padding: 1.2rem;
  }

  .terms-tier-card i {
    font-size: 2.5rem;
  }

  .terms-tier-card h3 {
    font-size: 1rem;
  }

  .terms-tier-card p {
    font-size: 0.85rem;
  }

  .terms-cancellation-conditions {
    padding: 1.2rem;
  }

  .terms-cancellation-conditions h3 {
    font-size: 1.2rem;
  }

  .terms-checkin-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .terms-checkin-card {
    padding: 1.2rem;
  }

  .terms-checkin-card i {
    font-size: 2.5rem;
  }

  .terms-checkin-card h3 {
    font-size: 1.1rem;
  }

  .terms-time-highlight {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .terms-checkin-rules {
    padding: 1.2rem;
  }

  .terms-checkin-rules h3 {
    font-size: 1.2rem;
  }

  .terms-rules-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .terms-rules-section {
    padding: 1.2rem;
  }

  .terms-rules-header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .terms-rules-icon {
    margin: 0 auto;
  }

  .terms-rules-header h3 {
    font-size: 1.1rem;
  }

  .terms-liability-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .terms-liability-item {
    padding: 1.2rem;
  }

  .terms-liability-item i {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .terms-liability-item p {
    font-size: 0.85rem;
  }

  .terms-contact-top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .terms-contact-card {
    padding: 1.2rem;
  }

  .terms-contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .terms-contact-card h3 {
    font-size: 1rem;
  }

  .terms-contact-address {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }

  .terms-contact-address .terms-contact-icon {
    margin: 0 auto 0.8rem;
  }

  .terms-update-info {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    gap: 0.8rem;
  }

  .terms-update-info i {
    font-size: 2rem;
  }

  .terms-faq-question {
    padding: 1.2rem;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .terms-faq-question i:first-child {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .terms-faq-question h3 {
    font-size: 1rem;
    flex: 1 1 100%;
  }

  .terms-faq-answer p {
    padding: 0 1.2rem 1.2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .terms-container {
    padding: 0.5rem;
  }

  .terms-sidebar {
    padding: 0.8rem;
  }

  .terms-sidebar-title {
    font-size: 1rem;
  }

  .terms-nav-item {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .terms-section-header {
    padding: 1.2rem;
  }

  .terms-section-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .terms-section-title {
    font-size: 1.4rem;
  }

  .terms-section-subtitle {
    font-size: 0.95rem;
  }

  .terms-section-content {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  .terms-section-content p {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
  }

  .terms-info-box,
  .terms-deposit-info,
  .terms-exception-box,
  .terms-warning-box {
    padding: 1rem;
  }

  .terms-info-box i,
  .terms-deposit-info i,
  .terms-exception-box i,
  .terms-warning-box i {
    font-size: 1.8rem;
  }

  .terms-info-box p,
  .terms-deposit-info p,
  .terms-exception-box p,
  .terms-warning-box p {
    font-size: 0.9rem;
  }

  .terms-method-card {
    padding: 1rem;
  }

  .terms-method-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .terms-method-content h3 {
    font-size: 1rem;
  }

  .terms-method-content p {
    font-size: 0.8rem;
  }

  .terms-payment-methods {
    grid-template-columns: 1fr;
  }

  .terms-payment-card {
    padding: 1rem;
  }

  .terms-payment-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .terms-payment-content h3 {
    font-size: 1rem;
  }

  .terms-payment-content p {
    font-size: 0.8rem;
  }

  .terms-payment-conditions {
    padding: 1rem;
  }

  .terms-payment-conditions h3 {
    font-size: 1.1rem;
  }

  .terms-tier-card {
    padding: 1rem;
  }

  .terms-tier-card i {
    font-size: 2rem;
  }

  .terms-tier-card h3 {
    font-size: 0.95rem;
  }

  .terms-tier-card p {
    font-size: 0.8rem;
  }

  .terms-cancellation-conditions {
    padding: 1rem;
  }

  .terms-cancellation-conditions h3 {
    font-size: 1.1rem;
  }

  .terms-checkin-card {
    padding: 1rem;
  }

  .terms-checkin-card i {
    font-size: 2rem;
  }

  .terms-checkin-card h3 {
    font-size: 1rem;
  }

  .terms-time-highlight {
    font-size: 0.85rem;
    padding: 0.3rem 0.7rem;
  }

  .terms-checkin-rules {
    padding: 1rem;
  }

  .terms-checkin-rules h3 {
    font-size: 1.1rem;
  }

  .terms-rules-section {
    padding: 1rem;
  }

  .terms-rules-header h3 {
    font-size: 1rem;
  }

  .terms-liability-item {
    padding: 1rem;
  }

  .terms-liability-item i {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .terms-liability-item p {
    font-size: 0.8rem;
  }

  .terms-contact-card {
    padding: 1rem;
  }

  .terms-contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .terms-contact-card h3 {
    font-size: 0.95rem;
  }

  .terms-contact-address {
    padding: 1rem;
  }

  .terms-contact-content h3 {
    font-size: 0.95rem;
  }

  .terms-update-info {
    padding: 0.8rem;
  }

  .terms-update-info i {
    font-size: 1.8rem;
  }

  .terms-update-info p {
    font-size: 0.9rem;
  }

  .terms-faq-question {
    padding: 1rem;
  }

  .terms-faq-question i:first-child {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }

  .terms-faq-question h3 {
    font-size: 0.95rem;
  }

  .terms-faq-answer p {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }
}

/* ===== COOKIES STYLES ===== */
.cookies-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  min-height: 80vh;
  align-items: start;
}

.cookies-sidebar {
  margin-top: 0;
  border-radius: 20px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: fit-content;
  position: sticky;
  top: 0;
}

.cookies-sidebar-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cookies-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookies-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
}

.cookies-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateX(5px);
}

.cookies-nav-item.active {
    background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cookies-nav-item i {
    font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.cookies-content {
    border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 600px;
  overflow: hidden;
}

.cookies-content-section {
  display: none;
}

.cookies-content-section.active {
  display: block;
}

.cookies-section-header {
    background: var(--gradient-primary);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.cookies-section-icon {
    width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cookies-section-title-group {
  flex: 1;
}

.cookies-section-title {
    color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cookies-section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cookies-section-content {
    color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  padding: 1rem 1rem 0 1rem;
}

.cookies-section-content p {
  margin-bottom: 1.5rem;
}

.cookies-section-content strong {
  color: white;
  font-weight: 600;
}

.cookies-link {
    color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cookies-link:hover {
    color: #3a00bf;
    text-decoration: none;
}

.cookies-info-box {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cookies-info-box i {
  color: #3b82f6;
  font-size: 3rem;
}

.cookies-info-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cookies-payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookies-code {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
}

.cookies-payment-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.cookies-payment-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}


.cookies-payment-content h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cookies-payment-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

.cookies-payment-conditions {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.cookies-payment-conditions h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cookies-payment-conditions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cookies-payment-conditions li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.cookies-payment-conditions li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cookies-cancellation-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookies-tier-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.cookies-tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


.cookies-tier-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cookies-tier-card h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cookies-tier-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

.cookies-cancellation-conditions {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.cookies-cancellation-conditions h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cookies-cancellation-conditions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cookies-cancellation-conditions li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.cookies-cancellation-conditions li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cookies-reservation-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cookies-method-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.cookies-method-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.cookies-method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.cookies-method-content h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cookies-method-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

.cookies-checkin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookies-checkin-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.cookies-checkin-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.cookies-checkin-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cookies-checkin-card h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cookies-time-highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.cookies-checkin-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.cookies-checkin-rules {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.cookies-checkin-rules h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cookies-checkin-rules ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cookies-checkin-rules li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.cookies-checkin-rules li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

.cookies-rules-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookies-rules-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookies-rules-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.cookies-rules-header h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

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

.cookies-rules-list li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.cookies-rules-list li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cookies-warning-box {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cookies-warning-box i {
  color: #ef4444;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.cookies-warning-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookies-liability-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.cookies-liability-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.cookies-liability-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.cookies-liability-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

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

.cookies-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.cookies-contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.cookies-contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cookies-contact-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cookies-contact-address {
    border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cookies-contact-address .cookies-contact-icon {
  margin: 0;
  flex-shrink: 0;
}

.cookies-contact-content h3 {
    color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cookies-update-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookies-update-info i {
  color: #3498db;
  font-size: 3rem;
}

.cookies-update-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cookies-faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cookies-faq-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.cookies-faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.cookies-faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cookies-faq-question i:first-child {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cookies-faq-question h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  flex: 1;
}

.cookies-faq-toggle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.cookies-faq-item.active .cookies-faq-toggle {
  transform: rotate(180deg);
}

.cookies-faq-answer {
  padding: 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  display: none;
}

.cookies-faq-item.active .cookies-faq-answer {
  display: block;
}

.cookies-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cookies-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.cookies-toggle-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.cookies-toggle-info h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.3rem 0;
}

.cookies-toggle-info p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

.cookies-toggle-switch {
  width: 50px;
  height: 25px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookies-toggle-switch::before {
  content: '';
  position: absolute;
  width: 21px;
  height: 21px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.cookies-toggle-switch.active {
  background: var(--primary-color);
}

.cookies-toggle-switch.active::before {
  transform: translateX(25px);
}

.cookies-toggle-switch.disabled {
  background: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
  opacity: 0.6;
}

.cookies-toggle-switch.disabled::before {
  background: rgba(255, 255, 255, 0.5);
}

.cookies-buttons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.cookies-buttons .btn {
  flex: 1;
  min-width: 200px;
}

.cookies-buttons .btn-success {
  background: linear-gradient(135deg, #10b981, #16a34a);
  border: none;
  color: white;
}

.cookies-buttons .btn-success:hover {
  background: linear-gradient(135deg, #059669, #16a34a);
  transform: translateY(-2px);
}

.cookies-buttons .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
  color: white;
}

.cookies-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #2563eb);
  transform: translateY(-2px);
}

.cookies-buttons .btn-secondary {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: none;
  color: white;
}

.cookies-buttons .btn-secondary:hover {
  background: linear-gradient(135deg, #dc2626, #dc2626);
  transform: translateY(-2px);
}

/* Simple Modern Notifications */
.cookies-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateX(400px);
  transition: all 0.3s ease;
  max-width: 350px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cookies-toast.show {
  transform: translateX(0);
}

.cookies-toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.cookies-toast.success .cookies-toast-icon {
  background: #10b981;
}

.cookies-toast.info .cookies-toast-icon {
  background: #3b82f6;
}

.cookies-toast-content {
  flex: 1;
}

.cookies-toast-message {
  color: #1f2937;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookies-toast-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.cookies-toast-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookies-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cookies-sidebar {
    position: static;
    order: 2;
    height: auto;
    margin-top: 1rem;
  }

  .cookies-sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .cookies-sidebar-nav {
    gap: 0.4rem;
  }

  .cookies-nav-item {
    padding: 10px 14px;
    font-size: 0.95rem;
    min-height: 44px; /* Touch target minim */
  }

  .cookies-nav-item i {
    font-size: 1rem;
    width: 18px;
  }
  
  .cookies-content {
    order: 1;
  }

  .cookies-section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    gap: 15px;
  }

  .cookies-section-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .cookies-section-title-group {
    width: 100%;
  }

  .cookies-section-title {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .cookies-section-subtitle {
    font-size: 1rem;
  }

  .cookies-section-content {
    padding: 1rem;
  }

  .cookies-info-box {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .cookies-info-box i {
    font-size: 2rem;
  }

  .cookies-payment-methods,
  .cookies-reservation-methods,
  .cookies-contact-top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookies-payment-card {
    padding: 1.2rem;
  }

  .cookies-payment-content h3 {
    font-size: 1.1rem;
  }

  .cookies-payment-content p {
    font-size: 0.85rem;
  }

  .cookies-method-card {
    padding: 1.2rem;
  }

  .cookies-method-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .cookies-method-content h3 {
    font-size: 1.1rem;
  }

  .cookies-method-content p {
    font-size: 0.85rem;
  }

  .cookies-contact-card {
    padding: 1.2rem;
  }

  .cookies-contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .cookies-contact-card h3 {
    font-size: 1rem;
  }

  .cookies-contact-address {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }

  .cookies-contact-address .cookies-contact-icon {
    margin: 0 auto 0.8rem;
  }

  .cookies-update-info {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    gap: 0.8rem;
  }

  .cookies-update-info i {
    font-size: 2rem;
  }

  .cookies-toggle-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
  }

  .cookies-toggle-info {
    flex: 1;
    width: 100%;
  }

  .cookies-toggle-switch {
    align-self: flex-end;
    min-width: 50px;
    min-height: 25px;
  }

  .cookies-faq-question {
    padding: 1.2rem;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .cookies-faq-question h3 {
    font-size: 1rem;
    flex: 1 1 100%;
  }

  .cookies-faq-answer {
    padding: 0 1.2rem 1.2rem;
    font-size: 0.95rem;
  }

  .cookies-faq-answer table {
    font-size: 0.8rem;
    display: block;
    overflow-x: auto;
  }

  .cookies-liability-grid {
    grid-template-columns: 1fr;
  }
  
  .cookies-rules-container {
    grid-template-columns: 1fr;
  }

  .cookies-rules-section {
    padding: 1.2rem;
  }

  .cookies-rules-header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .cookies-rules-icon {
    margin: 0 auto;
  }

  .cookies-rules-header h3 {
    font-size: 1.1rem;
  }
  
  .cookies-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .cookies-buttons .btn {
    min-width: auto;
    width: 100%;
    min-height: 44px; /* Touch target minim */
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cookies-container {
    padding: 0.5rem;
  }

  .cookies-sidebar {
    padding: 0.8rem;
  }

  .cookies-sidebar-title {
    font-size: 1rem;
  }

  .cookies-nav-item {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .cookies-section-header {
    padding: 1.2rem;
  }

  .cookies-section-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .cookies-section-title {
    font-size: 1.4rem;
  }

  .cookies-section-subtitle {
    font-size: 0.95rem;
  }

  .cookies-section-content {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  .cookies-section-content p {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
  }

  .cookies-info-box {
    padding: 1rem;
  }

  .cookies-info-box i {
    font-size: 1.8rem;
  }

  .cookies-info-box p {
    font-size: 0.9rem;
  }

  .cookies-payment-card,
  .cookies-method-card,
  .cookies-contact-card {
    padding: 1rem;
  }

  .cookies-payment-content h3 {
    font-size: 1rem;
  }

  .cookies-payment-content p {
    font-size: 0.8rem;
  }

  .cookies-method-icon,
  .cookies-contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .cookies-contact-card h3 {
    font-size: 0.95rem;
  }

  .cookies-contact-address {
    padding: 1rem;
  }

  .cookies-contact-content h3 {
    font-size: 0.95rem;
  }

  .cookies-update-info {
    padding: 0.8rem;
  }

  .cookies-update-info i {
    font-size: 1.8rem;
  }

  .cookies-update-info p {
    font-size: 0.9rem;
  }

  .cookies-toggle-item {
    padding: 0.8rem;
  }

  .cookies-toggle-info h4 {
    font-size: 1rem;
  }

  .cookies-toggle-info p {
    font-size: 0.85rem;
  }

  .cookies-faq-question {
    padding: 1rem;
  }

  .cookies-faq-question i:first-child {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }

  .cookies-faq-question h3 {
    font-size: 0.95rem;
  }

  .cookies-faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }

  .cookies-faq-answer table {
    font-size: 0.75rem;
  }

  .cookies-faq-answer table th,
  .cookies-faq-answer table td {
    padding: 0.3rem;
  }

  .cookies-rules-section {
    padding: 1rem;
  }

  .cookies-rules-header h3 {
    font-size: 1rem;
  }

  .cookies-buttons .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* ===== PRIVACY STYLES ===== */
.privacy-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  min-height: 80vh;
  align-items: start;
}

.privacy-sidebar {
  margin-top: 0;
  border-radius: 20px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: fit-content;
  position: sticky;
  top: 0;
}

.privacy-sidebar-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.privacy-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
}

.privacy-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateX(5px);
}

.privacy-nav-item.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.privacy-nav-item i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.privacy-content {
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 600px;
  overflow: hidden;
}

.privacy-content-section {
  display: none;
}

.privacy-content-section.active {
  display: block;
}

.privacy-section-header {
  background: var(--gradient-primary);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.privacy-section-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.privacy-section-title-group {
  flex: 1;
}

.privacy-section-title {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.privacy-section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.privacy-section-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  padding: 1rem 1rem 0 1rem;
}

.privacy-section-content p {
  margin-bottom: 1.5rem;
}

.privacy-section-content strong {
  color: white;
  font-weight: 600;
}

.privacy-link {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy-link:hover {
  color: #3a00bf;
  text-decoration: none;
}

.privacy-info-box {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.privacy-info-box i {
  color: #3b82f6;
  font-size: 3rem;
}

.privacy-info-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.privacy-payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

#retention .privacy-payment-methods {
  grid-template-columns: repeat(2, 1fr);
}

#retention .privacy-payment-content .privacy-method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

#security .privacy-reservation-methods {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 2rem;
}

.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.privacy-method-content {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.privacy-rights-grid .privacy-payment-content .privacy-method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  flex-shrink: 0;
}

.privacy-rights-grid .privacy-payment-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.privacy-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.privacy-title-row h3 {
  margin: 0;
  text-align: left;
}

.privacy-code {
  background: rgba(59, 130, 246, 0.2);
  color: var(--primary-color);
  padding: 0px 39px;
  border-radius: 6px;
  display: flex;
  font-family: var(--font-primary);
}

.privacy-payment-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.privacy-payment-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.privacy-payment-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.privacy-payment-content .privacy-method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.privacy-payment-content h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.privacy-payment-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
  text-align: left;
  width: 100%;
}

.privacy-payment-conditions {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.privacy-payment-conditions h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.privacy-payment-conditions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-payment-content ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  text-align: left;
  width: 100%;
}

.privacy-payment-content li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.3rem;
  padding-left: 1rem;
  position: relative;
  font-size: 0.85rem;
  text-align: left;
}

.privacy-payment-content li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.privacy-payment-conditions li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-payment-conditions li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.privacy-reservation-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.privacy-method-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.privacy-method-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.privacy-method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.privacy-method-content h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.privacy-method-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

.privacy-checkin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.privacy-checkin-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.privacy-checkin-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.privacy-checkin-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.privacy-checkin-card h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.privacy-time-highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.privacy-checkin-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.privacy-checkin-rules {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.privacy-checkin-rules h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.privacy-checkin-rules ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-checkin-rules li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-checkin-rules li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

.privacy-rules-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-rules-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-rules-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.privacy-rules-header h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

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

.privacy-rules-list li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-rules-list li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.privacy-warning-box {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.privacy-warning-box i {
  color: #ef4444;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.privacy-warning-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

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

.privacy-liability-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.privacy-liability-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.privacy-liability-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.privacy-liability-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

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

.privacy-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.privacy-contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.privacy-contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.privacy-contact-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.privacy-contact-address {
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.privacy-contact-address .privacy-contact-icon {
  margin: 0;
  flex-shrink: 0;
}

.privacy-contact-content h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.privacy-update-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  gap: 10px;
  align-items: center;
}

.privacy-update-info i {
  color: #3498db;
  font-size: 3rem;
}

.privacy-update-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.privacy-faq-container {
  display: flex;
  flex-direction: column;
}

.privacy-faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.privacy-faq-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.privacy-faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.privacy-faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.privacy-faq-question i:first-child {
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.privacy-faq-question h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  flex: 1;
}

.privacy-faq-toggle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.privacy-faq-item.active .privacy-faq-toggle {
  transform: rotate(180deg);
}

.privacy-faq-answer {
  padding: 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  display: none;
}

.privacy-faq-item.active .privacy-faq-answer {
  display: block;
}

/* Responsive Design for Privacy */
@media (max-width: 768px) {
  .privacy-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .privacy-sidebar {
    position: static;
    order: 2;
    height: auto;
    margin-top: 1rem;
  }

  .privacy-sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .privacy-sidebar-nav {
    gap: 0.4rem;
  }

  .privacy-nav-item {
    padding: 10px 14px;
    font-size: 0.95rem;
    min-height: 44px; /* Touch target minim */
  }

  .privacy-nav-item i {
    font-size: 1rem;
    width: 18px;
  }
  
  .privacy-content {
    order: 1;
  }

  .privacy-section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    gap: 15px;
  }

  .privacy-section-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .privacy-section-title-group {
    width: 100%;
  }

  .privacy-section-title {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .privacy-section-subtitle {
    font-size: 1rem;
  }

  .privacy-section-content {
    padding: 1rem;
  }

  .privacy-info-box {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .privacy-info-box i {
    font-size: 2rem;
  }

  .privacy-payment-methods,
  .privacy-reservation-methods,
  .privacy-contact-top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .privacy-payment-card {
    padding: 1.2rem;
  }

  .privacy-payment-content h3 {
    font-size: 1.1rem;
  }

  .privacy-payment-content p {
    font-size: 0.85rem;
  }

  .privacy-payment-content .privacy-method-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .privacy-method-card {
    padding: 1.2rem;
  }

  .privacy-method-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .privacy-method-content h3 {
    font-size: 1.1rem;
  }

  .privacy-method-content p {
    font-size: 0.85rem;
  }

  .privacy-contact-card {
    padding: 1.2rem;
  }

  .privacy-contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .privacy-contact-card h3 {
    font-size: 1rem;
  }

  .privacy-contact-address {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }

  .privacy-contact-address .privacy-contact-icon {
    margin: 0 auto 0.8rem;
  }

  .privacy-update-info {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    gap: 0.8rem;
  }

  .privacy-update-info i {
    font-size: 2rem;
  }

  .privacy-rights-grid {
    grid-template-columns: 1fr;
  }

  .privacy-rights-grid .privacy-payment-content .privacy-method-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    margin-right: 0;
    margin-bottom: 0.8rem;
  }

  .privacy-title-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .privacy-title-row h3 {
    text-align: center;
  }

  .privacy-faq-question {
    padding: 1.2rem;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .privacy-faq-question h3 {
    font-size: 1rem;
    flex: 1 1 100%;
  }

  .privacy-faq-question i:first-child {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .privacy-faq-answer {
    padding: 0 1.2rem 1.2rem;
    font-size: 0.95rem;
  }

  .privacy-payment-conditions {
    padding: 1.2rem;
  }

  .privacy-payment-conditions h3 {
    font-size: 1.2rem;
  }

  .privacy-liability-grid {
    grid-template-columns: 1fr;
  }
  
  .privacy-rules-container {
    grid-template-columns: 1fr;
  }
  
  #retention .privacy-payment-methods {
    grid-template-columns: 1fr;
  }
  
  #security .privacy-reservation-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .privacy-container {
    padding: 0.5rem;
  }

  .privacy-sidebar {
    padding: 0.8rem;
  }

  .privacy-sidebar-title {
    font-size: 1rem;
  }

  .privacy-nav-item {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .privacy-section-header {
    padding: 1.2rem;
  }

  .privacy-section-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .privacy-section-title {
    font-size: 1.4rem;
  }

  .privacy-section-subtitle {
    font-size: 0.95rem;
  }

  .privacy-section-content {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  .privacy-section-content p {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
  }

  .privacy-info-box {
    padding: 1rem;
  }

  .privacy-info-box i {
    font-size: 1.8rem;
  }

  .privacy-info-box p {
    font-size: 0.9rem;
  }

  .privacy-payment-card,
  .privacy-method-card,
  .privacy-contact-card {
    padding: 1rem;
  }

  .privacy-payment-content h3 {
    font-size: 1rem;
  }

  .privacy-payment-content p {
    font-size: 0.8rem;
  }

  .privacy-payment-content .privacy-method-icon,
  .privacy-method-icon,
  .privacy-contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .privacy-contact-card h3 {
    font-size: 0.95rem;
  }

  .privacy-contact-address {
    padding: 1rem;
  }

  .privacy-contact-content h3 {
    font-size: 0.95rem;
  }

  .privacy-update-info {
    padding: 0.8rem;
  }

  .privacy-update-info i {
    font-size: 1.8rem;
  }

  .privacy-update-info p {
    font-size: 0.9rem;
  }

  .privacy-rights-grid .privacy-payment-content .privacy-method-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .privacy-faq-question {
    padding: 1rem;
  }

  .privacy-faq-question i:first-child {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }

  .privacy-faq-question h3 {
    font-size: 0.95rem;
  }

  .privacy-faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }

  .privacy-payment-conditions {
    padding: 1rem;
  }

  .privacy-payment-conditions h3 {
    font-size: 1.1rem;
  }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
  padding: var(--section-padding);
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-form-card {
  padding: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.contact-form-card.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.contact-cards-container.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-label i {
  color: var(--accent-color);
}

.required {
  color: #ff6b6b;
}

.form-input-wrapper {
  position: relative;
  width: 100%;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  padding-right: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-textarea {
  padding-right: 45px;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

.form-error {
  display: block;
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  min-height: 1.2rem;
}

.char-counter {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  color: rgba( 255, 255, 255, 0.6);
  margin-top: -1.5rem;
  transition: color 0.3s ease;
}

.char-counter.warning {
  color: #ff0000;
  font-weight: 600;
}

.form-input.input-error,
.form-textarea.input-error {
  border-color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.1) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2) !important;
}

.form-input:valid:not(:placeholder-shown),
.form-textarea:valid:not(:placeholder-shown) {
  border-color: transparent;
}

.form-input:valid:not(:placeholder-shown):focus,
.form-textarea:valid:not(:placeholder-shown):focus {
  border-color: transparent;
}

/* Iconiță validare progresivă */
.form-valid-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  opacity: 0;
  color: #2ed573;
  font-size: 1.2rem;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1;
}

.form-valid-icon.show {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.form-valid-icon i {
  animation: checkMarkPop 0.4s ease-out;
}

/* Animație pentru textarea - iconița trebuie adaptată */
.form-textarea ~ .form-valid-icon {
  top: 15px;
  transform: translateY(0) scale(0);
}

.form-textarea ~ .form-valid-icon.show {
  transform: translateY(0) scale(1);
}

/* Keyframe animation pentru iconiță */
@keyframes checkMarkPop {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Select dropdown - simplu */
select.form-input {
  color: white;
}

select.form-input option {
  background: #1a1a2e;
  color: white;
}

select.form-input + .form-valid-icon {
  right: 30px;
}

.btn-submit {
  display: block;
  margin: 0 auto;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Stil pentru butonul de succes (verde) */
.btn-submit.success {
  background: linear-gradient(135deg, #2ed573 0%, #27ae60 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(46, 213, 115, 0.4);
  opacity: 1;
  cursor: default;
}

.btn-submit.success:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(46, 213, 115, 0.4);
}

.btn-submit.success i {
  margin-right: 8px;
}

.form-message {
  margin-top: 1rem;
  padding: 15px;
  border-radius: 10px;
  display: none;
  font-weight: 500;
}

.form-message.success {
  background: rgba(46, 213, 115, 0.2);
  border: 1px solid rgba(46, 213, 115, 0.4);
  color: #2ed573;
  display: block;
}

.form-message.error {
  background: rgba(255, 107, 107, 0.2);
  border: 1px solid rgba(255, 107, 107, 0.4);
  color: #ff6b6b;
  display: block;
}

/* Honeypot field - ascuns complet pentru protecție anti-spam */
.honeypot-field {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
}

/* Contact Cards */

.contact-info-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.contact-info-card:hover::before {
  left: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-card-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-info-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-card-text {
  flex: 1;
}

.contact-info-card h3 {
  color: white;
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

.contact-info-card .btn {
  width: 100%;
}

.btn-visit-address {
  padding: 15px 0 15px 60px !important;
  flex-wrap: wrap; /* Permite line breaks pentru adresa pe desktop */
  align-items: center; /* Aliniere la început pentru a permite line breaks */
  white-space: normal; /* Permite textului să se întoarcă pe mai multe linii */
}

/* Stiluri pentru afișarea adresei pe desktop și mobile */
.address-desktop {
  display: inline;
}

.address-mobile {
  display: none;
}

/* Map and Directions */
.map-directions-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.map-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.map-card.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

.map-card:hover {
  transform: none;
  box-shadow: 0 8px 32px var(--glass-shadow);
}

.map-title {
  padding: 3rem 3rem 2rem 3rem;
  margin: 0;
  flex-shrink: 0;
}

.map-container {
  width: 100%;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.map-wrapper {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 550px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 20px rgba(102, 126, 234, 0.3);
  pointer-events: none;
}

.directions-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.directions-cards-container.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

.direction-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.direction-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.direction-card:hover::before {
  left: 100%;
}

.direction-card:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.direction-card-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.direction-card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.direction-card:hover .direction-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.direction-card-text {
  flex: 1;
}

.direction-card h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.direction-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.direction-card ul li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.direction-card ul li i {
  color: var(--accent-color);
  width: 45px;
  font-size: 1.8rem;
}

.direction-card ul li:last-child {
  margin-bottom: 0;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
  .contact-form-wrapper,
  .map-directions-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem; /* Adăugat gap pentru spacing pe mobile */
  }

  .contact-cards-container,
  .directions-cards-container {
    gap: 1rem;
  }

  .map-title {
    padding: 2rem 2rem 1.5rem 2rem;
  }

  .map-wrapper {
    min-height: 350px;
  }

  .map-wrapper iframe {
    height: 350px; /* Înălțime fixă pentru mobile */
  }

  /* Optimizări pentru formular pe tabletă */
  .contact-form-card {
    padding: 2rem;
  }

  .form-group {
    margin-bottom: 1.25rem; /* Spacing redus între câmpuri */
  }

  .form-input,
  .form-textarea {
    font-size: 16px; /* Previne zoom automat pe iOS */
    padding: 14px 16px; /* Touch target mai mare */
    padding-right: 40px; /* Spațiu pentru iconiță */
  }

  .form-textarea {
    padding-right: 45px;
    min-height: 100px; /* Înălțime redusă pe mobile */
  }

  /* Touch targets pentru butoane */
  .btn-submit,
  .btn-primary,
  .btn-secondary {
    min-height: 44px; /* Touch target minim conform WCAG */
    padding: 12px 24px;
    font-size: 1rem;
  }

  /* Optimizări pentru carduri de contact */
  .contact-info-card .btn {
    min-height: 44px;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .map-title {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    font-size: 1.8rem;
  }

  .contact-info-card,
  .direction-card {
    padding: 1.5rem;
  }

  .contact-card-content,
  .direction-card-content {
    gap: 1rem;
  }

  .contact-card-icon,
  .direction-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .contact-info-card h3,
  .direction-card h3 {
    font-size: 1rem;
  }

  .contact-info-card p {
    font-size: 0.85rem;
  }

  .direction-card ul li {
    font-size: 0.85rem;
  }

  .contact-form-card,
  .map-card {
    padding: 1.5rem; /* Padding redus pentru ecrane mici */
  }

  /* Optimizări specifice pentru formular pe telefon */
  .form-group {
    margin-bottom: 1rem; /* Spacing redus între câmpuri */
  }

  .form-input,
  .form-textarea {
    font-size: 16px; /* Previne zoom automat pe iOS - IMPORTANT */
    padding: 14px 14px; /* Touch target optimizat */
    padding-right: 40px;
    border-radius: 8px; /* Border radius mai mic pe mobile */
  }

  .form-textarea {
    padding-right: 45px;
    min-height: 120px; /* Înălțime redusă pentru mobile */
  }

  .form-label {
    font-size: 0.9rem; /* Font size redus pentru label-uri */
    margin-bottom: 0.4rem;
  }

  /* Touch targets pentru butoane pe telefon */
  .btn-submit {
    min-height: 48px; /* Touch target mai mare pe telefon */
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%; /* Buton full width pe mobile */
    margin-top: 0.5rem;
  }

  .btn-primary,
  .btn-secondary {
    min-height: 44px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  /* Optimizări pentru carduri de contact pe telefon */
  .contact-info-card .btn {
    min-height: 44px;
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  /* Schimbare adresă pentru mobile */
  .btn-visit-address {
    padding: 14px 16px !important;
    white-space: normal; /* Permite textului să se întoarcă pe mai multe linii */
    line-height: 1.4;
    text-align: left;
    align-items: center; /* Centrare verticală pentru iconiță și text */
    justify-content: flex-start; /* Aliniere la stânga */
  }

  .btn-visit-address i {
    align-self: center; /* Centrare verticală pentru iconiță */
    flex-shrink: 0; /* Previne micșorarea iconiței */
  }

  .address-desktop {
    display: none; /* Ascunde adresa desktop pe mobile */
  }

  .address-mobile {
    display: inline; /* Afișează adresa mobile */
  }

  /* Harta optimizată pentru telefon */
  .map-wrapper {
    min-height: 300px; /* Înălțime redusă pentru telefon */
  }

  .map-wrapper iframe {
    height: 300px; /* Înălțime fixă pentru telefon */
  }

  /* Spacing optimizat între secțiuni */
  .contact-section {
    padding: 2rem 1rem; /* Padding redus pe mobile */
  }

  .contact-form-wrapper {
    gap: 1.5rem; /* Gap redus între formular și carduri */
  }

  .map-directions-wrapper {
    gap: 1.5rem; /* Gap redus între hartă și direcții */
  }

  /* Char counter și error messages optimizate */
  .char-counter {
    font-size: 0.7rem;
    margin-top: -1.2rem;
  }

  .form-error {
    font-size: 0.8rem;
    margin-top: 0.25rem;
  }

  /* Iconițe de validare optimizate */
  .form-valid-icon {
    font-size: 1rem; /* Iconiță mai mică pe mobile */
    right: 10px;
  }

  .form-textarea ~ .form-valid-icon {
    top: 12px;
  }
}