/* ==========================================================================
   R.E.Solution SRLS — Components
   Navbar, Footer, Cards, Buttons, Hero, Forms, and all UI components
   ========================================================================== */

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 16px 0;
  border-bottom: 1px solid var(--accent-gold-border);
  transition: background var(--transition-base), backdrop-filter var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: none;
}

.navbar-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.navbar-menu a {
  color: var(--text-primary);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-base);
}

.navbar-menu a:hover {
  color: var(--accent-gold);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--border-radius);
  padding: 8px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-base),
              visibility var(--transition-base),
              transform var(--transition-base);
}

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

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  display: block;
  margin: 5px 0;
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile navbar */
@media (max-width: 767px) {
  .hamburger {
    display: block;
  }

  .navbar-menu {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 280px;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.4s ease;
  }

  .navbar-menu.open {
    right: 0;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #1a1a1a;
  color: #f5f5f5;
  padding: 60px 0 24px;
  border-top: 1px solid var(--accent-gold-border);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #f5f5f5;
}

.footer-tagline {
  color: #a0a0a0;
  font-size: 0.9rem;
  font-style: italic;
}

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

.footer-links a {
  color: #a0a0a0;
  font-size: 0.9rem;
  line-height: 2;
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #a0a0a0;
  font-size: 0.8rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--accent-gold);
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  margin-bottom: 12px;
}

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

.card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Card large variant */
.card-large {
  padding: 40px;
}

.card-large h2 {
  margin-bottom: 16px;
}

.card-large ul {
  list-style: none;
  margin: 16px 0;
}

.card-large li {
  padding: 4px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.card-large li::before {
  content: "\2014";
  color: var(--accent-gold);
  margin-right: 8px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gold);
  color: #fff;
}

.btn-primary:hover {
  background: #6e1515;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #151515;
  color: #fff;
}

.btn-secondary:hover {
  background: #333;
  transform: translateY(-1px);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-decorator {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 20vw, 20rem);
  color: var(--accent-gold);
  opacity: 0.06;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Inner page hero (shorter) */
.hero-inner {
  padding: 160px 0 80px;
  min-height: auto;
}

.hero-inner h1 {
  margin-bottom: 16px;
}

/* ==========================================================================
   SCROLL INDICATOR
   ========================================================================== */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.75rem;
}

.scroll-indicator svg {
  display: block;
  margin: 8px auto 0;
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--accent-gold-border);
  border-bottom: 1px solid var(--accent-gold-border);
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent-gold);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 8px;
}

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

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--accent-gold-border);
}

/* ==========================================================================
   BADGE
   ========================================================================== */
.badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--accent-gold-border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 4px;
}

/* ==========================================================================
   METHOD GRID
   ========================================================================== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.method-item {
  text-align: center;
  padding: 24px;
}

.method-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--accent-gold);
}

.method-icon svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   TAGLINE
   ========================================================================== */
.tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--text-primary);
  text-align: center;
  padding: 40px 0;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-form {
  max-width: 600px;
}

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

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-base);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-gold);
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 24px;
}

/* ==========================================================================
   SERVICE DETAIL — Redesigned Layout
   ========================================================================== */

/* Intro block with accent border */
.service-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0 60px;
}
.service-intro-text {
  font-size: 1.2rem;
  line-height: 2;
  color: var(--text-secondary);
  border-left: 3px solid var(--accent-gold);
  padding-left: 28px;
  max-width: 700px;
}

/* Service section — alternating backgrounds */
.service-section {
  padding: 80px 0;
}
.service-section:nth-child(even) {
  background: var(--bg-secondary);
}
.service-section .container {
  max-width: 1100px;
}

/* Section header with icon */
.service-section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}
.service-section-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--accent-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.service-section-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-section-header h2 {
  margin: 0;
  padding-top: 6px;
}
.service-section-header p {
  color: var(--text-secondary);
  margin-top: 8px;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
}

/* Two-column layout: text + feature cards */
.service-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-text p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  max-width: 70ch;
}

/* Feature cards (sidebar) */
.service-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-feature {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.service-section:nth-child(even) .service-feature {
  background: #fff;
}
.service-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gold-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--accent-gold);
}
.service-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-feature h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}
.service-feature p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* Full-width text (when no sidebar) */
.service-full-text {
  max-width: 720px;
}
.service-full-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

