/* ============================================
   IceFishPro - Main Stylesheet
   Premium Ice Fishing Rentals & Gear
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --ice-white: #f0f6ff;
  --ice-blue: #0a2a4a;
  --ice-mid: #1a4a7a;
  --ice-accent: #00b4d8;
  --ice-glow: #90e0ef;
  --ice-gold: #e9c46a;
  --ice-dark: #060e1a;
  --text-light: #c8dff5;
  --text-muted: #7fa8cc;
  --card-bg: rgba(10, 30, 60, 0.75);
  --glass: rgba(255,255,255,0.06);
  --border: rgba(0, 180, 216, 0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ice-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ice-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--ice-glow); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-light); }

/* ---- Utility ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ice-accent);
  margin-bottom: 14px;
}
.section-label::before {
  content: ''; display: block; width: 30px; height: 2px;
  background: var(--ice-accent);
}
.section-title { margin-bottom: 16px; }
.section-sub {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 540px; margin-bottom: 48px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.03em;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--ice-accent);
  color: var(--ice-dark);
  box-shadow: 0 0 30px rgba(0,180,216,0.4);
}
.btn-primary:hover {
  background: var(--ice-glow); color: var(--ice-dark);
  box-shadow: 0 0 50px rgba(144,224,239,0.6);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--ice-accent);
  color: var(--ice-accent);
}
.btn-outline:hover {
  background: var(--ice-accent); color: var(--ice-dark);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--ice-gold); color: #1a1000;
  font-weight: 700;
}
.btn-gold:hover {
  background: #f4d03f; transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(233,196,106,0.5);
}
.tag {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tag-blue { background: rgba(0,180,216,0.15); color: var(--ice-accent); border: 1px solid rgba(0,180,216,0.3); }
.tag-gold { background: rgba(233,196,106,0.15); color: var(--ice-gold); border: 1px solid rgba(233,196,106,0.3); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(6,14,26,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: var(--transition);
}
#site-header.scrolled .header-inner { padding: 14px 0; }

/* Logo */
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--ice-accent), var(--ice-mid));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; }
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: #fff; }
.logo-text span { color: var(--ice-accent); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.92rem; font-weight: 500;
  color: var(--text-light); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: #fff; background: var(--glass); }
.nav-link.active { color: var(--ice-accent); }
.nav-cta { margin-left: 12px; padding: 10px 24px; }

/* Mobile Menu */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--text-light); border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: rgba(6,14,26,0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px 30px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 1.05rem; padding: 12px 16px; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,14,26,0.85) 0%,
    rgba(10,42,74,0.6) 50%,
    rgba(6,14,26,0.8) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px; padding-top: 120px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,0.12); border: 1px solid rgba(0,180,216,0.35);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ice-accent);
  margin-bottom: 28px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800; margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title .highlight {
  color: var(--ice-accent);
  text-shadow: 0 0 40px rgba(0,180,216,0.5);
}
.hero-desc {
  font-size: 1.1rem; color: var(--text-light); opacity: 0.9;
  max-width: 560px; margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head); font-size: 2.2rem;
  font-weight: 800; color: #fff;
  line-height: 1;
}
.stat-num span { color: var(--ice-accent); }
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.1em;
}
.scroll-dot {
  width: 26px; height: 40px; border: 2px solid rgba(0,180,216,0.4);
  border-radius: 20px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot::before {
  content: ''; display: block; width: 4px; height: 8px;
  background: var(--ice-accent); border-radius: 4px;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
#features-strip {
  background: linear-gradient(90deg, var(--ice-mid), #0a3060, var(--ice-mid));
  padding: 28px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.features-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.fstrip-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 24px;
  border-right: 1px solid var(--border);
}
.fstrip-item:last-child { border-right: none; }
.fstrip-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(0,180,216,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ice-accent);
}
.fstrip-icon svg { width: 22px; height: 22px; }
.fstrip-title { font-weight: 600; font-size: 0.9rem; color: #fff; }
.fstrip-sub { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services { padding: 100px 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(0,180,216,0.5);
}
.service-img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: var(--transition);
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-img-wrap { overflow: hidden; }
.service-body { padding: 28px; }
.service-num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 800;
  color: rgba(0,180,216,0.12); line-height: 1;
  margin-bottom: 8px;
}
.service-title { font-size: 1.25rem; margin-bottom: 12px; }
.service-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.service-price {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.4rem; color: var(--ice-gold);
}
.service-price small { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
#about-strip { padding: 100px 0; background: rgba(10,42,74,0.2); }
.about-strip-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.about-strip-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
}
.about-strip-img-wrap img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--radius);
}
.about-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(6,14,26,0.9); border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 16px 20px; border-radius: var(--radius-sm);
  display: flex; flex-direction: column; gap: 4px;
}
.about-badge-num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--ice-accent); line-height: 1;
}
.about-badge-label { font-size: 0.8rem; color: var(--text-muted); }
.about-strip-content .section-sub { margin-bottom: 32px; }
.about-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.about-list-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.about-list-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,180,216,0.12); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--ice-accent);
}
.about-list-icon svg { width: 20px; height: 20px; }
.about-list-text h4 { margin-bottom: 4px; font-size: 1rem; }
.about-list-text p { font-size: 0.87rem; color: var(--text-muted); }

