:root {
  /* Color Palette */
  --color-primary: #94a3b8;
  --color-primary-light: #cbd5e1;
  --color-primary-dark: #64748b;
  --color-secondary: #e2e8f0;
  --color-secondary-light: #f8fafc;
  --color-secondary-dark: #cbd5e1;
  --color-accent: #9ca3af;
  --color-accent-light: #e5e7eb;
  --color-accent-dark: #6b7280;
  --color-neutral: #f1f5f9;
  --color-neutral-dark: #334155;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
  overflow-x: hidden;
  background-color: var(--color-neutral);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 15px;
  position: relative;
}

.section-title p {
  font-size: 18px;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

header.scrolled {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-primary-dark);
}

.nav-link {
  font-weight: 500;
  color: var(--color-neutral-dark);
  position: relative;
  padding: 10px 15px !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-secondary-light);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-image-container {
  position: relative;
  height: 100%;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.hero-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-color: var(--color-primary-light);
  opacity: 0.3;
  z-index: 1;
}

.shape-1 {
  top: -150px;
  right: -150px;
}

.shape-2 {
  bottom: -150px;
  left: -150px;
  background-color: var(--color-accent-light);
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-feature {
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

/* Services Section */
.services-section {
  background-color: var(--color-secondary-light);
  position: relative;
}

.service-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-item:hover::before {
  height: 100%;
}

.service-img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-price {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-radius: 30px;
  font-weight: 600;
  margin-top: 15px;
}

.service-features {
  margin-top: 15px;
  padding-left: 0;
  list-style-type: none;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.feature-item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  background-color: var(--color-primary-light);
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

.feature-item:hover::after {
  height: 100%;
}

.feature-item i {
  font-size: 50px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--color-secondary-light);
  position: relative;
}

.price-card {
  background-color: white;
  border-radius: 10px;
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: var(--color-primary);
  top: 0;
  left: 0;
}

.price-amount {
  font-size: 60px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 20px 0;
}

.price-amount span {
  font-size: 18px;
  font-weight: 400;
}

.price-features {
  margin: 30px 0;
  padding-left: 0;
  list-style-type: none;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-primary-light);
  position: relative;
  padding-left: 25px;
}

.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* Team Section */
.team-section {
  position: relative;
}

.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: all 0.3s ease;
}

.team-info {
  background-color: white;
  padding: 20px;
  text-align: center;
}

.team-info h4 {
  margin-bottom: 5px;
}

.team-info p {
  color: var(--color-primary);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--color-secondary-light);
  position: relative;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 30px 15px;
  position: relative;
}

.review-item::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 40px;
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--color-primary-light);
  opacity: 0.5;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h5 {
  margin-bottom: 5px;
}

.review-author-info p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-primary);
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

/* Contact Section */
.contact-section {
  background-color: var(--color-secondary-light);
  position: relative;
}

.contact-form {
  background-color: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--color-primary-light);
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--color-primary);
}

/* Blog Section */
.blog-section {
  position: relative;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: white;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-content h4 {
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--color-secondary-light);
  position: relative;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  background-color: white;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--color-primary-dark);
  background-color: white;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2394a3b8'%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 {
  padding: 20px;
}

/* Gallery Section */
.gallery-section {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--color-primary-dark);
  color: white;
  padding: 80px 0 20px;
  position: relative;
}

footer h4 {
  color: white;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color-primary-light);
}

footer p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

footer ul {
  padding-left: 0;
  list-style-type: none;
}

footer ul li {
  margin-bottom: 15px;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: white;
  padding-left: 5px;
}

footer #site-copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
} 