/* ==========================================
   WINDIFUNGRID - Norway Nature Retreats Guide
   Design System & Global Styles
   ========================================== */

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

/* CSS Custom Properties */
:root {
  --bg-mist: #eef2f9;
  --primary-green: #4a6fa5;
  --primary-green-dark: #3b5998;
  --earth-sage: #7b9acc;
  --earth-sage-light: #a8c4e0;
  --card-bg: #ffffff;
  --border: #d4dff0;
  --text-primary: #1a2744;
  --text-secondary: #5a6b80;
  --text-light: #8a97a8;
  --white: #ffffff;
  --accent-purple: #7c5cbf;
  --accent-purple-light: #9b7fd4;
  --accent-purple-dark: #5e3fa3;
  --accent-ice: #c8e6f5;
  --accent-sky: #5ba3d9;
  --shadow-soft: 0 2px 20px rgba(26, 39, 68, 0.06);
  --shadow-medium: 0 4px 30px rgba(26, 39, 68, 0.1);
  --shadow-hover: 0 8px 40px rgba(26, 39, 68, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', 'Merriweather', Georgia, serif;
  --font-body: 'Inter', 'Open Sans', system-ui, sans-serif;
  --container-max: 1200px;
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-mist);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  background: rgba(238, 242, 249, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

.navbar-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-menu a {
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
  position: relative;
}

.navbar-menu a:hover {
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-purple));
  color: var(--white);
}

.navbar-menu a.active {
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-purple));
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--primary-green);
  border-radius: 4px;
  transition: var(--transition);
  display: block;
}

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

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

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

/* Mobile menu overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 39, 68, 0.3);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-purple));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(91, 163, 217, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-purple-dark));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(124, 92, 191, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-purple);
  border: 2px solid var(--accent-purple);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-purple));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--accent-purple);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.88rem;
}

/* ==========================================
   HERO SECTIONS
   ========================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--navbar-height);
  background: linear-gradient(135deg, #1a2744 0%, #2d4a7a 40%, #4a6fa5 70%, #5ba3d9 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 39, 68, 0.35) 0%,
    rgba(74, 111, 165, 0.45) 50%,
    rgba(124, 92, 191, 0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 24px;
  animation: fadeInUp 1s ease-out;
}

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

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (smaller) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--navbar-height);
  background: linear-gradient(135deg, #1a2744 0%, #2d4a7a 40%, #4a6fa5 70%, #5ba3d9 100%);
}

.page-hero .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(26, 39, 68, 0.4) 0%,
    rgba(124, 92, 191, 0.5) 100%
  );
}

.page-hero .hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.section-sm {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .label {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(91, 163, 217, 0.1);
  color: var(--accent-sky);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
}

.section-alt {
  background: var(--white);
}

/* ==========================================
   CARDS
   ========================================== */
.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, #2d4a7a 0%, #5ba3d9 50%, #7c5cbf 100%);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-purple));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.card-body {
  padding: 28px;
}

.card-body .location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-sky);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.card-body h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.card-body p {
  font-size: 0.93rem;
  margin-bottom: 20px;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.card-features span {
  padding: 5px 12px;
  background: rgba(91, 163, 217, 0.1);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--accent-purple);
  font-weight: 500;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ==========================================
   CATEGORY CARDS
   ========================================== */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  background: linear-gradient(135deg, #1a2744 0%, #4a6fa5 50%, #7c5cbf 100%);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 39, 68, 0.8) 0%,
    rgba(124, 92, 191, 0.15) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--transition);
}

.category-card:hover .overlay {
  background: linear-gradient(
    to top,
    rgba(26, 39, 68, 0.9) 0%,
    rgba(124, 92, 191, 0.25) 60%
  );
}