/* Highlight box */
.service-highlight {
  background: var(--accent-gold-light);
  border: 1px solid var(--accent-gold-border);
  border-radius: 10px;
  padding: 28px 32px;
  margin-top: 32px;
}
.service-highlight h4 {
  color: var(--accent-gold);
  margin-bottom: 8px;
}
.service-highlight p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Key points grid */
.service-keypoints {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.service-keypoint {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.service-keypoint-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.service-keypoint-icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-keypoint h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.service-keypoint p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Norms box */
.service-norms {
  background: var(--bg-secondary);
  padding: 28px 32px;
  border-radius: 10px;
  border-left: 3px solid var(--accent-gold);
  margin-top: 40px;
}
.service-section:nth-child(even) .service-norms {
  background: #fff;
}
.service-norms h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}
.service-norms p {
  margin: 0;
}

/* CTA section */
.service-cta-section {
  padding: 80px 0;
  text-align: center;
}
.service-cta-section h2 {
  margin-bottom: 16px;
}
.service-cta-section p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Sensor/list grid */
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.service-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  font-size: 0.93rem;
  color: var(--text-secondary);
}
.service-section:nth-child(even) .service-list-item {
  background: #fff;
}
.service-list-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 2;
}

/* Service quick nav */
.service-nav {
  padding: 0 0 40px;
}
.service-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color var(--transition-base), transform var(--transition-base);
}
.service-nav-item:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}
.service-nav-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--accent-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-nav-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-nav-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-gold);
}
.service-nav-item span {
  display: block;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .service-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-keypoints {
    grid-template-columns: 1fr;
  }
  .service-list-grid {
    grid-template-columns: 1fr;
  }
  .service-section-header {
    flex-direction: column;
    gap: 12px;
  }
  .service-nav-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HIGHLIGHT POINTS
   ========================================================================== */
.highlight-points {
  list-style: none;
}

.highlight-points li {
  padding: 14px 0 14px 24px;
  border-left: 2px solid var(--accent-gold);
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   TEAM GRID
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-item {
  text-align: center;
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--border-radius);
}

@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CHOOSE US LIST
   ========================================================================== */
.choose-list {
  list-style: none;
}

.choose-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.choose-list li::before {
  content: "\2713";
  color: var(--accent-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--bg-primary);
  border-top: 2px solid var(--accent-gold);
  padding: 24px;
  display: none;
}
.cookie-banner.active {
  display: block;
}
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1;
  min-width: 300px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}
.cookie-banner p a {
  color: var(--accent-gold);
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner .btn-manage {
  background: none;
  border: none;
  color: var(--accent-gold);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: var(--font-body);
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.4);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  padding: 32px;
  max-height: 80vh;
  overflow-y: auto;
}
.cookie-modal h3 {
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cookie-category-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.cookie-category-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
}
/* Toggle switch */
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(0,0,0,0.15);
  border-radius: 26px;
  transition: var(--transition-base);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: var(--transition-base);
}
.toggle input:checked + .toggle-slider {
  background: var(--accent-gold);
}
.toggle input:checked + .toggle-slider::before {
  transform: translateX(22px);
}
.toggle input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* ===== Form Checkbox ===== */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent-gold);
  flex-shrink: 0;
}
.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.form-checkbox label a {
  color: var(--accent-gold);
}

/* ===== Form Feedback ===== */
.form-feedback {
  margin-top: 16px;
  padding: 0;
  font-size: 0.9rem;
  border-radius: var(--border-radius);
  transition: var(--transition-base);
}
.form-feedback.success {
  padding: 16px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #81c784;
}
.form-feedback.error {
  padding: 16px;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #e57373;
}

/* ===== Newsletter Section ===== */
.newsletter-section {
  background: var(--bg-secondary);
  padding: 80px 0;
  text-align: center;
}
.newsletter-section h2 {
  margin-bottom: 12px;
}
.newsletter-section > .container > p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
}
.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter-form .form-row {
  display: flex;
  gap: 12px;
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-base);
}
.newsletter-form input:focus {
  border-color: var(--accent-gold);
  outline: none;
}
.newsletter-form button {
  padding: 14px 32px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  border: 2px solid var(--accent-gold);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-base);
}
.newsletter-form button:hover {
  background: transparent;
  color: var(--accent-gold);
}
@media (max-width: 767px) {
  .newsletter-form .form-row {
    flex-direction: column;
  }
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Navbar Logo Image ===== */
.navbar-logo {
  position: relative;
  z-index: 10;
}
.navbar-logo img {
  height: 80px;
  width: auto;
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.navbar-logo img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
/* Logo padding compensation in navbar */
.navbar {
  padding: 12px 0;
}
.navbar.scrolled .navbar-logo img {
  height: 56px;
  padding: 4px 12px;
}

/* ===== Legal Pages ===== */
.legal-content {
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}
.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 1.02rem;
}
.legal-content ul {
  margin: 12px 0;
  padding-left: 24px;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
}
.legal-content th,
.legal-content td {
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.legal-content th {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 600;
}
.legal-content td {
  color: var(--text-secondary);
}
.legal-content table {
  border: 1px solid rgba(0,0,0,0.1);
}
.legal-content th,
.legal-content td {
  border-color: rgba(0,0,0,0.08);
}
.legal-content small {
  display: block;
  margin-top: 40px;
  color: var(--text-secondary);
  font-size: 0.8rem;
}
