:root {
  --primary-color-1: #4ECDC4; /* Turquoise - main brand color */
  --primary-color-2: #FF6B6B; /* Coral - accent color */
  --primary-color-3: #F7FFF7; /* Off-white - background */
  --primary-color-4: #2E3D49; /* Dark blue - text color */
  --primary-color-5: #9A67BD; /* Purple - highlight */

  --light-shade-1: #eaf9f8;
  --light-shade-2: #ffe2e2;
  --light-shade-3: #ffffff;
  --light-shade-4: #f0f4f8;
  --light-shade-5: #efe4f5;

  --dark-shade-1: #38a9a1;
  --dark-shade-2: #e34f4f;
  --dark-shade-3: #e0f0e0;
  --dark-shade-4: #1c2831;
  --dark-shade-5: #7d4fa2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-color-4);
  background-color: var(--primary-color-3);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color-4);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-1);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark-shade-1);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-color-1);
  color: white;
  border: 2px solid var(--primary-color-1);
}

.btn-primary:hover {
  background-color: var(--dark-shade-1);
  border-color: var(--dark-shade-1);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-color-2);
  color: white;
  border: 2px solid var(--primary-color-2);
}

.btn-secondary:hover {
  background-color: var(--dark-shade-2);
  border-color: var(--dark-shade-2);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color-1);
  border: 2px solid var(--primary-color-1);
}

.btn-outline:hover {
  background-color: var(--primary-color-1);
  color: white;
}

/* Section Styling */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--primary-color-2);
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(247, 255, 247, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(247, 255, 247, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-color-4);
}

.logo span {
  color: var(--primary-color-1);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  color: var(--primary-color-4);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color-1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-color-4);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-3);
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color-2);
}

.hero-desc {
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-image-container {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hero-shape {
  position: absolute;
  z-index: 1;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background-color: var(--light-shade-1);
  border-radius: 50%;
  opacity: 0.5;
}

.shape-2 {
  bottom: 15%;
  right: 8%;
  width: 200px;
  height: 200px;
  background-color: var(--light-shade-2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.5;
}

/* About Section */
.about {
  background-color: var(--light-shade-3);
  position: relative;
  overflow: hidden;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

.about-feature {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  color: var(--primary-color-1);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* Services Section */
.services {
  background-color: var(--primary-color-3);
  position: relative;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-price {
  display: inline-block;
  background-color: var(--primary-color-1);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-features {
  margin-top: 1rem;
}

.service-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color-1);
  position: absolute;
  left: 0;
}

/* Features Section */
.features {
  background-color: var(--light-shade-4);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.price-plan {
  background-color: var(--primary-color-3);
}

.price-card {
  text-align: center;
  background-color: white;
  border-radius: 10px;
  padding: 3rem 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border: 2px solid var(--primary-color-1);
}

.price-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color-1);
  color: white;
  padding: 0.5rem 2rem;
  transform: rotate(45deg) translateX(2.5rem) translateY(-1.5rem);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary-color-1);
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-features li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color-1);
  position: absolute;
  left: 0;
}

/* Team Section */
.team {
  background-color: var(--light-shade-3);
}

.team-member {
  text-align: center;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color-2);
  font-weight: 600;
}

/* Reviews Section */
.reviews {
  background-color: var(--light-shade-1);
  position: relative;
  overflow: hidden;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.review-text::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color-1);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.5rem;
}

.review-author {
  font-weight: 700;
  display: flex;
  align-items: center;
}

.review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

/* Core Info Section */
.core-info {
  background-color: var(--primary-color-3);
}

.core-info-item {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
  background-color: var(--light-shade-4);
}

.contact-form {
  background-color: white;
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: inherit;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color-1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
}

.contact-info {
  background-color: var(--primary-color-1);
  color: white;
  border-radius: 10px;
  padding: 3rem;
  height: 100%;
}

.contact-info h3 {
  color: white;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.contact-info-content h4 {
  color: white;
  margin-bottom: 0.3rem;
}

.contact-info-content p {
  margin-bottom: 0;
  opacity: 0.9;
}

/* Blog Section */
.blog {
  background-color: var(--primary-color-3);
}

.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--primary-color-2);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-color-1);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.blog-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* FAQ Section */
.faq {
  background-color: var(--light-shade-3);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  background-color: white;
  color: var(--primary-color-4);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234ECDC4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
overflow-x: hidden;
  padding: 1.5rem;
  background-color: white;
}

/* Gallery Section */
.gallery {
  background-color: var(--primary-color-3);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(78, 205, 196, 0.1), rgba(78, 205, 196, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: white;
  font-size: 2rem;
}

/* Footer */
footer {
  background-color: var(--primary-color-4);
  color: white;
  padding: 5rem 0 1rem;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-logo span {
  color: var(--primary-color-1);
}

.footer-desc {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.8rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-link a:hover {
  color: var(--primary-color-1);
}

.footer-contact li {
  display: flex;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  margin-right: 1rem;
  color: var(--primary-color-1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#site-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated {
  animation: fadeIn 1s ease forwards;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 100%;
  padding: 2rem 1rem;
}

.swiper-slide {
  height: auto;
}

.swiper-pagination-bullet {
  background-color: var(--primary-color-1);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color-1);
}

/* Media Queries for Responsive Design */
@media screen and (min-width: 768px) {
  section {
    padding: 7rem 0;
  }
} 