:root {
  /* Color Palette */
  --color-primary: #63a69f;     /* Mint green - main brand color */
  --color-secondary: #f0b67f;   /* Soft orange - accent color */
  --color-accent: #d56073;      /* Coral pink - highlights */
  --color-neutral: #e9e6e1;     /* Soft beige - background */
  --color-dark: #2c3e50;        /* Dark slate - text color */
  
  /* Light/Dark Shades */
  --color-primary-light: #89c0bb;
  --color-primary-dark: #4a8680;
  --color-secondary-light: #f5cca3;
  --color-secondary-dark: #d99954;
  --color-accent-light: #e38598;
  --color-accent-dark: #bc4356;
  --color-neutral-light: #f4f2f0;
  --color-neutral-dark: #c9c5bd;
  --color-dark-light: #546a7b;
  --color-dark-dark: #1a2530;
  
  /* Font sizes */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.375rem;
  --font-size-2xl: 1.75rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 3rem;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--color-dark);
  background-color: var(--color-neutral-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* Button Styles */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-dark);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
}

.btn-accent {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

/* Section Styles */
section {
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: white;
}

.navbar-brand {
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--color-primary);
}

.nav-link {
  color: var(--color-dark);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--color-neutral);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-lg);
}

/* About Section */
.about-feature {
  text-align: center;
  padding: var(--space-md);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* Services Section */
.service-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: var(--space-lg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: var(--space-md);
}

.service-price {
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--font-size-lg);
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-top: var(--space-sm);
}

.service-features li {
  padding: 0.25rem 0;
}

.service-features li:before {
  content: "✓";
  color: var(--color-primary);
  padding-right: 0.5rem;
}

/* Features Section */
.feature-item {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: var(--space-lg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.price-header {
  padding: var(--space-md);
  background: var(--color-primary);
  color: white;
}

.price-content {
  padding: var(--space-md);
}

.price-amount {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin: var(--space-md) 0;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-md);
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-neutral);
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.team-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--color-primary);
  font-style: italic;
}

/* Reviews Section */
.reviews-container {
  position: relative;
  padding-bottom: var(--space-lg);
}

.review-item {
  background: white;
  border-radius: 0.5rem;
  padding: var(--space-md);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin: var(--space-sm);
}

.review-text {
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
}

.review-text:before,
.review-text:after {
  content: '"';
  font-size: 1.5rem;
  color: var(--color-primary);
  position: absolute;
}

.review-text:before {
  left: -10px;
  top: -5px;
}

.review-text:after {
  right: -10px;
  bottom: -15px;
}

.review-author {
  font-weight: 600;
  color: var(--color-dark);
}

/* Core Info Section */
.core-info-item {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

/* Contact Section */
.contact-form {
  background: white;
  padding: var(--space-lg);
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-control {
  margin-bottom: var(--space-md);
}

.form-check {
  margin-bottom: var(--space-md);
}

/* Gallery Section */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* FAQ Section */
.accordion-item {
  margin-bottom: var(--space-sm);
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  padding: var(--space-md);
  background-color: white;
}

.accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background-color: rgba(99, 166, 159, 0.1);
}

.accordion-button:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 0.25rem rgba(99, 166, 159, 0.25);
}

.accordion-body {
  padding: var(--space-md);
  background-color: white;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.blog-item {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--space-md);
}

.blog-title {
  margin-bottom: var(--space-sm);
}

.blog-excerpt {
  margin-bottom: var(--space-md);
}

/* Footer */
footer {
  background-color: var(--color-dark);
  color: white;
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-heading {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--color-neutral);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

#site-copyright {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--space-lg);
  font-size: var(--font-size-sm);
  color: var(--color-neutral);
}

/* Decorative Shapes */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(99, 166, 159, 0.1);
}

.shape-blob {
  width: 400px;
  height: 400px;
  background-color: rgba(240, 182, 127, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Breadcrumb - hidden as per requirements */
.breadcrumb {
  display: none;
}

/* Helper Classes */
.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

.bg-accent {
  background-color: var(--color-accent) !important;
}

.bg-neutral {
  background-color: var(--color-neutral) !important;
}

.bg-dark {
  background-color: var(--color-dark) !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.text-accent {
  color: var(--color-accent) !important;
}

.text-dark {
  color: var(--color-dark) !important;
}

.text-light {
  color: var(--color-neutral-light) !important;
}

.rounded {
  border-radius: 0.5rem !important;
}

.shadow-sm {
  box-shadow: 0 2px 5px rgba(0,0,0,0.08) !important;
}

.shadow {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
}

.shadow-lg {
  box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
} 