/*
* PensionCheck - Pension Health Check Booths Template
* Version: 1.0
* Author: Claude
*/

/* ===== ROOT VARIABLES ===== */
:root {
  /* Primary Colors */
  --primary-color: #5a8fc3;      /* Soft blue */
  --secondary-color: #92c4ab;    /* Sage green */
  --accent-color: #f7c97e;       /* Warm yellow */
  --neutral-color: #f0f4f8;      /* Light blue-gray */
  --dark-color: #2d4059;         /* Navy blue */
  
  /* Light/Dark Shades */
  --primary-light: #7fa9d3;
  --primary-dark: #406e9e;
  --secondary-light: #abd0bd;
  --secondary-dark: #6e9781;
  --accent-light: #fad499;
  --accent-dark: #dba85c;
  
  /* Text Colors */
  --text-dark: #2d3748;
  --text-medium: #4a5568;
  --text-light: #718096;
  --text-white: #ffffff;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  /* Other Variables */
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --header-height: 80px;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #ffffff;
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

.container {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
}

.section-header {
  margin-bottom: var(--space-xl);
}

.bg-light {
  background-color: var(--neutral-color);
}

.shape-divider {
  height: 150px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23f0f4f8'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

/* ===== HEADER STYLES ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  padding: 0.5rem 0;
}

.header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 0.8rem;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
  height: 100vh;
  min-height: 600px;
  padding: 0;
  display: flex;
  align-items: center;
  margin-top: var(--header-height);
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(45, 64, 89, 0.8) 0%, rgba(45, 64, 89, 0.4) 100%);
  z-index: 1;
}

.hero-slide:nth-child(1) {
  background: url('../images/hero1.jpg') no-repeat center center/cover;
}

.hero-slide:nth-child(2) {
  background: url('../images/hero2.jpg') no-repeat center center/cover;
}

.hero-slide:nth-child(3) {
  background: url('../images/hero3.jpg') no-repeat center center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 0 var(--space-lg);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: white;
}

.hero-content h3 {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  color: var(--accent-light);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.swiper-button-next, .swiper-button-prev {
  color: white !important;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-color);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  position: relative;
  padding-bottom: 150px;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-content {
  padding: var(--space-lg);
}

.feature-card {
  padding: var(--space-md);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background-color: white;
  height: 100%;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.feature-card h5 {
  margin-bottom: 0.5rem;
}

/* ===== SERVICES SECTION ===== */
.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: var(--space-md);
}

.service-content h4 {
  margin-bottom: 0.5rem;
}

.service-content p {
  margin-bottom: var(--space-sm);
  color: var(--text-medium);
}

.service-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-md);
}

.service-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.5rem;
  color: var(--text-medium);
}

.service-content ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.price-tag {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--text-dark);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 30px;
}

/* ===== FEATURES SECTION ===== */
.feature-item {
  text-align: center;
  padding: var(--space-md);
  height: 100%;
  transition: var(--transition);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  transition: var(--transition);
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  background-color: var(--primary-color);
}

/* ===== PRICE PLAN SECTION ===== */
.pricing-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
  border: 2px solid transparent;
}

.pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  background-color: var(--primary-color);
  color: white;
  padding: var(--space-md);
  text-align: center;
}

.featured .pricing-header {
  background-color: var(--accent-color);
  color: var(--text-dark);
}

.pricing-header h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.featured .pricing-header h4 {
  color: var(--text-dark);
}

.pricing-header .price-tag {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.2rem;
}

.featured .pricing-header .price-tag {
  background-color: white;
  color: var(--text-dark);
}

.pricing-body {
  padding: var(--space-md);
}

.pricing-body p {
  text-align: center;
  margin-bottom: var(--space-md);
}

.pricing-body ul {
  list-style: none;
  padding-left: 0;
}

.pricing-body ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.5rem;
  color: var(--text-medium);
}

.pricing-body ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* ===== TEAM SECTION ===== */
.team-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: var(--space-md);
  text-align: center;
}

.team-info h5 {
  margin-bottom: 0.25rem;
}