/* ============================================================
   EQUIPMENT SHOWCASE
   ============================================================ */
#equipment-showcase { padding: 100px 0; }
.eq-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.eq-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.eq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,180,216,0.45);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.eq-img-wrap { overflow: hidden; height: 180px; }
.eq-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.eq-card:hover .eq-img-wrap img { transform: scale(1.08); }
.eq-body { padding: 20px; }
.eq-cat {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ice-accent); font-weight: 600; margin-bottom: 8px;
}
.eq-name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.eq-price { font-family: var(--font-head); font-size: 1.15rem; color: var(--ice-gold); font-weight: 700; }
.eq-price small { font-size: 0.72rem; color: var(--text-muted); font-weight: 400; }

/* ============================================================
   GALLERY STRIP
   ============================================================ */
#gallery-strip { padding: 100px 0; background: rgba(10,42,74,0.15); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.gal-item { overflow: hidden; border-radius: var(--radius-sm); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gal-item:hover img { transform: scale(1.06); }
.gal-1 { grid-column: 1 / 6; grid-row: 1 / 2; }
.gal-2 { grid-column: 6 / 9; grid-row: 1 / 2; }
.gal-3 { grid-column: 9 / 13; grid-row: 1 / 2; }
.gal-4 { grid-column: 1 / 4; grid-row: 2 / 3; }
.gal-5 { grid-column: 4 / 9; grid-row: 2 / 3; }
.gal-6 { grid-column: 9 / 13; grid-row: 2 / 3; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
#pricing { padding: 100px 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.price-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.price-card.featured {
  border-color: var(--ice-accent);
  background: linear-gradient(160deg, rgba(0,180,216,0.12), rgba(10,42,74,0.8));
}
.price-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ice-accent), var(--ice-glow));
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--ice-accent); color: var(--ice-dark);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
}
.price-plan { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 8px; }
.price-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }
.price-amount {
  display: flex; align-items: flex-end; gap: 4px;
  margin-bottom: 8px;
}
.price-amount .currency { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 8px; }
.price-amount .amount {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; line-height: 1; color: #fff;
}
.price-amount .period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }
.price-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-light);
}
.price-feature .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,180,216,0.15); border: 1px solid rgba(0,180,216,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--ice-accent);
}
.price-feature .check svg { width: 11px; height: 11px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { padding: 100px 0; background: rgba(10,42,74,0.15); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testi-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,180,216,0.4);
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testi-stars svg { width: 16px; height: 16px; fill: var(--ice-gold); }
.testi-quote { font-size: 0.93rem; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ice-accent), var(--ice-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.9rem; color: #fff; }
.testi-location { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  padding: 80px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ice-mid), #0c3a6e);
}
#cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/frozen-lake.jpg') center / cover;
  opacity: 0.12;
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { margin-bottom: 12px; }
.cta-text p { color: var(--text-muted); max-width: 500px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: rgba(4,10,20,0.98);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--glass); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.social-btn:hover { background: rgba(0,180,216,0.15); color: var(--ice-accent); border-color: var(--ice-accent); }
.social-btn svg { width: 17px; height: 17px; }
.footer-col h5 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 20px; letter-spacing: 0.05em; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--ice-accent); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.87rem; color: var(--text-muted); margin-bottom: 14px;
}
.footer-contact-item svg { width: 17px; height: 17px; color: var(--ice-accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--ice-accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 30px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.82rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--ice-accent); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, rgba(10,42,74,0.95), rgba(6,14,26,0.98));
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,180,216,0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: var(--ice-accent); }
.page-hero-breadcrumb span { color: var(--text-muted); }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }

