/* ============================================================
   FrostlineFishing.com — Main Stylesheet
   Premium Ice Fishing Tours for Beginners
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --ice-blue: #00B4D8;
  --deep-blue: #0077B6;
  --midnight: #03045E;
  --arctic: #90E0EF;
  --frost: #CAF0F8;
  --orange-fire: #FF6B35;
  --gold: #FFD60A;
  --white: #FFFFFF;
  --light-gray: #F8FAFC;
  --text-dark: #0D1B2A;
  --text-mid: #374151;
  --text-light: #6B7280;
  --shadow-lg: 0 20px 60px rgba(0, 119, 182, 0.18);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.10);
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; }

.serif { font-family: 'Playfair Display', serif; }
.text-ice { color: var(--ice-blue); }
.text-orange { color: var(--orange-fire); }
.text-gold { color: var(--gold); }

/* ─── Container ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 18px 0;
}

.navbar.scrolled {
  background: rgba(3, 4, 94, 0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--ice-blue), var(--deep-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

.nav-logo span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.nav-logo span em {
  color: var(--ice-blue);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(0, 180, 216, 0.25);
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange-fire), #FF4500) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5) !important;
  background: rgba(0,0,0,0) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 4, 94, 0.75) 0%,
    rgba(0, 119, 182, 0.5) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, 0.2);
  border: 1px solid rgba(0, 180, 216, 0.5);
  color: var(--arctic);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.5px;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--ice-blue);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 span {
  color: var(--ice-blue);
  position: relative;
}

.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 0;
  display: flex;
  gap: 2px;
  z-index: 2;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 18px 28px;
  text-align: center;
  color: var(--white);
}

.stat-card:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.stat-card:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

.stat-card .num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--ice-blue);
  display: block;
  line-height: 1;
}

.stat-card .lbl {
  font-size: 0.78rem;
  opacity: 0.8;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-fire) 0%, #FF4500 100%);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.55);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--deep-blue);
  border: 2px solid var(--deep-blue);
}

.btn-outline-blue:hover {
  background: var(--deep-blue);
  color: var(--white);
}

.btn-blue {
  background: linear-gradient(135deg, var(--deep-blue), var(--midnight));
  color: var(--white);
  box-shadow: 0 6px 25px rgba(0, 119, 182, 0.4);
}

.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 119, 182, 0.5);
}

/* ─── SECTIONS ─── */
section { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ice-blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.7;
}

/* ─── WHY SECTION ─── */
.why-section {
  background: var(--light-gray);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ice-blue), var(--deep-blue));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--frost), var(--arctic));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.why-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.why-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.65; }

/* ─── TOURS GRID ─── */
.tours-section { background: var(--white); }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}

.tour-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.tour-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.tour-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-img-wrap img { transform: scale(1.08); }

.tour-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-bestseller { background: var(--orange-fire); color: var(--white); }
.badge-popular { background: var(--gold); color: var(--midnight); }
.badge-premium { background: var(--midnight); color: var(--arctic); }
.badge-family { background: #22C55E; color: var(--white); }

.tour-body { padding: 28px; }

.tour-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.tour-meta span {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-body h3 { margin-bottom: 10px; font-size: 1.25rem; }
.tour-body p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.07);
  flex-wrap: wrap;
  gap: 12px;
}

.tour-price { display: flex; flex-direction: column; }
.tour-price .from { font-size: 0.75rem; color: var(--text-light); }
.tour-price .amount { font-size: 1.5rem; font-weight: 800; color: var(--deep-blue); }
.tour-price .per { font-size: 0.75rem; color: var(--text-light); }

/* ─── GALLERY ─── */
.gallery-section { background: var(--midnight); }
.gallery-section .section-label { color: var(--arctic); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-sub { color: rgba(255,255,255,0.65); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,4,94,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ─── PROCESS SECTION ─── */
.process-section { background: var(--light-gray); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--ice-blue), var(--deep-blue));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--ice-blue), var(--deep-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(0, 119, 182, 0.35);
  border: 4px solid var(--light-gray);
}

.step h4 { margin-bottom: 8px; font-size: 1rem; color: var(--midnight); }
.step p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.review-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.review-card:hover {
  border-color: var(--arctic);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ice-blue), var(--deep-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.95rem; }
.author-info { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--deep-blue) 50%, var(--ice-blue) 100%);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px; left: -100px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -150px; right: -50px;
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.78); font-size: 1.1rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--deep-blue) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/camp-panoramic.jpg') center/cover;
  opacity: 0.18;
}

.page-hero h1 { color: var(--white); position: relative; z-index: 1; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.breadcrumb a, .breadcrumb span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.breadcrumb a:hover { color: var(--arctic); }
.breadcrumb .sep { color: rgba(255,255,255,0.35); }
.breadcrumb .current { color: var(--arctic); font-weight: 600; }

/* ─── FOOTER ─── */
footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand .brand-logo .logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--ice-blue), var(--deep-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.footer-brand .brand-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand .brand-logo span em { color: var(--ice-blue); font-style: normal; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--ice-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--arctic);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item .icon {
  color: var(--ice-blue);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--arctic); }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--midnight);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.show { display: block; }

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

.cookie-banner h5 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 18px; line-height: 1.55; }
.cookie-banner p a { color: var(--arctic); text-decoration: underline; }

