/* ===================================
   GLIDEBOLT - MINIMALIST LUXURY CSS
   Design Style: Clean, Elegant Minimalism
   =================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - MINIMALIST STYLE
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1A3B5C;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: #555555;
}

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

a:hover {
  color: #D4AF37;
}

ul {
  list-style: none;
}

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

/* ===================================
   LAYOUT CONTAINERS
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   HEADER - MINIMALIST NAVIGATION
   =================================== */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #EEEEEE;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  transition: all 0.3s ease;
}

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

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

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

.main-nav a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1A3B5C;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: #D4AF37;
  color: #D4AF37;
}

/* ===================================
   MOBILE MENU - HAMBURGER NAVIGATION
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1100;
  background-color: #1A3B5C;
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #D4AF37;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: #1A3B5C;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #D4AF37;
}

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

.mobile-nav a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1A3B5C;
  padding: 16px 0;
  border-bottom: 1px solid #EEEEEE;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D4AF37;
  padding-left: 8px;
}

/* ===================================
   HERO SECTION - MINIMALIST DESIGN
   =================================== */
.hero {
  background-color: #F8F9FA;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 80px;
}

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

.hero h1 {
  font-size: 48px;
  color: #1A3B5C;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  font-size: 14px;
  color: #999999;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.key-fact {
  font-size: 16px;
  color: #D4AF37;
  font-weight: 700;
  margin-top: 24px;
}

/* ===================================
   BUTTONS - MINIMALIST STYLE
   =================================== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #1A3B5C;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #D4AF37;
  color: #1A3B5C;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: #1A3B5C;
  border: 2px solid #1A3B5C;
}

.btn-secondary:hover {
  background-color: #1A3B5C;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ===================================
   SECTIONS - CONSISTENT SPACING
   =================================== */
section {
  margin-bottom: 80px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
}

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: #666666;
}

/* ===================================
   INTRODUCTION SECTION
   =================================== */
.introduction {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.value-prop {
  font-size: 18px;
  color: #1A3B5C;
  font-weight: 600;
  text-align: center;
  margin: 32px auto;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   SERVICE CARDS - FLEXBOX GRID
   =================================== */
.service-grid,
.category-grid,
.highlight-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.service-card,
.category-card,
.highlight-card,
.value-card {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 360px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.service-card:hover,
.category-card:hover,
.highlight-card:hover,
.value-card:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card h3,
.category-card h3,
.highlight-card h3,
.value-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1A3B5C;
}

.service-card p,
.category-card p,
.highlight-card p,
.value-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.price {
  font-size: 16px;
  color: #D4AF37;
  font-weight: 700;
  margin-top: 16px;
}

/* ===================================
   TESTIMONIALS - READABLE DESIGN
   =================================== */
.testimonials {
  background-color: #F8F9FA;
  padding: 60px 20px;
}

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

.testimonial-card {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  padding: 32px;
  flex: 1 1 300px;
  max-width: 500px;
  margin-bottom: 24px;
}

.quote {
  font-size: 16px;
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 16px;
  line-height: 1.7;
}

.author {
  font-size: 14px;
  color: #666666;
  font-weight: 600;
  text-align: right;
}

/* ===================================
   FEATURES & AMENITIES
   =================================== */
.features-list,
.amenity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.features-list {
  flex-direction: column;
  max-width: 600px;
  margin: 32px auto;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid #EEEEEE;
  color: #555555;
}

.amenity-grid {
  justify-content: center;
}

.amenity-item {
  background-color: #F8F9FA;
  padding: 16px 24px;
  border: 1px solid #EEEEEE;
  font-size: 14px;
  color: #555555;
  flex: 1 1 200px;
  max-width: 280px;
  text-align: center;
  margin-bottom: 16px;
}

/* ===================================
   SERVICE BLOCKS
   =================================== */
.service-block,
.experience-block {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  padding: 40px;
  margin-bottom: 32px;
}

.service-block h3,
.experience-block h3 {
  margin-bottom: 16px;
}

.service-block ul,
.experience-block ul {
  margin: 24px 0;
}

.service-block li,
.experience-block li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #555555;
}

.service-block li:before,
.experience-block li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 20px;
}

