/* ===== MOBILE PENSION ADVICE VAN TEMPLATE - MAIN CSS ===== */

/* Color Palette Variables */
:root {
  /* Primary Colors */
  --primary-sage: #9bb3a5;
  --primary-lavender: #b8a6d9;
  --primary-peach: #f4c2a1;
  --primary-mint: #a8d5b8;
  --primary-coral: #e8b4b8;
  
  /* Light Shades */
  --light-sage: #c1d4c8;
  --light-lavender: #d4c7e8;
  --light-peach: #f8d9c7;
  --light-mint: #c8e5d1;
  --light-coral: #f1d1d4;
  
  /* Dark Shades */
  --dark-sage: #6d8471;
  --dark-lavender: #8a7ba8;
  --dark-peach: #d19a71;
  --dark-mint: #7bb88b;
  --dark-coral: #d18a90;
  
  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #fafafa;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
  --text-dark: #2c2c2c;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-sage), var(--primary-lavender));
  --gradient-secondary: linear-gradient(135deg, var(--primary-peach), var(--primary-coral));
  --gradient-hero: linear-gradient(135deg, var(--light-sage), var(--light-lavender), var(--light-peach));
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: 'Georgia', serif;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-padding: 1rem;
  
  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===== GLOBAL STYLES ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== HEADER STYLES ===== */

header {
  background: var(--white);
  box-shadow: var(--shadow-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--container-padding);
}

#sitename {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-sage);
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: var(--primary-sage);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-sage);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ===== HERO SECTION ===== */

.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../JET_images/hero-bg.webp') center center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--dark-sage);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text h2 {
  font-size: 1.5rem;
  color: var(--primary-lavender);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

/* ===== DECORATIVE SHAPES ===== */

.shape {
  position: absolute;
  opacity: 0.6;
  z-index: 1;
}

.shape-circle {
  width: 200px;
  height: 200px;
  background: var(--primary-mint);
  border-radius: 50%;
  top: 10%;
  right: -5%;
}

.shape-blob {
  width: 300px;
  height: 300px;
  background: var(--primary-peach);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 10%;
  left: -10%;
}

/* ===== SECTION STYLES ===== */

section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.section-header h3 {
  font-size: 1.3rem;
  color: var(--primary-lavender);
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */

.about {
  background: var(--off-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.3rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

/* ===== SERVICES SECTION ===== */

.services {
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-image {
  height: 200px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-content h4 {
  font-size: 1.5rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-mint);
  font-weight: bold;
}

.service-price {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 1rem;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 10px;
  margin-top: auto;
}

/* ===== TEAM SECTION ===== */

.team {
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-sage);
}

.team-member h4 {
  font-size: 1.2rem;
  color: var(--dark-sage);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-lavender);
  font-style: italic;
}

/* ===== TESTIMONIALS/REVIEWS SECTION ===== */

.reviews {
  background: var(--gradient-primary);
  color: var(--white);
}

.reviews .section-header h2,
.reviews .section-header h3,
.reviews .section-header p {
  color: var(--white);
}

.swiper-container {
  padding: 2rem 0;
}

.review-slide {
  background: var(--white);
  color: var(--text-dark);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.review-slide p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.review-author {
  font-weight: bold;
  color: var(--primary-sage);
}

/* ===== CONTACT FORM ===== */

.contact {
  background: var(--light-gray);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-sage);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-sage);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.btn-submit {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ===== FAQ SECTION ===== */

.faq {
  background: var(--off-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-question {
  background: var(--light-sage);
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.faq-question:hover {
  background: var(--primary-sage);
  color: var(--white);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: var(--text-dark);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===== GALLERY SECTION ===== */

.gallery {
  background: var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== BLOG SECTION ===== */

.blog {
  background: var(--off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h4 {
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.blog-content p {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

/* ===== FOOTER STYLES ===== */

footer {
  background: var(--dark-sage);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--light-sage);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--white);
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--light-sage);
}

.footer-bottom {
  border-top: 1px solid var(--primary-sage);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom small {
  color: var(--light-sage);
}

/* ===== BREADCRUMB ===== */

.breadcrumb {
  background: var(--light-gray);
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb img {
  height: 30px;
  width: auto;
}

/* ===== UTILITY CLASSES ===== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 