:root {
  --primary-1: #e6f2f5; /* Light Steel Blue */
  --primary-2: #c8d8e4; /* Pastel Blue */
  --primary-3: #a8c0d3; /* Steel Blue */
  --primary-4: #daa89b; /* Dusty Rose */
  --primary-5: #f2d0a7; /* Sand */
  --dark: #1e2a3a;
  --light: #f5f7fa;
  --text: #333640;
  --text-light: #677489;
  --shadow: rgba(30, 42, 58, 0.1);
  --shadow-dark: rgba(30, 42, 58, 0.25);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-3);
  color: var(--light);
}

.btn-primary:hover {
  background-color: var(--primary-4);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-3);
  color: var(--primary-3);
}

.btn-outline:hover {
  background-color: var(--primary-3);
  color: var(--light);
}

/* Header Styles */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1rem 0;
  z-index: 1000;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px var(--shadow);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-3);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-4);
  transition: var(--transition);
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-slide {
  position: relative;
  height: 100%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-desc {
  margin-bottom: 2rem;
}

/* About Section */
.about {
  background-color: var(--light);
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-img {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 30px var(--shadow);
}

.about-text {
  flex: 1;
}

/* Services Section */
.services {
  background-color: var(--primary-1);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-item {
  background-color: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-dark);
}

.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-3);
}

.service-desc {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-feature i {
  color: var(--primary-4);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-3);
}

/* Features Section */
.features {
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-4);
}

.feature-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* Price Plan Section */
.priceplan {
  background-color: var(--primary-1);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.price-item {
  background-color: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: var(--transition);
  text-align: center;
  padding: 2rem;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-dark);
}

.price-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-3);
  margin-bottom: 1.5rem;
}

.price-features {
  margin-bottom: 2rem;
}

.price-feature {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--primary-1);
}

/* Team Section */
.team {
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-member {
  text-align: center;
}

.team-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 5px solid var(--primary-2);
}

.team-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-1);
}

.review-slider {
  width: 100%;
  padding-bottom: 3rem;
}

.review-item {
  background-color: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 10px 30px var(--shadow);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-3);
}

/* Core Info Section */
.coreinfo {
  position: relative;
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: A3rem;
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--light);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px var(--shadow);
  transition: var(--transition);
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-dark);
}

.coreinfo-icon {
  font-size: 3rem;
  color: var(--primary-4);
  margin-bottom: 1.5rem;
}

.coreinfo-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background-color: var(--primary-1);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background-color: var(--light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--primary-2);
  border-radius: var(--radius);
  background-color: #fff;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-3);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  background-color: var(--primary-3);
  padding: 2rem;
  border-radius: var(--radius);
  color: var(--light);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  font-size: 1.5rem;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-desc {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link:hover {
  color: var(--primary-4);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Decorative elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-2);
  border-radius: 53% 47% 32% 68% / 38% 67% 33% 62%;
  opacity: 0.2;
}

.shape-2 {
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background-color: var(--primary-4);
  border-radius: 53% 47% 32% 68% / 38% 67% 33% 62%;
  opacity: 0.2;
} 