/* SWISSROPE - Main Stylesheet */
/* Premium, minimal, Swiss design */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: #DC143C;
  --dark: #2C3E50;
  --steel: #5A6F7D;
  --light: #F5F5F5;
  --success: #27AE60;
  --error: #E74C3C;
  --white: #FFFFFF;
  --header-height-mobile: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

@media (max-width: 1023px) {
  header {
    background: rgba(12, 21, 33, 0.85);
    backdrop-filter: blur(12px);
  }

  .header-actions .btn {
    display: none;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .logo img {
    height: 36px;
  }
}

header.scrolled {
  background: rgba(44, 62, 80, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height-mobile);
}

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

.lang-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-inline a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.lang-inline a:hover,
.lang-inline a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-color: var(--white);
  outline: none;
}

.lang-inline a.active {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

@media (max-width: 767px) {
  .header-actions {
    gap: 0.65rem;
  }
}

@media (max-width: 1023px) {
  nav .lang-dropdown {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .header-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  #nav-desktop {
    display: flex;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    justify-content: center;
  }

  #nav-desktop > a,
  #nav-desktop > div:not(.lang-dropdown) {
    display: none !important;
  }

  #nav-desktop .lang-dropdown {
    display: block !important;
  }

  .lang-inline {
    display: none !important;
  }

  .header-actions {
    justify-self: end;
  }
}

@media (min-width: 1024px) {
  .lang-inline {
    display: none;
  }
}

.logo img {
  height: 40px;
  width: auto;
}

nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 80px;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
  }

  .header-actions {
    justify-self: end;
    gap: 1.25rem;
  }

  .header-actions .btn {
    display: inline-flex;
    align-items: center;
  }

  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu .mobile-lang-list {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header-actions {
    gap: 0.65rem;
  }
}

.logo img {
  height: 40px;
  width: auto;
}

nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    min-height: 80px;
  }

  .header-left {
    gap: 1rem;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
  }

  .header-actions {
    justify-self: end;
  }
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

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

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark);
  border: 1px solid rgba(90, 111, 125, 0.2);
  border-radius: 8px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.lang-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.lang-dropdown {
  position: relative;
  min-width: 0;
}

.lang-dropdown .lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.lang-dropdown .lang-toggle svg {
  width: 12px;
  height: 12px;
}

.lang-dropdown .lang-toggle:hover,
.lang-dropdown .lang-toggle:focus-visible,
.lang-dropdown.open .lang-toggle {
  color: var(--primary);
  outline: none;
}

.lang-dropdown .dropdown-menu {
  min-width: 140px;
  right: 0;
  left: auto;
}

.lang-dropdown .dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lang-dropdown .dropdown-menu a.active {
  color: var(--primary);
}

@media (max-width: 768px) {
  .lang-dropdown:focus-within .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }
}

.mobile-lang-list {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.mobile-lang-list a {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-lang-list a:hover,
.mobile-lang-list a.active {
  color: var(--primary);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--white);
  transition: all 0.3s;
}

.dropdown-menu a:hover {
  background: rgba(90, 111, 125, 0.2);
  color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-switcher button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s;
}

.lang-switcher button.active,
.lang-switcher button:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Open Sans', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #C01030;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  background: rgba(12, 21, 33, 0.98);
  padding: 1.25rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom, 0));
  border-top: 1px solid rgba(255,255,255,0.08);
  position: fixed;
  top: var(--header-height-mobile);
  left: 0;
  right: 0;
  max-height: calc(100vh - var(--header-height-mobile));
  overflow-y: auto;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
}

.mobile-menu a {
  display: block;
  color: var(--white);
  text-decoration: none;
  padding: 0.75rem 0.25rem;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
  border-radius: 6px;
}

.mobile-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.mobile-menu .mobile-cta-btn {
  margin-top: 0.75rem;
  text-align: center;
}

/* Hero */
.hero {
  min-height: 100vh;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  padding: 0 1rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}

.hero-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05); /* Even lighter for wow effect */
  z-index: 1;
}

.hero-content, .hero-text-reveal .container {
  position: absolute !important;
  bottom: 8% !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(40px) !important;
  z-index: 5 !important;
  max-width: 1100px !important;
  width: 90% !important;
  padding: 0 1rem !important;
  opacity: 0 !important;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out !important;
  pointer-events: none !important;
  display: block !important;
  text-align: center !important;
}

.hero-content.animate-visible, .hero-text-reveal .container.animate-visible {
  opacity: 1 !important;
  transform: translateX(-50%) translateY(0) !important;
}

.hero-text-reveal {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(1.4rem, 3.5vw, 2.8rem) !important;
  color: var(--white) !important;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: clamp(0.9rem, 1.8vw, 1.2rem) !important;
  color: var(--white) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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


.hero.has-video .hero-poster {
  opacity: 0;
  visibility: hidden;
}

.hero.has-fallback .hero-video {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 21, 33, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  z-index: 2000;
}

.modal.hidden {
  display: none;
}

.modal-content {
  position: relative;
  background: var(--white);
  color: var(--dark);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  max-width: 720px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem 2rem 2rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(12, 21, 33, 0.08);
  color: var(--dark);
  font-size: 1.75rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover,
.modal-close:focus {
  background: rgba(12, 21, 33, 0.16);
  transform: scale(1.05);
}

#privacy-modal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

#privacy-modal-content h1,
#privacy-modal-content h2,
#privacy-modal-content h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

#privacy-modal-content a {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .modal-content {
    padding: 2rem 1.5rem 1.5rem;
    max-height: 85vh;
  }

  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 21, 33, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2000;
}

