:root {
  /* Primary Colors */
  --color-primary-1: #6b9ac4;    /* Soft blue */
  --color-primary-2: #e6b89c;    /* Peach */
  --color-primary-3: #d4a5a5;    /* Dusty rose */
  --color-primary-4: #9cada4;    /* Sage green */
  --color-primary-5: #f2e2ba;    /* Cream */
  
  /* Shades */
  --color-dark: #2b3a42;
  --color-light: #f7f7f7;
  
  /* Font sizes */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  color: var(--color-dark);
  line-height: 1.6;
  background-color: var(--color-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--color-primary-1);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--color-primary-1);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-primary-4);
  margin-bottom: 1rem;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.site-logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin-left: 2rem;
}

.main-nav a {
  font-weight: 500;
  position: relative;
}

.main-nav a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--color-primary-1);
  transition: width 0.3s ease;
}

.main-nav a:hover:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-primary-5);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: 2rem;
  color: var(--color-primary-3);
}

.hero-description {
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 50%;
  z-index: 1;
}

.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background-color: rgba(107, 154, 196, 0.2);
  border-radius: 50%;
}

.shape-2 {
  bottom: 15%;
  right: 10%;
  width: 150px;
  height: 150px;
  background-color: rgba(230, 184, 156, 0.2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* About Section */
.about {
  background-color: var(--color-light);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-name {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-primary-1);
}

/* Services Section */
.services {
  background-color: rgba(242, 226, 186, 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  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: transform 0.5s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  font-size: var(--font-size-xl);
  margin-bottom: 1rem;
  color: var(--color-primary-1);
}

.service-desc {
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary-1);
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary-3);
}

/* Features Section */
.features {
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--color-light);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-primary-1);
  margin-bottom: 1.5rem;
}

.feature-name {
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.price-plan {
  background-color: rgba(154, 202, 164, 0.1);
}

.price-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.price-plan-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.price-plan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-plan-header {
  padding: 2rem;
  background-color: var(--color-primary-1);
  color: white;
  text-align: center;
}

.price-plan-name {
  font-size: var(--font-size-xl);
  margin-bottom: 0.5rem;
}

.price-plan-price {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-plan-content {
  padding: 2rem;
}

.price-plan-desc {
  margin-bottom: 1.5rem;
  text-align: center;
}

.price-plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-plan-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.price-plan-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary-1);
}

/* Team Section */
.team {
  background-color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: var(--color-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member-image {
  height: 300px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-info {
  padding: 1.5rem;
  text-align: center;
}

.team-member-name {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--color-primary-3);
}

/* Reviews Section */
.reviews {
  background-color: rgba(212, 165, 165, 0.1);
  position: relative;
  overflow: hidden;
}

.reviews-slider {
  width: 100%;
  padding-bottom: 3rem;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text:before, .review-text:after {
  content: '"';
  font-size: 2rem;
  color: var(--color-primary-1);
  opacity: 0.3;
}

.review-author {
  font-weight: 700;
  color: var(--color-primary-1);
}

/* Core Info Section */
.core-info {
  background-color: var(--color-light);
}

.core-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.core-info-item {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
}

.core-info-title {
  font-size: var(--font-size-lg);
  color: var(--color-primary-1);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-form-container {
  background-color: var(--color-light);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary-1);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  background-color: var(--color-primary-1);
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

.btn:hover {
  background-color: var(--color-dark);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--color-primary-1);
  margin-right: 1rem;
}

.contact-info-content h4 {
  margin-bottom: 0.5rem;
}

/* Blog Section */
.blog {
  background-color: rgba(107, 154, 196, 0.1);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--color-primary-1);
  font-weight: 500;
}

/* FAQ Section */
.faq {
  background-color: var(--color-light);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary-1);
}

.accordion-item.active .accordion-header:after {
  content: '-';
}

.accordion-body {
overflow-x: hidden;
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-body {
overflow-x: hidden;
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* Gallery Section */
.gallery {
  background-color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--color-dark);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-desc {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer-heading {
  font-size: var(--font-size-lg);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary-1);
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon {
  margin-right: 1rem;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: var(--font-size-sm);
}

/* Additional Pages Styles */
.page-header {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-primary-5);
  position: relative;
  overflow: hidden;
}

.page-title {
  font-size: 3rem;
  color: var(--color-dark);
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

.breadcrumb-item {
  margin: 0 0.5rem;
  opacity: 0.8;
}

.breadcrumb-item.active {
  opacity: 1;
}

/* Responsive Design (to be expanded in responsive.css) */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image,
  .about-text {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: var(--font-size-2xl);
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 0.8s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
} 