/* SAM'S SALT - Clean Website Styles */

:root {
  --teal: #66B3A9;
  --cream: #f9ecd7;
  --dark-teal: #0F4F57;
  --black: #000000;
  --white: #ffffff;
  --accent: #00d4ff;
  --gradient-primary: linear-gradient(135deg, var(--teal) 0%, var(--accent) 100%);
  --border-teal: rgba(102, 179, 169, 0.2);
  --bg-teal: rgba(102, 179, 169, 0.1);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* BACKGROUNDS */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.6;
}

.mountain-background {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  z-index: -1;
  opacity: 0.2;
  background: url('mountain-city-illustration.svg') repeat-x center bottom;
  background-size: cover;
  pointer-events: none;
  filter: blur(0.5px);
}

/* HEADER */
header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--teal);
  z-index: 10002 !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 2px;
}

/* Hide desktop navigation */
nav { display: none !important; }

/* HAMBURGER MENU - ALWAYS VISIBLE */
.hamburger {
  display: flex !important;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: var(--bg-teal);
  border: 2px solid var(--teal);
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 10003 !important;
}

.hamburger:hover {
  background: rgba(102, 179, 169, 0.3);
}

.hamburger span {
  width: 25px !important;
  height: 3px !important;
  background: var(--teal) !important;
  margin: 3px 0 !important;
  transition: 0.3s;
  border-radius: 2px;
  display: block !important;
}

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

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

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

/* MOBILE NAVIGATION */
.mobile-nav {
  position: fixed !important;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-teal);
  z-index: 9999 !important;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  display: block !important;
}

.mobile-nav.open {
  transform: translateY(0) !important;
}

.mobile-nav a {
  display: block;
  color: var(--teal);
  text-decoration: none;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-teal);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--bg-teal);
  color: var(--white);
}

.mobile-nav a:last-child {
  border-bottom: none;
}



.quantity-btn {
  background: var(--bg-teal);
  border: 1px solid var(--teal);
  color: var(--teal);
  width: 25px;
  height: 25px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: var(--teal);
  color: var(--black);
}

.cart-item-remove {
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.5);
  color: rgba(255, 0, 0, 0.8);
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.cart-item-remove:hover {
  background: rgba(255, 0, 0, 0.3);
  color: white;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border-teal);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  color: var(--teal);
  font-weight: 600;
  font-size: 1.1rem;
}

.cart-checkout-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--black);
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-checkout-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 179, 169, 0.3);
}

.cart-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* UTILITIES */
.btn-primary {
  background: var(--teal);
  color: var(--black);
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--cream);
  color: var(--dark-teal);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 179, 169, 0.4);
}

.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.p-20 { padding: 20px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo {
    font-size: 1.8rem;
  }
  
  header {
    padding: 0 15px;
  }
  
  .cart-modal {
    width: 100%;
    right: -100%;
  }
}

/* 3D Website Styles - Inspired by Montfort Maritime */

:root {
  --teal: #66B3A9;
  --cream: #f9ecd7;
  --dark-teal: #0F4F57;
  --black: #000000;
  --dark-gray: #111111;
  --light-gray: #333333;
  --white: #ffffff;
  --accent: #00d4ff;
  --gradient-1: linear-gradient(135deg, var(--teal) 0%, var(--accent) 100%);
  --gradient-2: linear-gradient(45deg, var(--dark-teal) 0%, var(--teal) 100%);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* 3D Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.6;
}

/* Mountain Background */
.mountain-background {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  z-index: -1;
  opacity: 0.2;
  background-image: url('mountain-city-illustration.svg');
  background-repeat: repeat-x;
  background-size: cover;
  background-position: bottom center;
  pointer-events: none;
  filter: blur(0.5px);
}

/* HEADER - HAMBURGER MENU LAYOUT */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #66B3A9;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  color: #66B3A9;
  text-decoration: none;
  letter-spacing: 2px;
}