.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--ice-blue), var(--deep-blue));
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover { opacity: 0.9; }
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

/* ─── ABOUT PAGE ─── */
.about-intro { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-block {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img { width: 100%; height: 460px; object-fit: cover; }

.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-float img { width: 100%; height: 160px; object-fit: cover; }

.about-text .section-label { margin-bottom: 10px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; font-size: 1.02rem; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.highlight-item .check {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--ice-blue), var(--deep-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Team Section */
.team-section { background: var(--light-gray); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.team-img {
  height: 280px;
  overflow: hidden;
}

.team-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img { transform: scale(1.05); }

.team-info { padding: 24px 20px; }
.team-info h3 { margin-bottom: 4px; font-size: 1.1rem; }
.team-info .role { color: var(--ice-blue); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.team-info p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.6; }

/* ─── CONTACTS PAGE ─── */
.contacts-section { background: var(--white); }

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-card:hover {
  border-color: var(--arctic);
  background: var(--frost);
}

.contact-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--ice-blue), var(--deep-blue));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card-text h4 { font-size: 0.9rem; color: var(--text-light); margin-bottom: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-card-text p, .contact-card-text a { font-size: 1rem; font-weight: 600; color: var(--text-dark); }
.contact-card-text a:hover { color: var(--deep-blue); }

/* Contact Form */
.contact-form-wrap {
  background: var(--light-gray);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}

.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap .sub { color: var(--text-mid); margin-bottom: 32px; font-size: 0.95rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ice-blue);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
}

.form-group textarea { height: 130px; }

.form-success {
  display: none;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 1px solid #6EE7B7;
  border-radius: 12px;
  padding: 20px 24px;
  color: #065F46;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

/* ─── LEGAL PAGES ─── */
.legal-content {
  background: var(--white);
  padding: 80px 0;
}

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.legal-wrap h2 {
  font-size: 1.4rem;
  color: var(--midnight);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--frost);
}

.legal-wrap h2:first-child { margin-top: 0; }

.legal-wrap p {
  color: var(--text-mid);
  line-height: 1.78;
  font-size: 0.97rem;
  margin-bottom: 14px;
}

.legal-wrap ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-wrap ul li {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-date {
  background: var(--frost);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--deep-blue);
  font-weight: 600;
  margin-bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ─── PRICING CARDS ─── */
.pricing-section { background: var(--light-gray); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.price-card.featured {
  background: linear-gradient(135deg, var(--midnight), var(--deep-blue));
  border-color: var(--ice-blue);
}

.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.price-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-fire);
  color: var(--white);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--midnight); }
.price-card.featured h3 { color: var(--white); }
.price-card .price-sub { font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; }
.price-card.featured .price-sub { color: rgba(255,255,255,0.65); }

.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--deep-blue);
  margin-bottom: 4px;
}

.price-card.featured .price-amount { color: var(--arctic); }
.price-amount sup { font-size: 1.2rem; vertical-align: top; margin-top: 10px; display: inline-block; }
.price-amount span { font-size: 0.9rem; font-weight: 500; color: var(--text-light); }
.price-card.featured .price-amount span { color: rgba(255,255,255,0.55); }

.price-divider {
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin: 24px 0;
}

.price-card.featured .price-divider { background: rgba(255,255,255,0.15); }

.price-features { list-style: none !important; padding: 0 !important; margin-bottom: 32px; }
.price-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}

.price-card.featured .price-features li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.1); }

.price-features li .tick {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--ice-blue), var(--deep-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ─── FAQ ─── */
.faq-section { background: var(--white); }

.faq-list { margin-top: 52px; max-width: 820px; }

.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--ice-blue); box-shadow: 0 4px 20px rgba(0,180,216,0.12); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
  transition: var(--transition);
}

.faq-q:hover { color: var(--deep-blue); }
.faq-item.open .faq-q { color: var(--deep-blue); }

.faq-icon {
  width: 32px; height: 32px;
  background: var(--frost);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-blue);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--deep-blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-a p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.75; }

/* ─── MAP SECTION ─── */
.map-section { background: var(--light-gray); padding: 80px 0; }

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--frost), var(--arctic));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  border: 2px dashed var(--ice-blue);
  position: relative;
  overflow: hidden;
}

.map-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  opacity: 0.45;
}

.map-placeholder .map-label {
  position: relative;
  z-index: 1;
  text-align: center;
}

.map-placeholder .map-pin {
  font-size: 3rem;
  display: block;
  margin-bottom: 8px;
}

.map-placeholder h4 { font-size: 1.1rem; color: var(--midnight); margin-bottom: 4px; }
.map-placeholder p { font-size: 0.9rem; color: var(--deep-blue); font-weight: 500; }

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-float { right: -10px; }
  .contacts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  
  .nav-links { display: none; position: fixed; inset: 0; background: rgba(3,4,94,0.97); flex-direction: column; align-items: center; justify-content: center; gap: 20px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .burger { display: flex; position: relative; z-index: 1001; }
  
  .hero-stats { position: static; margin-top: 40px; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 120px; border-radius: var(--radius-lg) !important; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .process-steps::before { display: none; }
  
  .about-img-float { display: none; }
  
  .hero-actions { flex-direction: column; align-items: flex-start; }
  
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}