.video-modal.hidden {
  display: none;
}

.video-modal video {
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.video-modal .lightbox-close {
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 1.75rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal .lightbox-close:hover,
.video-modal .lightbox-close:focus {
  background: rgba(220, 20, 60, 0.7);
  transform: scale(1.05);
}

.hero.has-fallback .hero-poster {
  opacity: 1;
  visibility: visible;
}

.play-overlay {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: rgba(12, 21, 33, 0.55);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 3;
}

.hero.show-play-overlay .play-overlay {
  display: inline-flex;
}

.play-overlay svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.play-overlay span {
  font-size: 0.85rem;
}

.play-overlay .play-backdrop {
  display: none;
}

.play-overlay:hover,
.play-overlay:focus-visible {
  background: rgba(220, 20, 60, 0.8);
  transform: translateY(-2px);
  outline: none;
}

@media (min-width: 768px) {
  .hero.has-video .hero-poster {
    display: none;
  }

  .hero.has-video .hero-video {
    display: block;
  }

}

@media (max-width: 767px) {
  .play-overlay {
    bottom: 1.5rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
  }

  .play-overlay svg {
    width: 24px;
    height: 24px;
  }
}

/* Hide play button on small screens (mobile) because video autoplays/plays inline there */
@media (max-width: 767px) {
  .hero.has-video .play-overlay {
    display: none !important;
  }
}

/* Make mobile hamburger/menu button more visible on top of varied backgrounds */
@media (max-width: 1023px) {
  .mobile-menu-btn {
    background: rgba(0, 0, 0, 0.35);
    padding: 0.35rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
  }
}

/* Keep hero text pure white for consistent contrast */
.hero h1,
.hero p {
  color: #ffffff;
}

/* Improve technical data tables spacing and readability on desktop and mobile */
.spec-table {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

table th,
table td {
  text-align: left;
  padding: 1rem;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
}

table th {
  background: var(--light);
  font-weight: 700;
  color: var(--dark);
}

table tr:nth-child(even) {
  background: #fafafa;
}

table tr:hover {
  background: #f0f4f8;
}

table tr:last-child td {
  border-bottom: none;
}

.spec-table table {
    margin: 2rem 0;
}

@media (max-width: 767px) {
  table th,
  table td {
    padding: 0.5rem 0.6rem;
    display: block;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-poster {
    display: block;
  }
}

.hero.has-fallback .hero-poster {
  display: block;
}

.hero.has-fallback .hero-video {
  display: none;
}

@media (max-width: 767px) {
  .hero {
    padding: 6rem 1.25rem 4rem;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* Sections */
section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 6rem 0;
  }
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
  color: var(--dark);
}

.form-success h2,
.form-success #form-message {
  text-align: center;
}

.bg-light {
  background: var(--light);
}

.bg-dark {
  background: var(--dark);
  color: var(--white);
}

.bg-dark .section-title {
  color: var(--white);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.stat-item .number {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  text-align: center;
  word-break: keep-all;
  text-wrap: balance;
}

.stat-item .label {
  font-size: 1rem;
  color: var(--steel);
}

.bg-dark .stat-item .label {
  color: rgba(255,255,255,0.8);
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem 1.5rem;
  }

  .stat-item {
    padding: 1.25rem;
  }
}

@media (max-width: 599px) {
  .stat-item .number {
    font-size: 1.75rem;
  }

  .stat-item .label {
    font-size: 0.95rem;
  }
}

@media (min-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Project info bar */

.project-info-bar {
  padding: 1.5rem 0;
  position: static;
  top: auto;
  z-index: auto;
}

.project-info-bar .grid {
  text-align: center;
  gap: 2rem;
}

/* Press page cards */
.press-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.press-grid .card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.press-grid .card-content .btn {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}

/* Project story cards */
.project-story-card {
  height: 100%;
}

.project-story-card .card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.project-story-card .card-content h2 {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .project-info-bar {
    position: static;
    top: auto;
    z-index: auto;
  }
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

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

/* Cards */
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

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

.card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.card-content p {
  color: var(--steel);
  margin-bottom: 1rem;
}

/* Aspect Ratio */
.aspect-16-9 {
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

/* CTA Bar */
.cta-bar {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.cta-bar h2 {
  margin-bottom: 1.5rem;
}

/* Sticky CTA (Mobile) */
.sticky-cta {
  display: none;
}

#sticky-cta {
  display: none !important;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

footer h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--primary);
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .sticky-cta {
  transform: translateY(100%);
}

.footer-bottom {
  border-top: 1px solid rgba(90, 111, 125, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .developed-by {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom .developed-by a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
}

.footer-bottom .developed-by a:hover {
  opacity: 0.8;
}

.footer-separator {
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-separator {
    display: none;
  }
}

/* Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--steel);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input {
  margin-top: 0.25rem;
  width: auto;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

@media (max-width: 640px) {
  .cookie-banner {
    padding: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.75rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}

/* Animations */
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
