:root {
  /* Color Palette - Pastel tones with premium feel */
  --primary-color-1: #d8e2dc; /* Soft mint green */
  --primary-color-2: #ffe5d9; /* Soft peach */
  --primary-color-3: #ffcad4; /* Soft pink */
  --primary-color-4: #f4acb7; /* Dusty rose */
  --primary-color-5: #9d8189; /* Mauve brown */
  
  /* Light/dark shades */
  --light-shade-1: #f8f9fa;
  --light-shade-2: #e9ecef;
  --dark-shade-1: #343a40;
  --dark-shade-2: #212529;
  
  /* Font families */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Raleway', sans-serif;
  
  /* Base sizes */
  --base-font-size: 16px;
  --base-line-height: 1.6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  color: var(--dark-shade-1);
  background-color: var(--light-shade-1);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-shade-2);
}

p {
  margin-bottom: 1rem;
}

/* Header Styles */
header {
  background-color: var(--light-shade-1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark-shade-2);
}

/* Main Content Styles */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-color: var(--primary-color-0);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  background-color: var(--primary-color-0);
  color: #fff;
}

.content-wrapper {
  max-width: 550px;
  margin: 0 auto;
}

.hero-image-col {
  position: relative;
  height: 100%;
  background-image: url('../CUL_images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-height: 80%;
  max-width: 90%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: var(--primary-color-3);
  border-color: var(--primary-color-3);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-4);
  border-color: var(--primary-color-4);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.section-subtitle {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--dark-shade-1);
}

.section-description {
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--light-shade-2);
}

.service-card {
  background-color: var(--light-shade-1);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 2rem;
  transition: none !important;
  height: 100%;
}

.service-card:hover {
  transform: none !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

/* Features Section */
.features-section {
  background-color: var(--primary-color-2);
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

/* Price Plan Section */
.price-plan-section {
  background-color: var(--light-shade-1);
}

.price-card {
  background-color: var(--light-shade-2);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 2rem;
  transition: none !important;
  height: 100%;
  border-top: 5px solid var(--primary-color-3);
}

.price-card:hover {
  transform: none !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-5);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background-color: var(--primary-color-3);
}

.team-card {
  background-color: var(--light-shade-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: none !important;
}

.team-card:hover {
  transform: none !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-color-4);
  position: relative;
}

.review-card {
  background-color: var(--light-shade-1);
  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: 1rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-5);
}

/* Core Info Section */
.core-info-section {
  background-color: var(--light-shade-2);
}

.core-info-item {
  background-color: var(--light-shade-1);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 2rem;
  height: 100%;
  transition: none !important;
}

.core-info-item:hover {
  transform: none !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-color-1);
}

.contact-form {
  background-color: var(--light-shade-1);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 2rem;
}

.contact-info {
  background-color: var(--primary-color-5);
  color: var(--light-shade-1);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
}

.form-control {
  margin-bottom: 1rem;
  border: 1px solid var(--primary-color-1);
  border-radius: 5px;
  padding: 0.75rem;
}

.btn-submit {
  background-color: var(--primary-color-5);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--dark-shade-1);
}

/* Footer Styles */
footer {
  background-color: var(--dark-shade-2);
  color: var(--light-shade-1);
  padding: 3rem 0 2rem;
}

.footer-link {
  color: var(--light-shade-1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color-2);
}

/* Swiper Slider Styles */
.swiper {
  width: 100%;
  height: 600px;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
}

/* Animation Helper Classes - Disabled */
.fade-in {
  opacity: 1 !important; /* Always visible */
  transition: none !important; /* No animation */
}

.fade-in.active {
  opacity: 1;
}

/* Disable hover animations on cards */
.service-card,
.price-card,
.team-card,
.core-info-item {
  transition: none !important;
}

.service-card:hover,
.price-card:hover,
.team-card:hover,
.core-info-item:hover {
  transform: none !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

/* Disable AOS animations globally */
[data-aos] {
  transition-property: none !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* Shape Elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

/* Decorative elements */
.circle-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-3);
  top: -150px;
  right: -100px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-color-4);
  bottom: -100px;
  left: -50px;
} 