:root {
  /* Primary Color Palette - Harmonious pastels */
  --primary-green: #7fd3b3;
  --primary-purple: #a8a3d9;
  --primary-coral: #ffb3ba;
  --primary-cream: #fef7d0;
  --primary-sage: #c7d3cc;
  
  /* Light shades */
  --light-green: #b8e6d1;
  --light-purple: #c7c4e3;
  --light-coral: #ffd1d4;
  --light-cream: #fffde6;
  --light-sage: #dfe6e1;
  
  /* Dark shades */
  --dark-green: #5fb396;
  --dark-purple: #8b85c4;
  --dark-coral: #ff8b94;
  --dark-cream: #fceaa3;
  --dark-sage: #a7b5ad;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-purple));
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
  background: transparent !important;
}

.navbar-brand {
  font-weight: var(--font-weight-bold);
  font-size: 1.5rem;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: var(--font-weight-medium);
  margin: 0 10px;
  /* transition: color 0.3s ease; DISABLED */
}

.navbar-nav .nav-link:hover {
  color: var(--primary-cream) !important;
}

.navbar-toggler {
  border: none;
  color: var(--white);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-purple) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../GUA_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  /* animation: float 6s ease-in-out infinite; DISABLED */
}

.hero-shape:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  /* animation-delay: -2s; DISABLED */
}

.hero-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  /* animation-delay: -4s; DISABLED */
}

/* DISABLED ANIMATION
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
*/

/* Section Styles */
section {
  padding: var(--section-padding);
}

.section-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-gray);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 1rem;
  text-align: center;
}

.section-description {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  background: linear-gradient(45deg, var(--light-cream), var(--light-sage));
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  /* transition: transform 0.3s ease; DISABLED */
}

.about-feature:hover {
  /* transform: translateY(-5px); DISABLED */
}

.about-feature h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  /* transition: all 0.3s ease; DISABLED */
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  /* transition: left 0.5s; DISABLED */
}

.service-card:hover::before {
  /* left: 100%; DISABLED */
}

.service-card:hover {
  /* transform: translateY(-10px); DISABLED */
  /* box-shadow: 0 15px 35px rgba(0,0,0,0.15); DISABLED */
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.service-card h4 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-weight: var(--font-weight-bold);
}

.service-price {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  margin: 1rem 0;
}

/* Features Section */
.features {
  background: linear-gradient(135deg, var(--light-purple), var(--light-coral));
}

.feature-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-item h4 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  background: var(--light-gray);
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
  /* transition: transform 0.3s ease; DISABLED */
}

.price-card:hover {
  /* transform: scale(1.05); DISABLED */
}

.price-card.featured {
  border: 3px solid var(--primary-green);
  /* transform: scale(1.05); DISABLED */
}

.price-card h4 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

/* Team Section */
.team {
  background: linear-gradient(45deg, var(--light-green), var(--light-cream));
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-green);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-member h4 {
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-green);
  font-weight: var(--font-weight-medium);
}

/* Reviews Section */
.reviews {
  background: var(--light-gray);
  overflow: hidden;
}

.review-slide {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  margin: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.review-author {
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
}

/* Core Info Section */
.coreinfo {
  background: linear-gradient(135deg, var(--light-sage), var(--light-purple));
}

.coreinfo-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.coreinfo-item h4 {
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact {
  background: var(--light-gray);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1rem;
  background: var(--light-gray);
  /* transition: all 0.3s ease; DISABLED */
}

.form-control:focus {
  background: var(--white);
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(127, 211, 179, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-purple));
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: var(--font-weight-medium);
  /* transition: all 0.3s ease; DISABLED */
}

.btn-primary:hover {
  /* transform: translateY(-2px); DISABLED */
  /* box-shadow: 0 5px 15px rgba(0,0,0,0.2); DISABLED */
}

/* Blog Section */
.blog {
  background: linear-gradient(45deg, var(--light-coral), var(--light-cream));
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  /* transition: transform 0.3s ease; DISABLED */
}

.blog-card:hover {
  /* transform: translateY(-5px); DISABLED */
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-weight: var(--font-weight-bold);
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-coral);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
}

.blog-link:hover {
  color: var(--dark-coral);
}

/* FAQ Section */
.faq {
  background: var(--light-gray);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
  background: var(--white);
  border: none;
  padding: 1.5rem;
  font-weight: var(--font-weight-medium);
  color: var(--dark-gray);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-green);
  color: var(--white);
}

.accordion-body {
overflow-x: hidden;
  background: var(--white);
  padding: 1.5rem;
  color: var(--gray);
}

/* Gallery Section */
.gallery {
  background: linear-gradient(135deg, var(--light-green), var(--light-purple));
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  /* transition: transform 0.3s ease; DISABLED */
}

.gallery-item:hover {
  /* transform: scale(1.05); DISABLED */
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-gray), var(--primary-green));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section a {
  color: var(--light-gray);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary-cream);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-nav {
  background: var(--light-gray);
  padding: 1rem 0;
  margin-top: 70px;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  border-radius: 5px;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background: var(--primary-green);
}

.swiper-pagination-bullet-active {
  background: var(--dark-green);
}

/* All elements are visible by default - no animations */
.fade-in {
  opacity: 1 !important;
  transform: none !important;
}

.fade-in.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card,
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
} 