.tagline {
  font-size: 16px;
  color: #D4AF37;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ===================================
   SKI AREAS & HIGHLIGHTS
   =================================== */
.ski-area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.ski-area {
  background-color: #F8F9FA;
  border: 1px solid #EEEEEE;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  margin-bottom: 24px;
}

.ski-area h3 {
  color: #1A3B5C;
  margin-bottom: 12px;
}

.ski-area p {
  font-size: 14px;
  color: #666666;
}

/* ===================================
   CONTACT SECTIONS
   =================================== */
.contact-preview,
.contact-options,
.contact-form-section,
.cta {
  text-align: center;
  padding: 60px 20px;
}

.contact-info {
  margin: 32px 0;
}

.contact-info p {
  margin-bottom: 12px;
  color: #555555;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.contact-method {
  flex: 1 1 250px;
  max-width: 300px;
}

.contact-method h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1A3B5C;
}

.contact-method p {
  color: #666666;
}

.form-info {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background-color: #F8F9FA;
  padding: 40px;
  border: 1px solid #EEEEEE;
  margin-bottom: 32px;
}

.form-info p {
  margin-bottom: 8px;
  color: #555555;
}

.form-info .btn {
  margin-top: 24px;
  width: 100%;
}

.privacy-note,
.response-note,
.note,
.guarantee {
  font-size: 14px;
  color: #999999;
  margin-top: 24px;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-item {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #EEEEEE;
}

.faq-item h3 {
  font-size: 18px;
  color: #1A3B5C;
  margin-bottom: 12px;
}

.faq-item p {
  color: #666666;
}

/* ===================================
   MILESTONES
   =================================== */
.milestones {
  margin: 32px 0;
}

.milestones li {
  padding: 16px 0;
  border-bottom: 1px solid #EEEEEE;
  color: #555555;
}

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

.legal-content h2 {
  text-align: left;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p,
.legal-content li {
  color: #555555;
  line-height: 1.8;
}

.legal-content ul {
  margin: 16px 0 16px 24px;
}

.legal-content li {
  list-style: disc;
  margin-bottom: 8px;
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.confirmation,
.explore,
.thank-you-content {
  padding: 60px 20px;
}

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

.explore-card {
  background-color: #F8F9FA;
  border: 1px solid #EEEEEE;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  margin-bottom: 24px;
}

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

.explore-card p {
  margin-bottom: 24px;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===================================
   FOOTER - MINIMALIST DESIGN
   =================================== */
footer {
  background-color: #1A3B5C;
  color: #FFFFFF;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-nav,
.footer-legal,
.footer-contact {
  flex: 1 1 200px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #CCCCCC;
  font-size: 14px;
}

footer h4 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer a {
  display: block;
  color: #CCCCCC;
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #D4AF37;
  padding-left: 4px;
}

.footer-contact p {
  color: #CCCCCC;
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #999999;
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A3B5C;
  color: #FFFFFF;
  padding: 24px;
  z-index: 950;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.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;
}

.cookie-text p {
  color: #FFFFFF;
  font-size: 14px;
  margin-bottom: 0;
}

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

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

.cookie-accept {
  background-color: #D4AF37;
  color: #1A3B5C;
}

.cookie-accept:hover {
  background-color: #E5C158;
}

.cookie-reject {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

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

/* ===================================
   COOKIE MODAL
   =================================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 90%;
  padding: 40px;
  border-radius: 4px;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.cookie-modal h2 {
  margin-bottom: 24px;
  text-align: left;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EEEEEE;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons .btn {
  flex: 1 1 140px;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

/* Tablet - 768px */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Sections */
  section {
    margin-bottom: 60px;
    padding: 32px 16px;
  }
  
  /* Stats */
  .stats {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Service Cards */
  .service-grid,
  .category-grid,
  .highlight-grid,
  .values-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .service-card,
  .category-card,
  .highlight-card,
  .value-card {
    max-width: 100%;
  }
  
  /* Testimonials */
  .testimonial-grid {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Contact Methods */
  .contact-methods {
    flex-direction: column;
  }
}

/* Mobile - 480px */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .btn {
    padding: 14px 32px;
    font-size: 13px;
  }
  
  .service-block,
  .experience-block {
    padding: 24px;
  }
  
  .form-info {
    padding: 24px;
  }
}

/* Large Desktop - 1400px+ */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 40px;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  header {
    position: static;
  }
  
  body {
    font-size: 12pt;
  }
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */
*:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

a:focus,
button:focus {
  outline: 2px solid #D4AF37;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  body {
    color: #000000;
  }
  
  .btn-primary {
    border: 2px solid #000000;
  }
}

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