:root {
  /* Primary Color Palette - Harmonious Pastels */
  --primary-coral: #FF7F7F;
  --primary-sage: #87C5A4;
  --primary-lavender: #B19CD9;
  --primary-amber: #FFD93D;
  --primary-mint: #6BCAE2;
  
  /* Light Shades */
  --coral-light: #FFB3B3;
  --sage-light: #B3DCC3;
  --lavender-light: #D9C9E9;
  --amber-light: #FFE675;
  --mint-light: #9DDBF0;
  
  /* Dark Shades */
  --coral-dark: #E55555;
  --sage-dark: #5F9376;
  --lavender-dark: #8B6BB0;
  --amber-dark: #D4B621;
  --mint-dark: #4A9BB8;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-light: #F8F9FA;
  --gray-medium: #6C757D;
  --gray-dark: #343A40;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--gray-dark);
  overflow-x: hidden;
}

/* Header Styles */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-weight: bold;
  color: var(--primary-coral) !important;
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  color: var(--gray-dark) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-coral) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-mint), var(--primary-lavender));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-coral);
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  background: var(--gray-light);
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  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;
}

.about-feature h4 {
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--primary-coral);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.service-card h4 {
  color: var(--gray-dark);
  margin-bottom: 1rem;
  font-weight: bold;
}

.service-card p {
  color: var(--gray-medium);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.service-features {
  color: var(--primary-sage);
  font-weight: 500;
}

/* Features Section */
.features {
  background: var(--gray-light);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-lavender);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  background: var(--white);
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  border: 3px solid var(--gray-light);
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-amber);
}

.price-card.featured {
  border-color: var(--primary-coral);
  transform: scale(1.05);
}

.price-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

/* Team Section */
.team {
  background: var(--gray-light);
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary-mint);
}

.team-member h5 {
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.team-member p {
  color: var(--primary-sage);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background: var(--white);
}

.review-item {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 2rem;
  margin: 1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-text {
  font-style: italic;
  color: var(--gray-medium);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.review-author {
  color: var(--primary-coral);
  font-weight: bold;
}

/* Core Info Section */
.coreinfo {
  background: var(--gray-light);
}

.coreinfo-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--primary-amber);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact {
  background: var(--white);
}

.contact-form {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 0.2rem rgba(255, 127, 127, 0.25);
}

.btn-primary {
  background: var(--primary-coral);
  border: none;
  border-radius: 25px;
  padding: 15px 40px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

/* Blog Section */
.blog {
  background: var(--gray-light);
}

.blog-item {
  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-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-item h5 {
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.blog-item p {
  color: var(--gray-medium);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-coral);
  text-decoration: none;
  font-weight: bold;
}

/* FAQ Section */
.faq {
  background: var(--white);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-button {
  background: var(--gray-light);
  color: var(--gray-dark);
  font-weight: bold;
  border: none;
  border-radius: 15px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-coral);
  color: var(--white);
}

.accordion-body {
overflow-x: hidden;
  background: var(--white);
  color: var(--gray-medium);
}

/* Gallery Section */
.gallery {
  background: var(--gray-light);
  padding: 80px 0;
}

.gallery-item {
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: var(--gray-dark);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--gray-light);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--primary-coral);
}

#site-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-medium);
  color: var(--gray-medium);
}

/* Decorative Shapes */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  right: -5%;
  width: 200px;
  height: 200px;
  background: var(--primary-sage);
  opacity: 0.1;
  border-radius: 50%;
}

.shape-2 {
  bottom: 20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: var(--primary-lavender);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Swiper Overrides */
.swiper-pagination-bullet {
  background: var(--primary-coral);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-coral);
}

/* Utilities */
.text-primary { color: var(--primary-coral) !important; }
.bg-primary { background-color: var(--primary-coral) !important; }
.border-primary { border-color: var(--primary-coral) !important; }

/* Contact Info Styling */
#contact-info-phone,
#contact-info-email,
#contact-info-address {
  color: var(--gray-light);
  margin-bottom: 0.5rem;
}

#contact-info-phone:before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--primary-coral);
}

#contact-info-email:before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--primary-coral);
}

#contact-info-address:before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--primary-coral);
} 