:root {
  --primary: #1B4F72;
  --primary-light: #2980B9;
  --secondary: #F39C12;
  --secondary-dark: #D68910;
  --accent: #E74C3C;
  --bg-main: #FAFAFA;
  --bg-alt: #F0F4F8;
  --text-main: #2C3E50;
  --text-secondary: #5D6D7E;
  --border: #D5DBDB;
  --success: #27AE60;
  --footer-bg: #1B3A4F;
  --footer-text: #BDC3C7;
  --radius: 8px;
  --shadow: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }

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

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

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

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

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
}

.logo .logo-mejores { color: var(--primary); }
.logo .logo-sitges { color: var(--secondary); }
.logo .fa-star { color: var(--secondary); font-size: 1.2rem; }

.main-nav { display: flex; align-items: center; gap: 30px; }

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 8px 0;
  position: relative;
}

.main-nav a:hover { color: var(--primary); }

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

.main-nav a:hover::after { width: 100%; }

/* Dropdown servicios */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-toggle .fa-chevron-down {
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.nav-dropdown:hover .fa-chevron-down { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 25px;
  min-width: 700px;
  z-index: 100;
  border: 1px solid var(--border);
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu .dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-main);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a i {
  color: var(--secondary);
  width: 18px;
  text-align: center;
  font-size: 0.85rem;
}

.btn-cta {
  display: inline-block;
  background: var(--secondary);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-cta:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(243,156,18,0.4);
  color: #fff !important;
}

.btn-cta-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

.btn-cta-accent {
  background: var(--accent);
}

.btn-cta-accent:hover {
  background: #C0392B;
  box-shadow: 0 4px 15px rgba(231,76,60,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-main);
  border-radius: 3px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero .hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

.hero-search {
  max-width: 600px;
  margin: 0 auto 25px;
  position: relative;
}

.hero-search input {
  width: 100%;
  padding: 18px 140px 18px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 5px 30px rgba(0,0,0,0.2);
  outline: none;
}

.hero-search input::placeholder { color: #999; }

.hero-search button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  padding: 0 30px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  font-family: 'Open Sans', sans-serif;
}

.hero-search button:hover { background: var(--secondary-dark); }

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 50;
}

.search-results-dropdown.active { display: block; }

.search-results-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--text-main);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.search-results-dropdown a:last-child { border-bottom: none; }
.search-results-dropdown a:hover { background: var(--bg-alt); }
.search-results-dropdown a i { color: var(--secondary); width: 20px; text-align: center; }

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-badges span {
  color: rgba(255,255,255,0.95);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-badges .fa-check-circle { color: var(--secondary); }

/* ===================== SECTIONS ===================== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
}

.section-dark h2 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.9); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 10px;
}

/* ===================== VALUE PROPS ===================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.value-card .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.icon-gold { background: rgba(243,156,18,0.1); color: var(--secondary); }
.icon-blue { background: rgba(27,79,114,0.1); color: var(--primary); }
.icon-green { background: rgba(39,174,96,0.1); color: var(--success); }

.value-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===================== CATEGORIES GRID ===================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
  text-decoration: none;
  display: block;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--secondary);
}

.category-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.category-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-main);
}

.category-card span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ===================== STEPS ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border);
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--primary);
}

.step-number i {
  font-size: 1.5rem;
  color: var(--primary);
}

.step-number .num {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===================== GEO SECTION ===================== */
.geo-content {
  max-width: 800px;
  margin: 0 auto;
}

.geo-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.geo-content .link-arrow {
  color: var(--secondary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.geo-content .link-arrow:hover { gap: 12px; }

/* ===================== CTA SECTION ===================== */
.cta-section {
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  margin-bottom: 15px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.cta-badges span {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-col .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col .footer-logo .fa-star { color: var(--secondary); }

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

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: var(--footer-text);
  font-size: 0.9rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.subfooter {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

.subfooter p { margin-bottom: 3px; }

/* ===================== BREADCRUMBS ===================== */
.breadcrumbs {
  padding: 15px 0;
  font-size: 0.88rem;
}

.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { color: var(--text-secondary); margin: 0 8px; }
.breadcrumbs .current { color: var(--text-main); font-weight: 600; }

/* ===================== CATEGORY PAGE ===================== */
.category-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 50px 0 40px;
  text-align: center;
  color: #fff;
}

.category-hero h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.category-hero .breadcrumbs a { color: rgba(255,255,255,0.7); }
.category-hero .breadcrumbs a:hover { color: #fff; }
.category-hero .breadcrumbs span { color: rgba(255,255,255,0.5); }
.category-hero .breadcrumbs .current { color: #fff; }

.badge-updated {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 10px;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-text h2 {
  margin-bottom: 15px;
}

.intro-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===================== BUSINESS CARDS ===================== */
.business-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 25px;
  transition: all var(--transition);
  border-left: 4px solid var(--primary);
}

.business-card:hover {
  box-shadow: var(--shadow-hover);
}

.business-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.business-rank {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.rank-gold { background: linear-gradient(135deg, #F39C12, #F1C40F); }
.rank-silver { background: linear-gradient(135deg, #95A5A6, #BDC3C7); }
.rank-bronze { background: linear-gradient(135deg, #E67E22, #F39C12); }
.rank-default { background: var(--primary); }

.business-card-header .business-info { flex: 1; }

.business-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.business-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.business-rating .stars { color: var(--secondary); }
.business-rating .rating-text { color: var(--text-secondary); }

.business-image-placeholder {
  width: 120px;
  height: 90px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.business-image-placeholder i {
  font-size: 2rem;
  color: var(--border);
}

.business-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.business-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.business-detail i {
  color: var(--primary);
  width: 18px;
  text-align: center;
}

.business-detail a {
  color: var(--primary);
  font-weight: 600;
}

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

.business-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.business-review {
  background: var(--bg-alt);
  padding: 20px;
  border-radius: var(--radius);
  border-left: 3px solid var(--secondary);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.92rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 8px;
}

.review-link {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
}

/* ===================== TIPS ===================== */
.tips-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.tips-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tips-list li i {
  color: var(--success);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.tips-list li strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text-main);
}

.tips-list li p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* ===================== FAQ ACCORDION ===================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-alt); }

.faq-question h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.faq-question .fa-chevron-down {
  transition: transform var(--transition);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.faq-item.active .faq-question .fa-chevron-down {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===================== CONTACT PAGE ===================== */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-benefits {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.benefit-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.benefit-card i {
  font-size: 1.5rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.benefit-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 5px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.form-group label .required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,79,114,0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.form-checkbox label {
  font-weight: 400;
  font-size: 0.88rem;
  margin-bottom: 0;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}

.form-success i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 15px;
}

.form-success h3 {
  color: var(--success);
  margin-bottom: 10px;
}

/* ===================== LEGAL PAGES ===================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h1 {
  margin-bottom: 30px;
  text-align: center;
}

.legal-content h2 {
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-content ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

/* ===================== ABOUT PAGE ===================== */
.about-section {
  padding: 60px 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.about-step {
  text-align: center;
  padding: 25px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.about-step .step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 15px;
}

.about-step h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}

.about-step p {
  font-size: 0.9rem;
  margin: 0;
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  display: none;
}

.cookie-banner.active { display: block; }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex: 1;
  min-width: 300px;
}

.cookie-inner a { color: var(--primary); text-decoration: underline; }

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Open Sans', sans-serif;
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--success);
  color: #fff;
}

.cookie-accept:hover { background: #219A52; }

.cookie-reject {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.cookie-reject:hover { background: var(--bg-alt); }

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  z-index: 99;
}

.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--secondary); transform: translateY(-3px); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-dropdown-menu { min-width: 500px; }
  .nav-dropdown-menu .dropdown-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 50px 0; }

  .hamburger { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-hover);
    border-top: 1px solid var(--border);
  }

  .main-nav.active { display: flex; }

  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .main-nav a::after { display: none; }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 10px 0;
    min-width: auto;
    display: none;
  }

  .nav-dropdown.active .nav-dropdown-menu { display: block; }

  .nav-dropdown-menu .dropdown-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding: 50px 0; }
  .hero h1 { font-size: 2rem; }
  .hero .hero-subtitle { font-size: 1rem; }
  .hero-search input { padding: 15px 120px 15px 20px; }

  .value-grid,
  .steps-grid,
  .about-steps { grid-template-columns: 1fr; }

  .steps-grid::before { display: none; }

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

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

  .business-card-header { flex-direction: column; }
  .business-image-placeholder { width: 100%; height: 150px; }
  .business-details { grid-template-columns: 1fr; }

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

  .category-hero h1 { font-size: 1.8rem; }

  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-inner p { min-width: auto; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.7rem; }
  .hero-badges { flex-direction: column; align-items: center; gap: 10px; }
  .hero-search button { padding: 0 15px; font-size: 0.9rem; }
}

@media print {
  .site-header, .site-footer, .cookie-banner, .back-to-top, .cta-section { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}
