/* Post-Retirement Consultancy Office Template - Main CSS */

:root {
  /* Complex Harmonious Pastel Color Palette */
  --primary-sage: #A8C29A;
  --primary-lavender: #B8A7D9;
  --primary-peach: #F4C2A1;
  --primary-steel: #9EAAB5;
  --primary-cream: #F5F1E8;
  
  /* Light/Dark Shades */
  --sage-light: #D4E6CB;
  --sage-dark: #7A9B6B;
  --lavender-light: #E0D7F2;
  --lavender-dark: #8B73B3;
  --peach-light: #FAE2D0;
  --peach-dark: #E6956F;
  --steel-light: #C8D2DB;
  --steel-dark: #6B7A87;
  --cream-light: #FDFCF9;
  --cream-dark: #E8E1D3;
  
  /* Accent Colors */
  --accent-gold: #D4AF37;
  --accent-rust: #B7472A;
  --text-dark: #2C3E50;
  --text-medium: #5D6D7E;
  --text-light: #BDC3C7;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 20px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--sage-light) 100%);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; color: var(--text-dark); }
h2 { font-size: 2.8rem; color: var(--sage-dark); }
h3 { font-size: 2.2rem; color: var(--lavender-dark); }
h4 { font-size: 1.8rem; color: var(--steel-dark); }
h5 { font-size: 1.4rem; color: var(--text-medium); }
h6 { font-size: 1.2rem; color: var(--text-medium); }

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
  font-size: 1.1rem;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream-light) 100%);
  box-shadow: 0 2px 20px var(--shadow);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sage-dark) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background: linear-gradient(45deg, var(--sage-light), var(--lavender-light));
  color: var(--sage-dark) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--lavender-light) 50%, var(--peach-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../FES_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  background: linear-gradient(45deg, var(--primary-sage), var(--primary-lavender));
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  background: linear-gradient(45deg, var(--sage-dark), var(--lavender-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--steel-dark);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 600px;
}

/* Sections */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--steel-dark);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: var(--text-medium);
}

/* About Section */
.about {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--white) 100%);
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-sage);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-feature h4 {
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-lavender);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--peach-light) 100%);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 15px 40px var(--shadow);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-sage), var(--primary-lavender));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--sage-light), var(--lavender-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2.5rem;
  color: var(--sage-dark);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-medium);
  border-bottom: 1px solid var(--cream-dark);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--primary-sage);
  margin-right: 0.5rem;
}

/* Features Section */
.features {
  background: linear-gradient(135deg, var(--peach-light) 0%, var(--steel-light) 100%);
}

.feature-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 3.5rem;
  color: var(--primary-peach);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan {
  background: linear-gradient(135deg, var(--steel-light) 0%, var(--sage-light) 100%);
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 40px var(--shadow);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
}

.price-card.featured {
  transform: scale(1.05);
  border: 3px solid var(--accent-gold);
}

.price-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 1rem 0;
}

.price-card .price span {
  font-size: 1rem;
  color: var(--text-medium);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-medium);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li i {
  color: var(--primary-sage);
  margin-right: 0.5rem;
}

/* Team Section */
.team {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--lavender-light) 100%);
}

.team-member {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 40px var(--shadow);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 4px solid var(--primary-sage);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.4rem;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-medium);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background: linear-gradient(135deg, var(--peach-light) 0%, var(--cream-light) 100%);
}

.review-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 4rem;
  color: var(--primary-lavender);
  font-family: var(--font-secondary);
}

.review-text {
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: 600;
  color: var(--sage-dark);
}

/* Core Info Section */
.coreinfo {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--steel-light) 100%);
}

.coreinfo-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-steel);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--peach-light) 100%);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--cream-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(168, 194, 154, 0.1);
}

.form-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  background: var(--cream-light);
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-sage), var(--primary-lavender));
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(168, 194, 154, 0.3);
}

/* Blog Section */
.blog {
  background: linear-gradient(135deg, var(--steel-light) 0%, var(--cream-light) 100%);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background: linear-gradient(45deg, var(--sage-light), var(--lavender-light));
  position: relative;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-lavender);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--lavender-dark);
}

/* FAQ Section */
.faq {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--sage-light) 100%);
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  padding: 1.5rem;
  background: linear-gradient(45deg, var(--sage-light), var(--lavender-light));
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-header:hover {
  background: linear-gradient(45deg, var(--sage-dark), var(--lavender-dark));
  color: var(--white);
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-content.active {
  padding: 1.5rem;
  max-height: 500px;
}

/* Gallery Section */
.gallery {
  background: linear-gradient(135deg, var(--peach-light) 0%, var(--steel-light) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  height: 250px;
  background: linear-gradient(45deg, var(--sage-light), var(--lavender-light));
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--steel-dark) 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--sage-light);
  margin-bottom: 1.5rem;
}

.footer-section p, .footer-section a {
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--sage-light);
}

.footer-bottom {
  border-top: 1px solid var(--steel-dark);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom small {
  color: var(--text-light);
}

/* Swiper Customization */
.swiper {
  padding-bottom: 3rem;
}

.swiper-pagination-bullet {
  background: var(--primary-sage);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--sage-dark);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item {
  display: inline-block;
  margin-right: 0.5rem;
}

.breadcrumb-item::after {
  content: '>';
  margin-left: 0.5rem;
  color: var(--text-light);
}

.breadcrumb-item:last-child::after {
  display: none;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

/* Contact Info */
.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 2rem;
}

.contact-info h4 {
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.contact-info i {
  color: var(--primary-lavender);
  margin-right: 0.5rem;
  width: 20px;
} 