/* Main CSS file */
:root {
  /* Primary Colors */
  --primary-1: #4CAF50; /* Fresh green */
  --primary-2: #FF9800; /* Warm orange */
  --primary-3: #03A9F4; /* Bright blue */
  --primary-4: #9C27B0; /* Rich purple */
  --primary-5: #F44336; /* Vibrant red */
  
  /* Light and dark shades */
  --primary-1-light: #A5D6A7;
  --primary-1-dark: #2E7D32;
  --primary-2-light: #FFCC80;
  --primary-2-dark: #E65100;
  --primary-3-light: #81D4FA;
  --primary-3-dark: #0277BD;
  --primary-4-light: #CE93D8;
  --primary-4-dark: #6A1B9A;
  --primary-5-light: #EF9A9A;
  --primary-5-dark: #B71C1C;
  
  /* Neutrals */
  --neutral-100: #FFFFFF;
  --neutral-200: #F5F5F5;
  --neutral-300: #E0E0E0;
  --neutral-400: #BDBDBD;
  --neutral-500: #9E9E9E;
  --neutral-600: #757575;
  --neutral-700: #616161;
  --neutral-800: #424242;
  --neutral-900: #212121;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--neutral-800);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--primary-2);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--neutral-100);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-1);
  text-decoration: none;
}

.main-menu {
  display: flex;
  list-style: none;
}

.main-menu li {
  margin-left: 30px;
}

.main-menu a {
  color: var(--neutral-800);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-menu a:hover {
  color: var(--primary-1);
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

/* Hero section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 80px;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: white;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* About Section */
.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.feature-item {
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  background-color: var(--neutral-200);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--primary-1);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-price {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 50px;
  background-color: var(--primary-1-light);
  color: var(--primary-1-dark);
  font-weight: 600;
  margin-bottom: 15px;
}

.service-features {
  margin-top: 15px;
  list-style: none;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.service-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-1);
}

/* Features section */
.features-container {
  position: relative;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.features-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  background-color: var(--neutral-100);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.features-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-1);
  transition: all 0.5s ease;
  z-index: -1;
}

.features-item:hover::before {
  height: 10px;
}

.features-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--primary-1-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 36px;
  color: var(--primary-1);
}

.features-item:hover .features-icon {
  background-color: var(--primary-1);
  color: white;
}

/* Price plans section */
.price-plans {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.price-plan-card {
  background-color: var(--neutral-100);
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 350px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-plan-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-3);
}

.price-plan-card:nth-child(2)::after {
  background-color: var(--primary-1);
}

.price-plan-card:nth-child(3)::after {
  background-color: var(--primary-2);
}

.price-plan-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-name {
  font-size: 24px;
  margin-bottom: 15px;
}

.plan-price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-1);
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
}

.plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-300);
  position: relative;
  padding-left: 30px;
}

.plan-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-1);
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.team-member {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-1);
  font-weight: 500;
}

/* Reviews section */
.reviews-container {
  position: relative;
  padding: 50px 0;
}

.swiper-reviews {
  padding: 60px 20px;
  overflow: visible;
}

.review-card {
  background-color: var(--neutral-100);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.review-text {
  margin-bottom: 20px;
  font-style: italic;
}

.review-text:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 24px;
  color: var(--primary-1-light);
  position: absolute;
  top: 15px;
  left: 20px;
  opacity: 0.3;
}

.review-author {
  font-weight: 600;
  margin-top: 15px;
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
}

.swiper-pagination {
  bottom: -30px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary-1);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-1);
}

/* Core info section */
.core-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.core-info-item {
  background-color: var(--neutral-100);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.core-info-icon {
  font-size: 36px;
  color: var(--primary-1);
  margin-bottom: 20px;
}

/* Contact section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  padding: 30px;
  background-color: var(--primary-1);
  color: white;
  border-radius: 10px;
}

.contact-info h3 {
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-form {
  background-color: var(--neutral-100);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--neutral-300);
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-1);
  outline: none;
  box-shadow: 0 0 0 3px var(--primary-1-light);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-group input {
  margin-right: 10px;
}

/* Blog section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.blog-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-1);
  font-weight: 600;
  text-decoration: none;
}

/* FAQ section */
.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.accordion-item {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--neutral-200);
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--neutral-300);
}

.accordion-header h3 {
  margin: 0;
  font-size: 18px;
}

.accordion-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body {
  padding: 0 20px 20px;
}

.accordion-item.active .accordion-header {
  background-color: var(--primary-1-light);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

/* Gallery section */
.gallery-container {
  margin-top: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-1);
  font-size: 20px;
}

/* Footer */
footer {
  background-color: var(--neutral-900);
  color: var(--neutral-100);
  padding: 80px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-1);
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-desc {
  margin-bottom: 20px;
}

.footer-policies h4 {
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-1);
}

.footer-contact h4 {
  margin-bottom: 25px;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  margin-bottom: 15px;
}

.contact-list i {
  margin-right: 15px;
  color: var(--primary-1);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom small {
  color: var(--neutral-500);
}

/* Shapes & decorative elements */
.shape {
  position: absolute;
  z-index: -1;
}

.shape-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-1-light) 0%, rgba(255,255,255,0) 70%);
}

.shape-dots {
  width: 200px;
  height: 200px;
  background-image: radial-gradient(var(--primary-1) 2px, transparent 2px);
  background-size: 15px 15px;
}

/* Breadcrumb */
.breadcrumb {
  padding: 120px 0 30px;
  background-color: var(--neutral-200);
}

.breadcrumb-content {
  display: flex;
  align-items: center;
}

.breadcrumb-image {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.breadcrumb-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Additional page styles */
.additional-page-section {
  padding: 80px 0;
}

.additional-page-section:nth-child(even) {
  background-color: var(--neutral-200);
}

.additional-elements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.additional-element {
  background-color: var(--neutral-100);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.additional-element:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.additional-element-icon {
  font-size: 36px;
  color: var(--primary-1);
  margin-bottom: 20px;
}

/* Space page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Media Queries */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 