/* Hide desktop navigation */
nav {
  display: none;
}

/* Hamburger Menu Button */
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: rgba(102, 179, 169, 0.2);
  border: 2px solid #66B3A9;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(102, 179, 169, 0.3);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #66B3A9;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(102, 179, 169, 0.2);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  display: block;
  color: #66B3A9;
  text-decoration: none;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(102, 179, 169, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(102, 179, 169, 0.1);
  color: #ffffff;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* Cart Icon in Mobile Nav */
.mobile-cart-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  color: #66B3A9;
  cursor: pointer;
  border-top: 1px solid rgba(102, 179, 169, 0.1);
  transition: all 0.3s ease;
}

.mobile-cart-icon:hover {
  background: rgba(102, 179, 169, 0.1);
}

.mobile-cart-text {
  font-weight: 600;
}

.mobile-cart-count {
  background: #00d4ff;
  color: #000000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart Modal Styles */
.cart-modal {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: var(--black);
  border-left: 2px solid var(--teal);
  z-index: 10001;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.cart-modal.open {
  right: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--teal);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  color: var(--teal);
  font-size: 1.5rem;
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  color: var(--teal);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

.cart-items {
  padding: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid rgba(102, 179, 169, 0.3);
  border-radius: 10px;
  margin-bottom: 15px;
  background: rgba(102, 179, 169, 0.1);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--teal);
  font-weight: bold;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  background: var(--teal);
  color: var(--black);
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  font-weight: bold;
}

.qty-input {
  width: 40px;
  text-align: center;
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
  border-radius: 5px;
  padding: 5px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 5px;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--teal);
  position: sticky;
  bottom: 0;
  background: var(--black);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: bold;
}

.cart-checkout-btn {
  width: 100%;
  padding: 15px;
  background: var(--gradient-1);
  color: var(--black);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 179, 169, 0.3);
}

.cart-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.empty-cart {
  text-align: center;
  padding: 40px 20px;
  color: var(--cream);
}

.empty-cart-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

/* Notification animations */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section - Enhanced with 3D effects */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 60px;
  position: relative;
  text-align: center;
}

.hero-sidebyside {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-img-fade {
  width: 500px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(102, 179, 169, 0.5));
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.hero-img-col::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 179, 169, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
  z-index: -1;
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-text-col {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.hero-title-3d {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(102, 179, 169, 0.3);
}

.hero-bold-row {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(102, 179, 169, 0.5);
}

.hero-description-3d {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeIn 1s ease 0.7s forwards;
}

/* Section Titles with 3D effect */
.section-title-3d {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(102, 179, 169, 0.3);
}

/* CTA Button with Glow */
.cta-btn-glow {
  display: inline-block;
  background: var(--gradient-1);
  color: var(--black);
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 179, 169, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(102, 179, 169, 0.4);
}

.cta-btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.cta-btn-glow:hover::before {
  left: 100%;
}

.preorder-btn-row {
  text-align: center;
  margin: 40px 0;
}

/* Benefits Section - Enhanced */
.benefits-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
}

.modern-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.modern-benefit-card {
  background: rgba(102, 179, 169, 0.15);
  border: 2px solid rgba(102, 179, 169, 0.4);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  /* Ensure cards are visible by default */
  opacity: 1;
  transform: translateY(0);
}

.modern-benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  background: rgba(102, 179, 169, 0.25);
  box-shadow: 0 20px 40px rgba(102, 179, 169, 0.3);
}

.modern-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(102, 179, 169, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-benefit-card:hover::before {
  opacity: 1;
}

.modern-benefit-icon {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 20px;
  opacity: 0.8;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(102, 179, 169, 0.5);
}

.modern-benefit-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.modern-benefit-desc {
  color: var(--cream);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 400;
  text-shadow: 0 0 5px rgba(249, 236, 215, 0.3);
}

/* Lake Section - Enhanced */
.lake-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
  position: relative;
}