.category-card .overlay h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.category-card .overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ==========================================
   SPLIT LAYOUT
   ========================================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  height: 420px;
  background: linear-gradient(135deg, #2d4a7a 0%, #5ba3d9 50%, #7c5cbf 100%);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text .label {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(91, 163, 217, 0.1);
  color: var(--accent-sky);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.split-text h2 {
  margin-bottom: 20px;
}

.split-text p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.split-text ul {
  margin-bottom: 28px;
}

.split-text ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.split-text ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-purple-light);
  font-size: 0.8rem;
}

/* ==========================================
   EXPERIENCE CARDS
   ========================================== */
.experience-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.experience-card .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91, 163, 217, 0.12), rgba(124, 92, 191, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.experience-card h4 {
  margin-bottom: 12px;
}

.experience-card p {
  font-size: 0.93rem;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.testimonial-card .stars {
  color: #e6a817;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card .author-info strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-card .author-info span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ==========================================
   FORM STYLES
   ========================================== */
.form-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border);
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-mist);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-sky);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(91, 163, 217, 0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

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

.form-group .error-msg {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #c0392b;
}

.form-group.error .error-msg {
  display: block;
}

.form-success {
  text-align: center;
  padding: 40px;
  display: none;
}

.form-success .checkmark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91, 163, 217, 0.15), rgba(124, 92, 191, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--accent-purple);
}

/* ==========================================
   ARTICLE / GUIDE LAYOUT
   ========================================== */
.article-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.article-layout h2 {
  margin: 48px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.article-layout h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.article-layout h3 {
  margin: 32px 0 16px;
}

.article-layout p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.article-layout ul {
  margin: 16px 0 28px 0;
}

.article-layout ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-secondary);
  font-size: 1rem;
}

.article-layout ul li::before {
  content: '❄️';
  position: absolute;
  left: 0;
}

.article-layout .tip-box {
  background: linear-gradient(135deg, rgba(91, 163, 217, 0.06), rgba(124, 92, 191, 0.06));
  border-left: 4px solid var(--accent-purple);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 28px 0;
}

.article-layout .tip-box strong {
  display: block;
  color: var(--accent-purple);
  margin-bottom: 8px;
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent-purple);
}

.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--accent-sky);
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ==========================================
   STATS BAR
   ========================================== */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-purple));
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 6px;
}

.stat-item p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2744 0%, #4a6fa5 40%, #7c5cbf 70%, #5ba3d9 100%);
}

.cta-banner .cta-bg {
  position: absolute;
  inset: 0;
}

.cta-banner .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.75), rgba(124,92,191,0.6));
}

.cta-banner .cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  max-width: 600px;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter-section {
  background: var(--white);
  text-align: center;
  padding: 80px 0;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 24px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent-sky);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.8);
  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-about .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-about .footer-logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-about p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-ice);
  padding-left: 4px;
}

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

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links a:hover {
  color: var(--accent-ice);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* NO-JS FALLBACK: If JavaScript fails to load,
   make all content visible immediately */
.no-js .fade-in,
.fade-in.no-js-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax helper */
.parallax-img {
  will-change: transform;
}

/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-content h2 {
  margin: 40px 0 16px;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin: 28px 0 12px;
  font-size: 1.2rem;
}

.legal-content p {
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.legal-content ul {
  margin: 12px 0 20px 20px;
}

.legal-content ul li {
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  list-style: disc;
}

.legal-content a {
  color: var(--accent-purple);
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */
@media (max-width: 768px) {
  :root {
    --navbar-height: 68px;
  }

  .hamburger {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 4px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.1);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

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

  .navbar-menu a {
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }

  .mobile-overlay {
    display: block;
    pointer-events: none;
  }

  .mobile-overlay.active {
    pointer-events: all;
  }

  .hero {
    min-height: 80vh;
  }

  .page-hero {
    min-height: 40vh;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .split-image {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 32px 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .category-card {
    height: 240px;
  }

  .cta-banner {
    border-radius: var(--radius-lg);
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stat-item h3 {
    font-size: 1.8rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }