/* Pension Clinic Template - Main CSS */

:root {
  /* Primary Color Palette */
  --primary-sage: #87a96b;
  --primary-lavender: #b8a9c9;
  --primary-soft-blue: #7fb3d3;
  --primary-warm-beige: #f4f1e8;
  --primary-coral: #e8a87c;
  
  /* Light Shades */
  --light-sage: #c4d4b0;
  --light-lavender: #d4c9e0;
  --light-blue: #b3d1e7;
  --light-beige: #f9f7f2;
  --light-coral: #f2c5a8;
  
  /* Dark Shades */
  --dark-sage: #5a7a48;
  --dark-lavender: #8b7a9e;
  --dark-blue: #5a8ba8;
  --dark-beige: #e6dfd0;
  --dark-coral: #d18a5a;
  
  /* System Colors */
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-light: #6b6b6b;
  --border-light: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-sage);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-lavender));
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  color: var(--light-beige) !important;
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--white) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-beige), var(--light-lavender));
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../AGR_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--dark-sage);
  font-weight: 700;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary-sage);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-coral);
  top: 20%;
  right: 10%;
}

.shape-blob-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-soft-blue);
  bottom: 30%;
  left: 5%;
}

/* Section Styling */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--dark-sage);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--light-beige);
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: 2px solid var(--border-light);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.service-name {
  font-size: 1.4rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-features {
  color: var(--primary-sage);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-coral);
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--light-sage), var(--light-lavender));
}

/* Price Plan Section */
.priceplan-section {
  background: var(--white);
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-sage), var(--primary-coral));
}

/* Team Section */
.team-section {
  background: var(--light-beige);
}

.team-member {
  text-align: center;
  margin-bottom: 3rem;
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--primary-sage);
}

.team-name {
  font-size: 1.3rem;
  color: var(--dark-sage);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-sage);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: var(--white);
}

.review-card {
  background: var(--light-beige);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  margin: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.review-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: 600;
  color: var(--dark-sage);
}

/* Core Info Section */
.coreinfo-section {
  background: linear-gradient(135deg, var(--light-blue), var(--light-coral));
}

.coreinfo-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Form Section */
.contact-section {
  background: var(--light-beige);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--border-light);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(135, 169, 107, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-coral));
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Blog Section */
.blog-section {
  background: var(--white);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--dark-sage);
}

/* FAQ Section */
.faq-section {
  background: var(--light-beige);
}

.accordion-button {
  background: var(--white);
  border: none;
  color: var(--dark-sage);
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-sage);
  color: var(--white);
}

.accordion-body {
overflow-x: hidden;
  background: var(--light-beige);
  color: var(--text-light);
}

/* Gallery Section */
.gallery-section {
  background: var(--white);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-blue), var(--dark-lavender));
  color: var(--white);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-brand {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--light-beige);
  margin-bottom: 2rem;
}

.footer-contact {
  margin-bottom: 2rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: var(--light-beige);
}

.footer-policies {
  margin-bottom: 2rem;
}

.footer-policies a {
  color: var(--light-beige);
  text-decoration: none;
  margin: 0 1rem;
}

.footer-policies a:hover {
  color: var(--white);
}

#site-copyright {
  color: var(--light-beige);
  font-size: 0.9rem;
  border-top: 1px solid var(--primary-sage);
  padding-top: 1rem;
}

/* Swiper Slider Customization */
.swiper {
  padding-bottom: 3rem;
}

.swiper-pagination-bullet {
  background: var(--primary-sage);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage);
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-beige);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Utilities */
.text-sage { color: var(--primary-sage); }
.text-lavender { color: var(--primary-lavender); }
.bg-sage { background-color: var(--primary-sage); }
.bg-lavender { background-color: var(--primary-lavender); }

/* Responsive adjustments will be in responsive.css */ 