/* ============================================================
   EQUIPMENT PAGE
   ============================================================ */
.eq-full-section { padding: 80px 0; }
.eq-filter-bar {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px; border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition); cursor: pointer;
  background: transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(0,180,216,0.12);
  border-color: var(--ice-accent); color: var(--ice-accent);
}
.eq-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.eq-full-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.eq-full-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow);
  border-color: rgba(0,180,216,0.4);
}
.eq-full-img { width: 100%; height: 240px; object-fit: cover; transition: var(--transition); }
.eq-full-card:hover .eq-full-img { transform: scale(1.04); }
.eq-full-img-wrap { overflow: hidden; }
.eq-full-body { padding: 28px; }
.eq-full-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 12px;
}
.eq-full-name { font-size: 1.15rem; font-weight: 700; }
.eq-full-badge { }
.eq-full-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.eq-full-specs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.spec-row { display: flex; justify-content: space-between; font-size: 0.83rem; }
.spec-key { color: var(--text-muted); }
.spec-val { color: var(--text-light); font-weight: 500; }
.eq-full-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.eq-full-price { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--ice-gold); }
.eq-full-price small { font-size: 0.72rem; color: var(--text-muted); font-weight: 400; }

/* ============================================================
   RENTALS PAGE
   ============================================================ */
.rental-packages { padding: 80px 0; }
.rental-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  margin-bottom: 60px;
}
.rental-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
  display: grid; grid-template-columns: 1fr 1fr;
}
.rental-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow);
  border-color: rgba(0,180,216,0.4);
}
.rental-img { height: 100%; min-height: 260px; object-fit: cover; }
.rental-body { padding: 32px; }
.rental-tag { margin-bottom: 14px; }
.rental-name { font-size: 1.35rem; margin-bottom: 10px; }
.rental-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }
.rental-includes { margin-bottom: 20px; }
.rental-includes h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 12px; }
.rental-include-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-light); margin-bottom: 6px;
}
.rental-include-item::before {
  content: ''; display: block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ice-accent); flex-shrink: 0;
}
.rental-footer { display: flex; align-items: center; justify-content: space-between; }
.rental-price-block { }
.rental-price-label { font-size: 0.75rem; color: var(--text-muted); }
.rental-price-value { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: #fff; }
.rental-price-value span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }

/* How it Works */
.how-it-works { padding: 80px 0; background: rgba(10,42,74,0.2); }
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  position: relative;
}
.how-steps::before {
  content: ''; position: absolute; top: 30px; left: 12%; right: 12%;
  height: 2px; background: linear-gradient(90deg, var(--ice-accent), transparent);
  z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ice-accent), var(--ice-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(0,180,216,0.4);
}
.how-step h4 { margin-bottom: 10px; }
.how-step p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 80px 0; }
.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-story-img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); }
.team-section { padding: 80px 0; background: rgba(10,42,74,0.15); }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.team-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-4px); border-color: rgba(0,180,216,0.4);
}
.team-img { width: 100%; height: 200px; object-fit: cover; object-position: top; }
.team-body { padding: 20px; }
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--ice-accent); margin-bottom: 8px; }
.team-bio { font-size: 0.82rem; color: var(--text-muted); }
.values-section { padding: 80px 0; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.value-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,180,216,0.4);
}
.value-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(0,180,216,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--ice-accent);
}
.value-icon svg { width: 28px; height: 28px; }
.value-title { font-size: 1.1rem; margin-bottom: 12px; }
.value-desc { font-size: 0.87rem; color: var(--text-muted); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid; grid-template-columns: 5fr 4fr; gap: 48px;
}
.contact-form-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 48px;
}
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 8px; letter-spacing: 0.04em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 16px; color: #fff; font-family: var(--font-body);
  font-size: 0.9rem; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--ice-accent);
  background: rgba(0,180,216,0.05);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--ice-dark); }
.form-success {
  display: none; text-align: center; padding: 20px;
  background: rgba(0,180,216,0.1); border: 1px solid var(--ice-accent);
  border-radius: var(--radius-sm); margin-top: 16px; color: var(--ice-accent);
  font-weight: 600;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; align-items: flex-start; gap: 20px;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: rgba(0,180,216,0.4); }
.contact-info-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(0,180,216,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ice-accent); flex-shrink: 0;
}
.contact-info-icon svg { width: 24px; height: 24px; }
.contact-info-text h4 { margin-bottom: 6px; font-size: 1rem; }
.contact-info-text p { font-size: 0.87rem; color: var(--text-muted); }
.contact-info-text a { color: var(--text-muted); font-size: 0.87rem; }
.contact-info-text a:hover { color: var(--ice-accent); }
.contact-map {
  width: 100%; height: 300px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border); margin-top: 20px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   LEGAL PAGES (Privacy, Cookies, Terms)
   ============================================================ */
.legal-section { padding: 80px 0; }
.legal-content {
  max-width: 820px; margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem; margin: 40px 0 16px; color: var(--ice-accent);
}
.legal-content h3 { font-size: 1.15rem; margin: 28px 0 12px; }
.legal-content p { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li {
  font-size: 0.93rem; color: var(--text-muted); line-height: 1.8;
  list-style: disc; margin-bottom: 6px;
}
.legal-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 20px; background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 40px;
}
.legal-meta-item { font-size: 0.82rem; color: var(--text-muted); }
.legal-meta-item strong { color: var(--text-light); }
.cookie-table {
  width: 100%; border-collapse: collapse; margin: 20px 0;
  font-size: 0.85rem;
}
.cookie-table th {
  background: rgba(0,180,216,0.1); color: var(--ice-accent);
  padding: 12px 16px; text-align: left; font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.cookie-table td {
  padding: 12px 16px; color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cookie-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: calc(100% - 48px); max-width: 860px;
  background: rgba(10,22,42,0.97); border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius); padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
#cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }
.cookie-text p { font-size: 0.85rem; color: var(--text-muted); }
.cookie-text a { color: var(--ice-accent); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 22px; border-radius: 50px; font-size: 0.85rem;
  font-weight: 600; cursor: pointer; transition: var(--transition);
  border: 1px solid var(--border); background: transparent; color: var(--text-muted);
}
.cookie-btn.accept {
  background: var(--ice-accent); color: var(--ice-dark); border-color: var(--ice-accent);
}
.cookie-btn.accept:hover { background: var(--ice-glow); }
.cookie-btn:hover { border-color: var(--ice-accent); color: var(--ice-accent); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .eq-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-strip-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-1, .gal-2, .gal-3, .gal-4, .gal-5, .gal-6 {
    grid-column: auto; grid-row: auto;
  }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .rental-card { grid-template-columns: 1fr; }
  .rental-img { height: 220px; }
  .rental-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .eq-full-grid { grid-template-columns: 1fr 1fr; }
  .features-strip-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .eq-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.8rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
  .features-strip-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
  .eq-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; bottom: 12px; padding: 20px; }
}
