/* Main CSS File for Pension Appeals Roadshow Template */

/* CSS Variables */
:root {
  /* Primary Colors */
  --primary-1: #4a6da7; /* Main blue */
  --primary-2: #d17b46; /* Orange accent */
  --primary-3: #2c4b6e; /* Dark blue */
  --primary-4: #e9ecef; /* Light gray */
  --primary-5: #a1c181; /* Green accent */
  
  /* Shades */
  --primary-1-light: #6383bd;
  --primary-1-dark: #355792;
  --primary-2-light: #e1936a;
  --primary-2-dark: #b66334;
  --primary-3-light: #3e6b9e;
  --primary-3-dark: #1a2d43;
  --primary-4-light: #f8f9fa;
  --primary-4-dark: #dde2e6;
  --primary-5-light: #b9d3a0;
  --primary-5-dark: #8aad66;
  
  /* Text Colors */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #f8f9fa;
  
  /* Other Variables */
  --section-padding: 80px 0;
  --border-radius: 10px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: var(--section-padding);
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
}

/* Header */
header {
  background-color: var(--primary-3);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#sitename {
  color: var(--text-light);
  font-size: 1.8rem;
  font-weight: 700;
}

.navbar {
  padding: 0;
}

.navbar-nav .nav-link {
  color: var(--text-light);
  padding: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-2);
}

/* Hero Section */
.hero-section {
  background-color: var(--primary-3);
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 75, 110, 0.9) 0%, rgba(44, 75, 110, 0.7) 100%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#hero-title-1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

#hero-subtitle-1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

#hero-desc-1 {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* About Section */
.about-section {
  background-color: var(--primary-4-light);
}

#about-title {
  color: var(--primary-3);
  margin-bottom: 1rem;
}

#about-subtitle {
  color: var(--primary-2);
  margin-bottom: 2rem;
}

#about-desc {
  margin-bottom: 3rem;
}

.about-feature-box {
  background-color: #fff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.about-feature-box:hover {
  transform: translateY(-10px);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
  background-color: #fff;
}

#services-title {
  color: var(--primary-3);
}

#services-subtitle {
  color: var(--primary-2);
}

.service-card {
  background-color: var(--primary-4-light);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 30px;
  transition: var(--transition);
  border: 1px solid transparent;
  height: 100%;
}

.service-card:hover {
  border-color: var(--primary-1);
  box-shadow: var(--box-shadow);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-2);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: var(--primary-3);
  color: var(--text-light);
}

#features-title, #features-subtitle {
  color: var(--text-light);
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius);
  height: 100%;
  transition: var(--transition);
}

.feature-box:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-2);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-4-light);
}

.price-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}

.price-card:hover {
  border-color: var(--primary-1);
  transform: translateY(-10px);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: #fff;
}

.team-card {
  background-color: var(--primary-4-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-img-wrapper {
  height: 250px;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-role {
  color: var(--primary-2);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-3);
  color: var(--text-light);
}

#reviews-title, #reviews-subtitle {
  color: var(--text-light);
}

.review-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 30px;
  position: relative;
  margin-top: 40px;
}

.review-card::before {
  content: '\201C';
  font-size: 80px;
  position: absolute;
  left: 20px;
  top: -20px;
  color: var(--primary-2);
  opacity: 0.5;
}

.review-author {
  font-weight: 700;
  margin-top: 20px;
  color: var(--primary-2);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--primary-4-light);
}

.info-box {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.info-box:hover {
  transform: translateY(-5px);
}

.info-icon {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: 1.5rem;
}

/* Contact Form Section */
.contact-section {
  background-color: #fff;
}

.contact-form {
  background-color: var(--primary-4-light);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-control {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

/* Blog Section */
.blog-section {
  background-color: var(--primary-4-light);
}

.blog-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.1);
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: #fff;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1-light);
  color: var(--text-light);
}

.accordion-button:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.25rem rgba(74, 109, 167, 0.25);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--primary-4-light);
  padding-bottom: 100px;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.gallery-item img {
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-3);
  color: var(--text-light);
  padding: 60px 0 20px;
}

footer h5 {
  color: var(--primary-2);
  margin-bottom: 20px;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

footer a:hover {
  color: var(--primary-2);
  text-decoration: none;
}

#contact-info-phone,
#contact-info-email,
#contact-info-address {
  margin-bottom: 10px;
}

#site-copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 40px;
  display: block;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Additional Pages */
.page-header {
  background-color: var(--primary-3);
  color: var(--text-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 75, 110, 0.9) 0%, rgba(44, 75, 110, 0.7) 100%);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

/* Animations and Effects */
.animate-up {
  transition: transform 0.6s ease;
}

.animate-up:hover {
  transform: translateY(-10px);
}

/* Shapes and decorations */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

.blob-shape {
  position: absolute;
  opacity: 0.5;
  z-index: 0;
}

/* Swiper Slider Styles */
.swiper-container {
  width: 100%;
  overflow: hidden;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--primary-1);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-1);
} 