/* ============================================
   REGAL RAFTERS - CREATIVE ARTISTIC DESIGN
   Vibrant, Creative, Artistic & Unique
   ============================================ */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background: linear-gradient(135deg, #fdfbfb 0%, #f8f9fa 100%);
  overflow-x: hidden;
}

/* CREATIVE ARTISTIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.3;
  color: #1A3D4D;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2B5F75 0%, #1A3D4D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

h2 {
  font-size: 36px;
  color: #2B5F75;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #F4B963 0%, #E8A547 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #1A3D4D;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #34495e;
}

a {
  color: #2B5F75;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #F4B963;
  transform: translateY(-1px);
}

strong {
  font-weight: 700;
  color: #1A3D4D;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* HEADER - CREATIVE ARTISTIC STYLE */
header {
  background: linear-gradient(135deg, #1A3D4D 0%, #2B5F75 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(42, 95, 117, 0.3);
  border-bottom: 3px solid #F4B963;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

/* MAIN NAVIGATION - ARTISTIC */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #F4B963 0%, #E8A547 100%);
  transition: left 0.3s ease;
  z-index: -1;
  border-radius: 25px;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  color: #1A3D4D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 185, 99, 0.4);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #F4B963 0%, #E8A547 100%);
  color: #1A3D4D;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(244, 185, 99, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(244, 185, 99, 0.6);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1A3D4D 0%, #2B5F75 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F4B963;
  color: #1A3D4D;
  border: none;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #E8A547;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  color: #ffffff;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  background: linear-gradient(90deg, #F4B963 0%, #E8A547 100%);
  color: #1A3D4D;
  transform: translateX(10px);
  border-left-color: #ffffff;
}

/* HERO SECTION - CREATIVE & VIBRANT */
.hero {
  background: linear-gradient(135deg, rgba(26, 61, 77, 0.95) 0%, rgba(43, 95, 117, 0.9) 100%), url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="%232B5F75"/%3E%3Cpath d="M0 0L50 50L0 100z" fill="%231A3D4D" opacity="0.1"/%3E%3C/svg%3E');
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #F4B963;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 185, 99, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 177, 116, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, -30px) rotate(5deg); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  -webkit-text-fill-color: #ffffff;
  background: none;
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 20px;
  color: #F4B963;
  margin-bottom: 40px;
  font-weight: 600;
  animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cta-primary, .cta-secondary {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.cta-primary {
  background: linear-gradient(135deg, #F4B963 0%, #E8A547 100%);
  color: #1A3D4D;
  box-shadow: 0 6px 20px rgba(244, 185, 99, 0.4);
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(244, 185, 99, 0.6);
  color: #1A3D4D;
}

.cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 3px solid #F4B963;
}

.cta-secondary:hover {
  background: #F4B963;
  color: #1A3D4D;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(244, 185, 99, 0.4);
}

.trust-indicators {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(244, 185, 99, 0.2);
  border-radius: 25px;
  border: 2px solid #F4B963;
  backdrop-filter: blur(10px);
}

/* SECTIONS - CREATIVE SPACING */
.section, section {
  padding: 80px 20px;
  margin-bottom: 0;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 60px;
  font-style: italic;
}

/* SERVICE GRID - FLEXBOX ONLY */
.service-grid, .feature-grid, .tour-card, .bike-grid, .package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

/* SERVICE CARDS - ARTISTIC DESIGN */
.service-card, .feature-item, .bike-card, .package-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  margin-bottom: 32px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2B5F75 0%, #F4B963 50%, #8BB174 100%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-card:hover {
  transform: translateY(-12px) rotate(1deg);
  box-shadow: 0 20px 50px rgba(43, 95, 117, 0.3);
  border-color: #F4B963;
}

.service-card h3 {
  color: #1A3D4D;
  margin-bottom: 16px;
  font-size: 24px;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: #F4B963;
  margin: 24px 0;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* CTA BUTTONS - CREATIVE STYLE */
.cta-button, .link-more {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #2B5F75 0%, #1A3D4D 100%);
  color: #ffffff;
  font-weight: 700;
  border-radius: 25px;
  transition: all 0.3s ease;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(43, 95, 117, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(244, 185, 99, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(43, 95, 117, 0.5);
  color: #ffffff;
}

.link-more {
  display: block;
  text-align: center;
  margin: 40px auto 0;
  max-width: 300px;
  background: transparent;
  color: #2B5F75;
  border: 2px solid #2B5F75;
  box-shadow: none;
}

.link-more:hover {
  background: #2B5F75;
  color: #ffffff;
}

/* ROUTE HIGHLIGHTS */
.route-info {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  border-left: 6px solid #F4B963;
}

.route-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.stat-item {
  text-align: center;
  flex: 1 1 150px;
}

.stat-item strong {
  display: block;
  font-size: 42px;
  color: #F4B963;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.stat-item span {
  display: block;
  font-size: 16px;
  color: #7f8c8d;
  font-weight: 600;
}

.destinations {
  text-align: center;
  margin-top: 40px;
}

.destinations h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.destinations p {
  font-size: 20px;
  color: #2B5F75;
  font-weight: 600;
  margin-bottom: 30px;
}

/* WHY US SECTION */
.why-us {
  background: linear-gradient(135deg, rgba(43, 95, 117, 0.05) 0%, rgba(139, 177, 116, 0.05) 100%);
}

.feature-grid {
  gap: 40px;
}

.feature-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  flex: 1 1 calc(50% - 40px);
  min-width: 250px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #F4B963;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(43, 95, 117, 0.15);
}

.feature-item h3 {
  color: #1A3D4D;
  margin-bottom: 16px;
  font-size: 22px;
}

/* TESTIMONIALS - READABLE CONTRAST */
.testimonials {
  background: linear-gradient(135deg, #2B5F75 0%, #1A3D4D 100%);
  color: #ffffff;
  padding: 80px 20px;
}

.testimonials h2 {
  color: #ffffff;
  text-align: center;
}

.testimonials h2::after {
  background: #F4B963;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
  justify-content: center;
}

.testimonial-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  max-width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  border-left: 6px solid #F4B963;
  margin-bottom: 32px;
}

.testimonial-card p {
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card .author {
  color: #1A3D4D;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #F4B963;
}

/* CTA BANNER - VIBRANT */
.cta-banner {
  background: linear-gradient(135deg, #F4B963 0%, #E8A547 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 20px;
  box-shadow: 0 20px 50px rgba(244, 185, 99, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #1A3D4D;
  font-size: 42px;
  margin-bottom: 16px;
}

.cta-banner h2::after {
  display: none;
}

.cta-banner p {
  color: #1A3D4D;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.contact-info {
  color: #1A3D4D;
  font-weight: 600;
  font-size: 16px;
}

/* PRACTICAL INFO */
.info-cards, .info-card {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 15px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #8BB174;
  transition: all 0.3s ease;
  margin-bottom: 32px;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #2B5F75 0%, #1A3D4D 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  border-bottom: 6px solid #F4B963;
}

.page-header h1 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  margin-bottom: 16px;
}

.page-header p {
  color: #F4B963;
  font-size: 20px;
  font-weight: 600;
}

/* ERROR PAGE */
.error-section {
  padding: 100px 20px;
  text-align: center;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #F4B963;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0,0,0,0.1);
}

.error-message {
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 40px;
}

.navigation-help, .quick-links {
  padding: 60px 20px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.link-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 15px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #2B5F75;
  margin-bottom: 24px;
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(43, 95, 117, 0.2);
  border-left-color: #F4B963;
}

.link-card h3 {
  color: #1A3D4D;
  margin-bottom: 12px;
}

.link-card p {
  color: #7f8c8d;
  margin: 0;
}

/* CONTACT SECTIONS */
.contact-methods, .contact-grid, .contact-card {
  margin-top: 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 15px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #F4B963;
  margin-bottom: 32px;
}

.contact-card h3 {
  color: #1A3D4D;
  margin-bottom: 20px;
}

.contact-card a {
  color: #2B5F75;
  font-weight: 600;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #2B5F75;
}

.text-section h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-section h3 {
  margin-top: 30px;
  margin-bottom: 16px;
  color: #2B5F75;
}

.text-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.text-section li {
  margin-bottom: 8px;
  color: #34495e;
}

/* STAGES & ATTRACTIONS */
.stage-list, .attraction-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.stage-card, .attraction-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #8BB174;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.stage-card:hover, .attraction-card:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.attraction-grid {
  flex-direction: row;
  flex-wrap: wrap;
}

.attraction-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  margin-bottom: 24px;
}

/* THANK YOU PAGE */
.thank-you-section {
  padding: 100px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-top: 8px solid #F4B963;
}

.confirmation-message {
  font-size: 20px;
  color: #2B5F75;
  margin-bottom: 32px;
  font-weight: 600;
}

.explore-more {
  padding: 60px 20px;
}

.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.explore-card {
  background: linear-gradient(135deg, #2B5F75 0%, #1A3D4D 100%);
  padding: 40px;
  border-radius: 15px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(43, 95, 117, 0.3);
  margin-bottom: 32px;
}

.explore-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(43, 95, 117, 0.5);
}

.explore-card h3 {
  color: #F4B963;
  margin-bottom: 16px;
}

.explore-card p {
  color: #ffffff;
  margin: 0;
}

/* CHECKLIST */
.checklist {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  border-left: 6px solid #8BB174;
}

.checklist p {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 16px;
  padding-left: 8px;
}

/* STEPS GRID */
.steps-grid, .process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.step-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border-top: 5px solid #F4B963;
  margin-bottom: 32px;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.step-item h3 {
  color: #1A3D4D;
  margin-bottom: 16px;
  font-size: 24px;
}

/* EQUIPMENT GRID */
.equipment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.equipment-item {
  background: linear-gradient(135deg, #2B5F75 0%, #1A3D4D 100%);
  color: #ffffff;
  padding: 20px 32px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(43, 95, 117, 0.3);
  transition: all 0.3s ease;
}

.equipment-item:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(43, 95, 117, 0.5);
}

/* LOCATION GRID */
.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.location-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 15px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #2B5F75;
  margin-bottom: 32px;
}

/* CHARACTERISTICS GRID */
.characteristics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.char-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 24px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #8BB174;
  margin-bottom: 24px;
}

/* USP & VALUES GRID */
.usp-grid, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.usp-item, .value-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #F4B963;
  transition: all 0.3s ease;
  margin-bottom: 32px;
}

.usp-item:hover, .value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* STATS GRID */
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  background: linear-gradient(135deg, #F4B963 0%, #E8A547 100%);
  padding: 40px;
  border-radius: 15px;
}

.stats-grid .stat-item {
  flex: 1 1 200px;
}

.stats-grid .stat-item strong {
  color: #1A3D4D;
}

.stats-grid .stat-item span {
  color: #1A3D4D;
  font-weight: 600;
}

/* FOOTER - CREATIVE ARTISTIC */
footer {
  background: linear-gradient(135deg, #1A3D4D 0%, #2B5F75 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 6px solid #F4B963;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-col h4 {
  color: #F4B963;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-col nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #F4B963;
}

.footer-col nav a:hover {
  color: #F4B963;
  padding-left: 20px;
}

.footer-col nav a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(244, 185, 99, 0.3);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A3D4D 0%, #2B5F75 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #F4B963;
}

.cookie-consent.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
}