.lake-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-teal) 0%, var(--teal) 100%);
  opacity: 0.05;
}

.lake-content {
  position: relative;
  z-index: 2;
}

.lake-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--white);
}

.lake-text p {
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.lake-stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  justify-content: center;
}

.stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(102, 179, 169, 0.2);
  transition: all 0.3s ease;
  /* Ensure stats are visible by default */
  opacity: 1;
  transform: translateY(0);
}

.stat:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: 0 15px 30px rgba(102, 179, 169, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--teal);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lake-cta {
  display: inline-block;
  background: var(--gradient-1);
  color: var(--black);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.lake-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 179, 169, 0.3);
}

/* Features Section - Enhanced */
.features-section {
  padding: 80px 0;
  background: var(--black);
}

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

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(102, 179, 169, 0.05);
  border: 1px solid rgba(102, 179, 169, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  /* Ensure items are visible by default */
  opacity: 1;
  transform: translateY(0);
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: 0 15px 30px rgba(102, 179, 169, 0.2);
}

.feature-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--cream);
  line-height: 1.6;
}

/* Testimonials Section - Enhanced */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(102, 179, 169, 0.2);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  /* Ensure cards are visible by default */
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: 0 20px 40px rgba(102, 179, 169, 0.2);
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
}

.testimonial-card p {
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--teal);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Final CTA Section - Enhanced */
.final-cta-section {
  padding: 80px 0;
  background: var(--black);
  text-align: center;
}

.final-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.final-cta-section p {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: var(--gradient-1);
  color: var(--black);
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  padding: 15px 30px;
  cursor: pointer;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(102, 179, 169, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(102, 179, 169, 0.4);
}

.cta-btn-secondary {
  background: transparent;
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: bold;
  border: 2px solid var(--teal);
  border-radius: 30px;
  padding: 13px 30px;
  cursor: pointer;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-btn-secondary:hover {
  background: var(--teal);
  color: var(--black);
  transform: translateY(-3px);
}

.cta-btn-primary.large,
.cta-btn-secondary.large {
  padding: 20px 40px;
  font-size: 1.1rem;
}

/* Footer - Enhanced */
footer {
  background: var(--dark-gray);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(102, 179, 169, 0.2);
}

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

.footer-section h4 {
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
  color: var(--cream);
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(102, 179, 169, 0.2);
  color: var(--cream);
}

/* Responsive Design */
@media (max-width: 912px) {
  .cart-modal {
    width: 100%;
    right: -100%;
  }

  /* Show hamburger menu on mobile */
  .hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    background: rgba(102, 179, 169, 0.2) !important;
    border: 2px solid var(--teal) !important;
    border-radius: 5px !important;
    padding: 8px !important;
    margin-left: auto !important;
    z-index: 1000 !important;
  }

  /* Ensure header layout works properly */
  header {
    justify-content: space-between !important;
  }

  /* Hide desktop navigation */
  nav a {
    display: none !important;
  }

  .cart-icon {
    display: none !important;
  }

  /* Show mobile navigation */
  .mobile-nav {
    display: block !important;
  }

  /* Adjust header padding */
  header {
    padding: 20px 20px;
  }

  .hero-sidebyside {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title-3d {
    font-size: 2.5rem;
  }
  
  .hero-description-3d {
    font-size: 1.1rem;
  }
  
  .lake-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .section-title-3d {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .mountain-background {
    height: 35vh;
    opacity: 0.15;
  }
  
  /* Further adjust header for small screens */
  header {
    padding: 15px 15px;
  }

  .logo {
    font-size: 1.5rem;
  }
  
  .hero-title-3d {
    font-size: 2rem;
  }
  
  .hero-description-3d {
    font-size: 1rem;
  }
  
  .cta-btn-glow {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .section-title-3d {
    font-size: 1.8rem;
  }
  
  .modern-benefits-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
} 