.team-info p {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* ===== REVIEWS SECTION ===== */
.reviews-swiper {
  padding-bottom: 60px;
}

.review-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  box-shadow: var(--box-shadow);
  position: relative;
  margin: var(--space-md) var(--space-sm);
  height: 100%;
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon i {
  color: white;
  font-size: 1.2rem;
}

.review-card p {
  margin-bottom: var(--space-md);
}

.reviewer h5 {
  color: var(--primary-color);
  margin-bottom: 0;
}

/* ===== CORE INFO SECTION ===== */
.info-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  box-shadow: var(--box-shadow);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 70px;
  height: 70px;
  background-color: var(--secondary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  transition: var(--transition);
}

.info-icon i {
  font-size: 1rem;
  color: var(--text-dark);
}

.info-card:hover .info-icon {
  background-color: var(--secondary-color);
}

.info-card h4 {
  margin-bottom: 0.5rem;
}

/* ===== CONTACT SECTION ===== */
.contact-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.contact-form-wrapper {
  background-color: white;
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  box-shadow: var(--box-shadow);
}

.form-control, .form-select {
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  margin-bottom: var(--space-sm);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(90, 143, 195, 0.25);
}

.submit-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
}

.submit-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.contact-info-item {
  padding: var(--space-md);
}

.contact-info-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.contact-info-item p {
  margin-bottom: 0;
  font-weight: 500;
}

/* ===== BLOG SECTION ===== */
.blog-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--space-md);
}

.blog-content h4 {
  margin-bottom: 0.5rem;
}

.blog-content p {
  margin-bottom: var(--space-sm);
  color: var(--text-medium);
}

.blog-content a {
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
}

.blog-content a:hover {
  color: var(--primary-dark);
}

/* ===== FOOTER ===== */
.footer-section {
  background-color: var(--dark-color);
  color: white;
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-section h4, .footer-section h5 {
  color: white;
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cbd5e0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  text-align: center;
}

.footer-bottom small {
  color: #a0aec0;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(90deg, rgba(45, 64, 89, 0.9) 0%, rgba(45, 64, 89, 0.7) 100%), url('../images/page-banner.jpg') no-repeat center center/cover;
  padding: 8rem 0 4rem;
  color: white;
  margin-top: var(--header-height);
}

.page-banner h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.page-banner p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== ADDITIONAL PAGES STYLES ===== */

/* Process Steps */
.process-steps {
  padding: var(--space-md);
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: var(--space-sm);
}

.step-content {
  flex-grow: 1;
}

.step-content h4 {
  margin-bottom: 0.25rem;
}

/* Location Cards */
.location-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.location-image {
  height: 200px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.location-card:hover .location-image img {
  transform: scale(1.05);
}

.location-content {
  padding: var(--space-md);
  text-align: center;
}

/* Document Categories */
.document-category {
  text-align: center;
  padding: var(--space-md);
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.document-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.document-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.document-icon i {
  font-size: 1rem;
  color: white;
}

/* Timeline */
.timeline {
  position: relative;
  padding: var(--space-md) 0;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 4px;
  background-color: var(--primary-light);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--space-lg);
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
}

.timeline-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: var(--space-md);
  box-shadow: var(--box-shadow);
}

.timeline-content h4 {
  margin-bottom: 0.25rem;
}

/* Tool Items */
.planning-tools {
  padding: var(--space-md);
}

.tool-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.tool-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tool-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-md);
  flex-shrink: 0;
}

.tool-icon i {
  font-size: 1rem;
  color: white;
}

.tool-content {
  flex-grow: 1;
}

.tool-content h4 {
  margin-bottom: 0.25rem;
}

/* Pension Types */
.pension-type-card {
  text-align: center;
  padding: var(--space-md);
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.pension-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pension-icon {
  width: 70px;
  height: 70px;
  background-color: var(--secondary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.pension-icon i {
  font-size: 1rem;
  color: var(--text-dark);
}

/* Retirement Options */
.option-card {
  text-align: center;
  padding: var(--space-lg);
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.option-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.option-icon i {
  font-size: 2rem;
  color: var(--text-dark);
}

/* Tax Considerations */
.tax-considerations {
  padding: var(--space-md);
}

.tax-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.tax-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tax-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-md);
  flex-shrink: 0;
}

.tax-icon i {
  font-size: 1rem;
  color: white;
}

.tax-content {
  flex-grow: 1;
}

.tax-content h4 {
  margin-bottom: 0.25rem;
}

/* Resources */
.resource-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resource-image {
  height: 200px;
  overflow: hidden;
}

.resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.resource-card:hover .resource-image img {
  transform: scale(1.05);
}

.resource-content {
  padding: var(--space-md);
  text-align: center;
}

/* Space Container */
#space {
  min-height: 500px;
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
} 