/* Modern CSS Reset & Variables */
:root {
  --primary-color: #0077b6;
  --primary-dark: #005577;
  --secondary-color: #00b4d8;
  --accent-color: #90e0ef;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --background: #f8fafc;
  --surface: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --img-section-content-padding-x: 2.5rem;
}

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

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background);
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: var(--text-light);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: var(--text-light);
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: var(--border-radius-sm);
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

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

/* Header & Hero */
header {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,119,182,0.3) 0%, rgba(0,180,216,0.1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  padding: 0 2rem;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo-container img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
  transition: var(--transition);
}

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

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  font-weight: 300;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border: 2px solid var(--text-light);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) rotate(45deg) translateY(0);
  }
  40% {
    transform: translateX(-50%) rotate(45deg) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) rotate(45deg) translateY(-5px);
  }
}

/* Navigation */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation container with logo for secondary pages */
.nav-container-with-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 3rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#main-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: var(--transition);
}

#main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -8px;
  left: 50%;
  background: var(--gradient-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

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

/* Brand Header for Secondary Pages */
.brand-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
}

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

.brand-logo span {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary-color);
}

.brand-logo:hover {
  color: var(--primary-dark);
}

.brand-logo:hover span {
  color: var(--primary-dark);
}

/* Navigation Logo for Secondary Pages */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-logo span {
  font-weight: 600;
  color: var(--primary-color);
}

.nav-logo:hover {
  color: var(--primary-dark) !important;
}

.nav-logo::after {
  display: none !important;
}

/* Glass Card Effect */
.glass-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

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

section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
}

.section-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
}

/* Image Sections with Parallax */
.img-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

.parallax-section[data-bg="images/galeria1.jpg"] {
  background-image: url('../images/galeria1.jpg');
}

.parallax-section[data-bg="images/galeria2.jpg"] {
  background-image: url('../images/galeria2.jpg');
}

.parallax-section[data-bg="images/galeria3.jpg"] {
  background-image: url('../images/galeria3.jpg');
}

.img-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,119,182,0.7) 0%, rgba(0,180,216,0.3) 100%);
  z-index: 1;
}

.img-section-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  padding: 3rem var(--img-section-content-padding-x);
  max-width: 1100px;
  text-align: center;
  margin: 2rem;
}

.img-section-content h2 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.img-section-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Gallery Section - Wider container */
.gallery-section {
  max-width: 100%;
  padding: 3rem 2rem;
  width: calc(100vw - 4rem);
  margin-left: calc(50% - 50vw + 2rem);
  margin-right: calc(50% - 50vw + 2rem);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.feature-item h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.feature-item li {
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.5;
  text-align: left;
}

.feature-item li:before {
  content: "•";
  color: var(--text-light);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.4rem;
}

.feature-icon {
  font-size: 1.5rem;
}

/* Boat Gallery Section */
.boat-gallery-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.boat-gallery-section h3 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-align: center;
  font-family: var(--font-display);
}

.boat-gallery-section > p {
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin-bottom: 2rem;
}

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

.boat-gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 4/3;
}

.boat-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.boat-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.boat-gallery-item:hover img {
  transform: scale(1.05);
}

.boat-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.boat-gallery-item:hover .boat-gallery-overlay {
  opacity: 1;
}

.boat-gallery-overlay h4 {
  color: var(--text-light);
  font-size: 1rem;
  text-align: center;
  margin: 0;
}

.gallery-zoom {
  font-size: 2rem;
  color: var(--text-light);
}

/* Boat Specifications */
.boat-specs {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-top: 2rem;
}

.boat-specs h4 {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: var(--font-display);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
}

.spec-label {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.spec-value {
  color: var(--text-light);
  font-weight: 600;
}

/* Offer Cards */
.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  max-width: 100%;
  width: calc(100vw - 8rem);
  margin-left: calc(50% - 50vw + 4rem);
  margin-right: calc(50% - 50vw + 4rem);
}

/* Oferta section - Full width like o-nas */
#oferta .img-section-content {
  max-width: 100%;
  width: calc(100vw - 4rem);
  margin-left: calc(50% - 50vw + 2rem);
  margin-right: calc(50% - 50vw + 2rem);
  padding: 3rem 2rem;
}

.offer-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.2);
}

.offer-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.offer-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.offer-card p {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* Fuel Information Section */
.fuel-info-section {
  margin-top: 3rem;
  padding: 2.5rem;
  text-align: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--border-radius-lg);
  max-width: 100%;
}

.fuel-info-section h3 {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.fuel-info-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.fuel-stat-item {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}

.fuel-stat-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.fuel-label {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.fuel-value {
  display: block;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
}

.fuel-note {
  background: rgba(255,255,255,0.08);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
  font-style: italic;
  margin-top: 2rem !important;
}

/* Gallery Slider */
.gallery-slider-container {
  position: relative;
  max-width: min(90vw, 1800px);
  margin: 2rem auto 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.gallery-slider {
  position: relative;
  width: 100%;
  height: min(70vh, 800px);
  overflow: hidden;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.gallery-slide.prev {
  transform: translateX(-100%);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-slide:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--text-light);
  pointer-events: none;
}

.gallery-slide:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  font-size: 3rem;
  margin-bottom: 1rem;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-slide:hover .gallery-zoom {
  transform: scale(1);
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Gallery Navigation */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  opacity: 0;
}

.gallery-slider-container:hover .gallery-nav {
  opacity: 1;
}

.gallery-prev {
  left: 1rem;
}

.gallery-next {
  right: 1rem;
}

.gallery-nav:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav:active {
  transform: translateY(-50%) scale(0.95);
}

/* Gallery Dots */
.gallery-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-dot.active,
.gallery-dot:hover {
  background: var(--text-light);
  border-color: var(--text-light);
  transform: scale(1.2);
}

/* Auto-play indicator */
.gallery-slider-container::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent-color);
  z-index: 11;
  animation: slideProgress 5s linear infinite;
}

@keyframes slideProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.gallery-slider-container:hover::before {
  animation-play-state: paused;
}

/* Legacy Gallery Grid - Remove these styles */
.gallery-grid {
  display: none;
}

.gallery-item {
  display: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: -50px;
  color: var(--text-light);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(0,0,0,0.7);
  transform: scale(1.1);
}

#lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: calc(100% + 120px);
  left: -60px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  pointer-events: all;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.1);
}

/* Video Gallery Slider - Same styling as gallery slider */
.video-gallery-section {
  max-width: 100%;
  padding: 3rem 2rem;
  width: calc(100vw - 4rem);
  margin-left: calc(50% - 50vw + 2rem);
  margin-right: calc(50% - 50vw + 2rem);
}

.video-slider-container {
  position: relative;
  max-width: min(90vw, 1800px);
  margin: 2rem auto 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.video-slider {
  position: relative;
  width: 100%;
  height: min(70vh, 800px);
  overflow: hidden;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.video-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.video-slide.prev {
  transform: translateX(-100%);
}

.video-slide .video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
}

.video-slide .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  transition: var(--transition);
  pointer-events: none;
}

.video-slide:hover .video-wrapper iframe {
  transform: scale(1.02);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--text-light);
  cursor: pointer;
  pointer-events: all;
}

.video-slide:hover .video-overlay {
  opacity: 1;
}

.video-play {
  font-size: 3rem;
  margin-bottom: 1rem;
  transform: scale(0.8);
  transition: var(--transition);
}

.video-slide:hover .video-play {
  transform: scale(1);
}

.video-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Video Navigation */
.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  opacity: 0;
}

.video-slider-container:hover .video-nav {
  opacity: 1;
}

.video-prev {
  left: 1rem;
}

.video-next {
  right: 1rem;
}

.video-nav:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}

.video-nav:active {
  transform: translateY(-50%) scale(0.95);
}

/* Video Dots */
.video-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.video-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.video-dot.active,
.video-dot:hover {
  background: var(--text-light);
  border-color: var(--text-light);
  transform: scale(1.2);
}

/* Auto-play indicator for video slider */
.video-slider-container::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent-color);
  z-index: 11;
  animation: slideProgress 5s linear infinite;
}

.video-slider-container:hover::before {
  animation-play-state: paused;
}

/* Legacy Video Gallery - Keep as fallback but hide */
.video-gallery {
  display: none;
}

.video-item {
  display: none;
}

/* Contact Section */
#kontakt {
  background: var(--surface);
}

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

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--primary-dark);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.instagram-link:hover {
  color: #e1306c !important;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-section button.footer-link {
  background: none;
  border: none;
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
  margin: 0;
  text-align: left;
  transition: var(--transition);
}

.footer-section button.footer-link:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: var(--text-light);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* Responsive Design */
@media (min-width: 1600px) {
  .gallery-slider-container {
    max-width: 1600px;
  }
}

@media (max-width: 1200px) {
  .img-section-content {
    max-width: 950px;
    --img-section-content-padding-x: 2rem;
    padding: 3rem var(--img-section-content-padding-x);
  }
  
  #oferta .img-section-content {
    max-width: 100%;
    width: calc(100vw - 3rem);
    margin-left: calc(50% - 50vw + 1.5rem);
    margin-right: calc(50% - 50vw + 1.5rem);
    padding: 3rem 1.5rem;
  }
  
  .gallery-section {
    max-width: 100%;
    padding: 3rem 1.5rem;
    width: calc(100vw - 3rem);
    margin-left: calc(50% - 50vw + 1.5rem);
    margin-right: calc(50% - 50vw + 1.5rem);
  }
  
  .video-gallery-section {
    max-width: 100%;
    padding: 3rem 1.5rem;
    width: calc(100vw - 3rem);
    margin-left: calc(50% - 50vw + 1.5rem);
    margin-right: calc(50% - 50vw + 1.5rem);
  }
  
  .gallery-slider-container,
  .video-slider-container {
    max-width: min(85vw, 1400px);
  }
  
  .gallery-slider,
  .video-slider {
    height: min(65vh, 700px);
  }
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  #main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
  }

  #main-nav.active {
    left: 0;
  }

  .nav-container {
    flex-direction: column;
    padding: 4rem 2rem 2rem;
    gap: 1.5rem;
    height: 100%;
  }

  .nav-container-with-logo {
    flex-direction: column;
    padding: 4rem 2rem 2rem;
    gap: 2rem;
    height: 100%;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    position: static;
    transform: none;
  }

  #main-nav a {
    font-size: 1.3rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-content h1 {
    font-size: 3rem;
  }

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

  .offer-cards {
    grid-template-columns: 1fr;
    width: calc(100vw - 4rem);
    margin-left: calc(50% - 50vw + 2rem);
    margin-right: calc(50% - 50vw + 2rem);
  }

  .fuel-info-section {
    margin-top: 2rem;
    padding: 2rem 1.5rem;
  }

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

  .fuel-stat-item {
    padding: 1.2rem;
  }

  .fuel-info-section h3 {
    font-size: 1.5rem;
  }

  .video-gallery {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .img-section {
    background-attachment: scroll;
    min-height: 60vh;
  }

  .img-section-content {
    margin: 1rem 0.5rem;
    --img-section-content-padding-x: 2rem;
    padding: 2.5rem var(--img-section-content-padding-x);
    max-width: 100%;
  }

  #oferta .img-section-content {
    max-width: 100%;
    width: calc(100vw - 2rem);
    margin-left: calc(50% - 50vw + 1rem);
    margin-right: calc(50% - 50vw + 1rem);
    padding: 2.5rem 1rem;
  }

  .gallery-section {
    max-width: 100%;
    padding: 2.5rem 1rem;
    width: calc(100vw - 2rem);
    margin-left: calc(50% - 50vw + 1rem);
    margin-right: calc(50% - 50vw + 1rem);
  }

  .video-gallery-section {
    max-width: 100%;
    padding: 2.5rem 1rem;
    width: calc(100vw - 2rem);
    margin-left: calc(50% - 50vw + 1rem);
    margin-right: calc(50% - 50vw + 1rem);
  }

  /* Gallery slider responsive */
  .gallery-slider-container,
  .video-slider-container {
    max-width: 100%;
    margin: 1.5rem auto 0;
    border-radius: var(--border-radius);
  }

  .gallery-slider,
  .video-slider {
    height: 60vh;
  }

  .gallery-nav,
  .video-nav {
    width: 40px;
    height: 40px;
    opacity: 1; /* Always visible on mobile */
  }

  .gallery-prev,
  .video-prev {
    left: 0.5rem;
  }

  .gallery-next,
  .video-next {
    right: 0.5rem;
  }

  .gallery-dots,
  .video-dots {
    bottom: 1rem;
    gap: 0.5rem;
  }

  .gallery-dot,
  .video-dot {
    width: 10px;
    height: 10px;
  }

  /* Boat Gallery Mobile Styles */
  .boat-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .boat-gallery-item {
    aspect-ratio: 16/9;
  }

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

  .boat-specs {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .feature-item {
    padding: 1.25rem;
  }

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

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

  section {
    padding: 4rem 0;
  }

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

  .img-section-content {
    --img-section-content-padding-x: 1rem;
    padding: 2.5rem var(--img-section-content-padding-x);
  }

  #oferta .img-section-content {
    max-width: 100%;
    width: calc(100vw - 2rem);
    margin-left: calc(50% - 50vw + 1rem);
    margin-right: calc(50% - 50vw + 1rem);
    padding: 2.5rem 1rem;
  }

  .gallery-section {
    padding: 2.5rem 0.5rem;
    width: calc(100vw - 1rem);
    margin-left: calc(50% - 50vw + 0.5rem);
    margin-right: calc(50% - 50vw + 0.5rem);
  }

  .video-gallery-section {
    padding: 2.5rem 0.5rem;
    width: calc(100vw - 1rem);
    margin-left: calc(50% - 50vw + 0.5rem);
    margin-right: calc(50% - 50vw + 0.5rem);
  }

  .gallery-slider,
  .video-slider {
    height: 50vh;
  }

  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .gallery-grid {
    gap: 1rem;
  }

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

  /* Mobile Lightbox Adjustments */
  .lightbox-content {
    max-width: 95vw;
    max-height: 85vh;
  }

  #lightbox-img {
    max-width: 95vw;
    max-height: 85vh;
  }

  .lightbox-close {
    top: -40px;
    right: -10px;
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-nav {
    width: calc(100% + 80px);
    left: -40px;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 1.5rem;
    padding: 0.75rem;
    width: 50px;
    height: 50px;
  }

  /* Mobile Gallery Slider */
  .gallery-slider,
  .video-slider {
    height: 400px;
  }

  .video-item {
    min-width: auto;
  }

  /* Boat Gallery Small Mobile Styles */
  .boat-gallery-section h3 {
    font-size: 1.5rem;
  }

  .boat-gallery-grid {
    gap: 0.75rem;
  }

  .boat-specs {
    padding: 1rem;
  }

  .boat-specs h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .spec-item {
    padding: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .feature-item h3 {
    font-size: 1rem;
  }

  .feature-item li {
    font-size: 0.9rem;
  }
}

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

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0066cc;
    --text-dark: #000000;
    --text-light: #ffffff;
    --border: #333333;
  }
}