.cookie-text a {
  color: #F4B963;
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, #F4B963 0%, #E8A547 100%);
  color: #1A3D4D;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 185, 99, 0.5);
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #F4B963;
}

.cookie-reject:hover {
  background: rgba(244, 185, 99, 0.1);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #F4B963;
}

.modal-close {
  background: #F4B963;
  color: #1A3D4D;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.modal-close:hover {
  transform: rotate(90deg);
  background: #E8A547;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #2B5F75;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.category-header h3 {
  color: #1A3D4D;
  margin: 0;
  font-size: 18px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background: linear-gradient(135deg, #2B5F75 0%, #1A3D4D 100%);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.slider.disabled {
  background-color: #8BB174;
  cursor: not-allowed;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #e9ecef;
}

.modal-actions button {
  padding: 12px 32px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.save-preferences {
  background: linear-gradient(135deg, #F4B963 0%, #E8A547 100%);
  color: #1A3D4D;
}

.save-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 185, 99, 0.5);
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* MOBILE MENU SHOW */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* TYPOGRAPHY MOBILE */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* SECTIONS MOBILE */
  .section, section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 80px 20px;
  }
  
  /* CARDS MOBILE - FULL WIDTH */
  .service-card, .feature-item, .info-card, .bike-card, .package-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .link-card, .attraction-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .step-item, .usp-item, .value-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .contact-card, .location-card, .explore-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* CTA BUTTONS MOBILE */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-primary, .cta-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* TRUST INDICATORS MOBILE */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* ROUTE STATS MOBILE */
  .route-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  /* FOOTER MOBILE */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* COOKIE CONSENT MOBILE */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* TEXT SECTION MOBILE */
  .text-section {
    padding: 30px 20px;
  }
  
  /* ERROR CODE MOBILE */
  .error-code {
    font-size: 80px;
  }
  
  /* MODAL MOBILE */
  .modal-content {
    padding: 24px;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .modal-actions button {
    width: 100%;
  }
}

/* TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
  .service-card, .bike-card, .package-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .feature-item {
    flex: 1 1 calc(50% - 40px);
  }
  
  .info-card {
    flex: 1 1 calc(50% - 32px);
  }
}

/* ACCESSIBILITY */
:focus {
  outline: 3px solid #F4B963;
  outline-offset: 2px;
}

button:focus, a:focus {
  outline: 3px solid #F4B963;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-consent, .cookie-modal {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* SMOOTH SCROLLING */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}