/* Root Variables */
:root {
  /* Primary Colors - Pastel Palette */
  --primary-1: #c49dff; /* Soft lavender */
  --primary-2: #c2869e; /* Soft #ffe2dd */
  --primary-3: #c7ffe4; /* Mint #23a300 */
  --primary-4: #bf9803; /* Warm #bdfe36 */
  --primary-5: #c4ffe9; /* Light seafoam */
  
  /* Shades and tints */
  --primary-1-dark: #b752ff;
  --primary-1-light: #d5a2ff;
  --primary-2-dark: #b57193;
  --primary-2-light: #ffffff;
  --primary-3-dark: #32f1a3;
  --primary-3-light: #8bffc3;
  --primary-4-dark: #fffe1d;
  --primary-4-light: #f6ff69;
  --primary-5-dark: #92c5b9;
  --primary-5-light: #c5d0c9;
  
  /* Neutrals */
  --dark: #415a7a;
  --light: #f8fafc;
  --gray: #889fb3;
  --gray-light: #a8e1ff;
  
  /* Fonts */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--primary-1-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1);
}

img {
  max-width: 100%;
  height: auto;
}

/* Containers & Sections */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

section {
  padding: var(--spacing-lg) 0;
  position: relative;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-subtitle {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--primary-2-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-xs);
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark);
  position: relative;
  margin-bottom: var(--spacing-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-1);
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px 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(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-1);
  color: var(--primary-1);
}

.btn-outline:hover {
  background-color: var(--primary-1);
  color: white;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: white;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}

.nav-menu {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
}

.nav-link {
  color: var(--dark);
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-1);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero-content {
  padding: 2rem 0;
  color: #fff;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--primary-2-light);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Media Queries for Hero Section */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image-container {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 6rem 0 3rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-3-light);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.about-feature {
  padding: var(--spacing-md);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-1);
}

.about-feature-name {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xs);
  color: var(--dark);
}

.about-feature-desc {
  color: var(--#545454);
}

/* Services Section */
.services {
  background-color: var(--primary-5-light);
  position: relative;
  overflow: hidden;
}

.service-shape-1 {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-3-light);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.5;
}

.service-shape-2 {
  position: absolute;
  top: 50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: var(--primary-2-light);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.service-item {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-item-content {
  padding: var(--spacing-md);
}

.service-item-name {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
  color: var(--dark);
}

.service-item-desc {
  color: var(--#3c3c3c);
  margin-bottom: var(--spacing-sm);
}

.service-item-features {
  margin-bottom: var(--spacing-sm);
}

.service-item-feature {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.service-item-feature i {
  color: var(--primary-4);
  margin-right: 10px;
}

.service-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-1-dark);
}

/* Features Section */
.features {
  position: relative;
}

.features-container {
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.feature-item {
  padding: var(--spacing-md);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-3);
}

.feature-item-name {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xs);
  color: var(--dark);
}

.feature-item-desc {
  color: var(--#ba948b);
}

/* Price Plan Section */
.price-plan {
  background-color: var(--primary-1-light);
  position: relative;
  overflow: hidden;
}

.price-plan-shape {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background-color: var(--primary-1);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.1;
}

.price-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.price-plan-item {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.price-plan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-plan-header {
  padding: var(--spacing-md);
  background-color: var(--primary-1);
  color: white;
  text-align: center;
}

.price-plan-name {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.price-plan-price {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-plan-content {
  padding: var(--spacing-md);
  flex-grow: 1;
}

.price-plan-desc {
  color: var(--#a08f92);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.price-plan-features {
  margin-bottom: var(--spacing-md);
}

.price-plan-feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.price-plan-feature i {
  color: var(--primary-4);
  margin-right: 10px;
}

.price-plan-footer {
  padding: 0 var(--spacing-md) var(--spacing-md);
  text-align: center;
}

/* Core Info Section */
.core-info {
  position: relative;
  background-color: var(--primary-5-light);
  padding: var(--spacing-lg) 0;
  overflow: hidden;
}

.core-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background-color: var(--primary-4-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.core-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.core-info-item {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-2-dark);
  margin-bottom: var(--spacing-sm);
}

.core-info-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
  color: var(--dark);
}

.core-info-desc {
  color: var(--gray);
}

/* Blog Section */
.blog {
  position: relative;
  padding: var(--spacing-lg) 0;
  overflow: hidden;
}

.blog-shape {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background-color: var(--primary-1-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.blog-item {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  height: 200px;
  overflow: hidden;
}

.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: var(--spacing-md);
}

.blog-item-date {
  font-size: 0.9rem;
  color: var(--primary-2-dark);
  margin-bottom: var(--spacing-xs);
}

.blog-item-title {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xs);
  color: var(--dark);
}

.blog-item-excerpt {
  color: var(--gray);
  margin-bottom: var(--spacing-sm);
}

.blog-item-link {
  display: inline-block;
  color: var(--primary-1-dark);
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-item-link:hover {
  color: var(--primary-1);
  transform: translateX(5px);
}

/* Contact Form */
.contact-form select {
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  font-family: var(--font-primary);
  color: var(--dark);
  background-color: #f8f9fa;
  border: 1px solid #e1e5e9;
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--primary-1);
  box-shadow: 0 0 0 3px rgba(196, 157, 255, 0.25);
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  font-family: var(--font-primary);
  color: var(--dark);
  background-color: #f8f9fa;
  border: 1px solid #e1e5e9;
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-1);
  box-shadow: 0 0 0 3px rgba(196, 157, 255, 0.25);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer Styles */
.footer {
  background-color: var(--dark);
  color: white;
  padding-top: var(--spacing-lg);
}

.footer-top {
  padding-bottom: var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.footer-logo {
  margin-bottom: var(--spacing-sm);
}

.footer-logo h3 {
  color: white;
  font-size: 1.8rem;
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
  color: white;
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-newsletter h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--primary-1);
}

.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links a,
.footer-services a {
  color: #ccc;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-sm) 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-1);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-1-dark);
  transform: translateY(-5px);
}

/* Media Queries */
@media (max-width: 992px) {
  .core-info-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .core-info-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 