/* ====================================
   Cookie Consent Banner & Modal
   ==================================== */

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.cookie-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 600px;
}

.cookie-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.cookie-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-buttons button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-accept {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-decline:hover {
  background: var(--background);
  color: var(--text-dark);
}

.btn-settings {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-settings:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1) translateY(0);
}

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

.cookie-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cookie-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: var(--transition);
}

.cookie-close:hover {
  color: var(--text-dark);
}

.cookie-modal-body {
  padding: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
}

.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.cookie-category-header h4 {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.cookie-category-header input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-category p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.cookie-modal-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  justify-content: flex-end;
}

.cookie-modal-footer button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-save {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-save:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

.btn-accept-all {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.btn-accept-all:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
  }

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

  .cookie-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cookie-buttons button {
    flex: 1;
    min-width: 120px;
  }

  .cookie-modal-content {
    width: 95%;
    margin: 1rem;
  }

  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding: 1rem;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .cookie-modal-footer button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cookie-text h3 {
    font-size: 1.1rem;
  }

  .cookie-text p {
    font-size: 0.85rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

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

/* ====================================
   Privacy Policy Page Styles
   ==================================== */

.privacy-policy-page {
  min-height: 100vh;
  padding-top: 140px;
  background: var(--background);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.privacy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.privacy-header h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.privacy-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.last-updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

.privacy-sections {
  margin-bottom: 3rem;
}

.privacy-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.privacy-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.privacy-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.5rem 0 0.75rem 0;
}

.privacy-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1rem 0 0.5rem 0;
}

.privacy-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.privacy-section ul, 
.privacy-section ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.privacy-section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.privacy-section a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.contact-info {
  background: var(--background);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--primary-color);
  margin: 1rem 0;
}

.contact-info p {
  margin-bottom: 0;
}

.cookie-types {
  margin: 1.5rem 0;
}

.cookie-types h4 {
  color: var(--primary-color);
  margin-top: 1.5rem;
}

.cookie-types code {
  background: var(--background);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: var(--primary-dark);
}

.cookie-settings-link,
.revoke-consent-link {
  background: transparent;
  border: none;
  color: var(--primary-color);
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
  margin: 0;
  transition: var(--transition);
}

.cookie-settings-link:hover,
.revoke-consent-link:hover {
  color: var(--primary-dark);
}

.rights-list {
  margin: 1.5rem 0;
}

.right-item {
  background: var(--background);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--border-radius-sm);
  border-left: 3px solid var(--accent-color);
}

.right-item h4 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.right-item p {
  margin-bottom: 0;
}

.contact-methods,
.authority-info {
  background: var(--background);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  margin: 1rem 0;
}

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

.contact-method {
  background: var(--background);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-method h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.privacy-footer {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-top: 3rem;
}

.cookie-actions {
  text-align: center;
  margin-bottom: 2rem;
}

.cookie-actions h3 {
  font-family: var(--font-display);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.back-to-site {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--text-light);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background: var(--background);
  color: var(--text-dark);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
}

.footer-link {
  background: none;
  border: none;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
  margin: 0;
}

.footer-link:hover {
  opacity: 0.8;
}

/* Mobile Responsive for Privacy Policy */
@media (max-width: 768px) {
  .privacy-content {
    padding: 1rem;
  }

  .privacy-header h1 {
    font-size: 2rem;
  }

  .privacy-section {
    padding: 1rem;
  }

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

  .cookie-action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cookie-action-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .privacy-header h1 {
    font-size: 1.75rem;
  }

  .privacy-section h2 {
    font-size: 1.25rem;
  }

  .privacy-section h3 {
    font-size: 1.1rem;
  }
}
