:root {
  /* Primary Harmonious Pastel Palette */
  --primary-coral: #ff9999;
  --primary-lavender: #c8a2c8;
  --primary-peach: #ffd4b3;
  --primary-mint: #b3d9d9;
  --primary-rose: #f2b3d1;
  
  /* Light Shades */
  --light-coral: #ffcccc;
  --light-lavender: #e6d6e6;
  --light-peach: #ffe6d9;
  --light-mint: #d9ecec;
  --light-rose: #f9d9e8;
  
  /* Dark Shades */
  --dark-coral: #cc6666;
  --dark-lavender: #9f7a9f;
  --dark-peach: #cc9980;
  --dark-mint: #80b3b3;
  --dark-rose: #c280a6;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-coral), var(--primary-rose));
  --gradient-secondary: linear-gradient(135deg, var(--primary-lavender), var(--primary-mint));
  --gradient-hero: linear-gradient(135deg, var(--light-coral), var(--light-peach), var(--light-mint));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  font-size: 16px;
  overflow-x: hidden;
}

/* Bootstrap Customizations */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 153, 153, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 153, 0.4);
}

/* Header Styles */
header {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-coral);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../INN_images/hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark-coral);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--dark-lavender);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Decorative Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: var(--primary-coral);
  opacity: 0.3;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-lavender);
  opacity: 0.2;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: var(--primary-mint);
  opacity: 0.4;
  top: 60%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styling */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-coral);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--primary-lavender);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-desc {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--light-gray);
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.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-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Features Section */
.features-section {
  background: var(--gradient-secondary);
  color: var(--white);
}

.features-section .section-title,
.features-section .section-subtitle {
  color: var(--white);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--light-peach);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--light-gray);
}

.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;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1.5rem 0;
}

/* Team Section */
.team-section {
  background: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--primary-coral);
  transition: all 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
  border-color: var(--primary-lavender);
}

.team-member h4 {
  color: var(--dark-coral);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-lavender);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: var(--gradient-hero);
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 1rem;
  text-align: center;
}

.review-text {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-coral);
}

/* Core Info Section */
.coreinfo-section {
  background: var(--white);
}

.coreinfo-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.coreinfo-card:hover {
  background: var(--light-coral);
  color: var(--white);
}

.coreinfo-card i {
  font-size: 2.5rem;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-section {
  background: var(--gradient-secondary);
  color: var(--white);
}

.contact-section .section-title,
.contact-section .section-subtitle {
  color: var(--white);
}

.form-control {
  border: none;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 153, 153, 0.3);
  border-color: var(--primary-coral);
}

/* FAQ Section */
.faq-section {
  background: var(--light-gray);
}

.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(--white);
  color: var(--dark-coral);
  font-weight: 600;
  padding: 1.5rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-coral);
  color: var(--white);
}

.accordion-body {
  background: var(--light-coral);
  color: var(--dark-gray);
  padding: 1.5rem;
}

/* Gallery Section */
.gallery-section {
  background: var(--white);
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.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.03);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog Section */
.blog-section {
  background: var(--light-gray);
}

.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-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card h4 {
  color: var(--dark-coral);
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-coral);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--dark-coral);
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--light-gray);
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--primary-coral);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 1rem;
  text-align: center;
  color: var(--gray);
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--light-gray);
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

/* Swiper Customizations */
.swiper {
  padding-bottom: 3rem;
}

.swiper-pagination-bullet {
  background: var(--primary-coral);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-coral);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-coral);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .shape {
    display: none;
  }
}

/* Animation utilities */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Utility classes */
.text-primary-coral { color: var(--primary-coral); }
.text-primary-lavender { color: var(--primary-lavender); }
.bg-primary-coral { background-color: var(--primary-coral); }
.bg-primary-lavender { background-color: var(--primary-lavender); }
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-secondary { background: var(--gradient-secondary); } 