:root {
  /* Primary Color Palette */
  --primary-1: #4A6FA5; /* Deep blue */
  --primary-2: #E57F5A; /* Coral orange */
  --primary-3: #49A590; /* Teal */
  --primary-4: #9B72B0; /* Lavender */
  --primary-5: #D9B166; /* Golden yellow */
  
  /* Shades */
  --primary-1-light: #7995C4;
  --primary-1-dark: #345689;
  --primary-2-light: #EEA187;
  --primary-2-dark: #C25A37;
  --primary-3-light: #77C8B7;
  --primary-3-dark: #36816F;
  --primary-4-light: #BFA0CC;
  --primary-4-dark: #775294;
  --primary-5-light: #E7CA92;
  --primary-5-dark: #B59043;
  
  /* Neutrals */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #E0E0E0;
  --dark-gray: #333333;
  --black: #121212;
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--black);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-1);
  color: var(--primary-1);
}

.btn-outline:hover {
  background-color: var(--primary-1);
  color: var(--white);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.subtitle {
  color: var(--primary-2);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Services */
.service-card {
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-1-light);
  color: var(--primary-1);
  font-size: 1.8rem;
  border-radius: 50%;
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-3);
  margin: 15px 0;
}

/* Team */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.team-img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: var(--white);
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Testimonials */
.testimonial-card {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--light-gray);
  margin: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-1);
}

/* Features */
.feature-item {
  text-align: center;
  margin-bottom: 30px;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-4);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Price Plans */
.price-card {
  padding: 40px 30px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.price-card.featured {
  border: 2px solid var(--primary-3);
}

.price-card.featured::before {
  content: "Popular";
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-3);
  color: var(--white);
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 20px;
}

.price-features {
  margin-bottom: 25px;
  padding-left: 0;
  list-style-type: none;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--medium-gray);
}

/* Contact Form */
.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(74, 111, 165, 0.25);
}

/* FAQ */
.accordion-button:not(.collapsed) {
  background-color: var(--primary-1-light);
  color: var(--primary-1-dark);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(74, 111, 165, 0.25);
}

/* Blog */
.blog-card {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 20px;
  background-color: var(--white);
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-excerpt {
  margin-bottom: 15px;
  color: var(--dark-gray);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primary-1);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary-1-light);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-img {
  position: relative;
  z-index: 2;
}

/* Core Info */
.coreinfo-card {
  padding: 25px;
  background-color: var(--light-gray);
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.coreinfo-card:hover {
  background-color: var(--primary-1-light);
  transform: translateY(-10px);
}

.coreinfo-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-1);
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 5rem 0 2rem;
}

#sitename {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#sitedesc {
  margin-bottom: 2rem;
  opacity: 0.8;
}

footer h5 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

footer ul {
  padding-left: 0;
  list-style-type: none;
}

footer ul li {
  margin-bottom: 0.8rem;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.7);
}

footer ul li a:hover {
  color: var(--white);
}

#contact-info-phone,
#contact-info-email,
#contact-info-address {
  margin-bottom: 0.8rem;
}

#site-copyright {
  display: block;
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Gallery */
.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Shapes */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.shape-divider .shape-fill {
  fill: var(--white);
}

.shape-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-divider-top svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.shape-divider-top .shape-fill {
  fill: var(--white);
}

/* Breadcrumb */
.breadcrumb-wrapper {
  background-color: var(--light-gray);
  padding: 1rem 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    animation: none;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .card:hover,
  .service-card:hover,
  .price-card:hover,
  .coreinfo-card:hover,
  .blog-card:hover .blog-img img {
    transform: none;
  }
}

/* Custom styles for the Mobile Pension Claims Clinic */
.pension-bg-pattern {
  background-image: radial-gradient(var(--primary-1-light) 2px, transparent 2px);
  background-size: 30px 30px;
}

.blob-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.2;
}

.blob-1 {
  top: 10%;
  left: 5%;
  fill: var(--primary-2);
}

.blob-2 {
  bottom: 10%;
  right: 5%;
  fill: var(--primary-3);
}

.blob-3 {
  top: 40%;
  right: 15%;
  fill: var(--primary-4);
} 