:root {
  /* Primary Colors */
  --primary-color: #7b5da5;     /* Royal Purple - Professional */
  --secondary-color: #50a07a;   /* Emerald Green - Trust */
  --accent-color: #df9a57;      /* Amber - Warmth */
  --neutral-color: #30404d;     /* Slate - Stability */
  --highlight-color: #e5707e;   /* Coral - Energy */
  
  /* Shades & Tints */
  --primary-light: #a890c5;
  --primary-dark: #594680;
  --secondary-light: #8ccfb0;
  --secondary-dark: #3a7d5d;
  --accent-light: #f2c495;
  --accent-dark: #b37940;
  --neutral-light: #5d6e7a;
  --neutral-dark: #1a2530;
  --highlight-light: #f2a3ad;
  --highlight-dark: #c0475a;

  /* Common Colors */
  --text-dark: #222832;
  --text-light: #f5f6fa;
  --bg-light: #ffffff;
  --bg-dark: #0e1620;
  --bg-off-white: #f8f9fb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
  position: relative;
  margin-bottom: 2rem;
}

h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.8rem;
  width: 4rem;
  height: 0.25rem;
  background-color: var(--accent-color);
}

h2.text-center:after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

section {
  padding: 5rem 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--text-light);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--text-dark);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  color: var(--text-light);
}

.text-center {
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  background-color: var(--bg-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-off-white);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

/* Services Section */
.service-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

/* About Section */
.about-section {
  position: relative;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.about-feature-icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-right: 1rem;
  flex-shrink: 0;
}

/* Features Section */
.features-section {
  background-color: var(--bg-off-white);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--highlight-color);
  margin-bottom: 1.5rem;
}

/* Team Section */
.team-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.team-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-off-white);
}

.testimonial-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
  position: relative;
}

.testimonial-card:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary-light);
  opacity: 0.5;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 1.5rem;
}

/* Price Plan Section */
.price-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.popular:before {
  content: 'Popular';
  position: absolute;
  top: 2rem;
  right: -3rem;
  background-color: var(--highlight-color);
  color: var(--text-light);
  padding: 0.5rem 4rem;
  transform: rotate(45deg);
  font-weight: 600;
}

.price-tag {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 1.5rem;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-form {
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-top: 1rem;
}

.form-check-input {
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.blog-link:after {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5rem;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.blog-link:hover:after {
  transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-off-white);
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--bg-light);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  background-color: var(--bg-light);
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
  outline: none;
}

.accordion-header:after {
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 1.25rem;
  transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"]:after {
  transform: rotate(180deg);
}

.accordion-body {
overflow-x: hidden;
  padding: 0 1.25rem 1.25rem 1.25rem;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--bg-off-white);
}

.coreinfo-item {
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background-color: var(--neutral-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.footer-heading {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Utility Classes */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

.section-heading {
  margin-bottom: 4rem;
}

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-off-white { background-color: var(--bg-off-white); }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-light { color: var(--text-light); }
.text-dark { color: var(--text-dark); }

.border-radius { border-radius: 8px; }
.box-shadow { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); }

/* Shape Elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-top-right {
  top: -50px;
  right: -50px;
}

.shape-bottom-left {
  bottom: -50px;
  left: -50px;
}

.blob {
  position: absolute;
  z-index: 0;
  opacity: 0.5;
}

.blob-1 {
  top: 0;
  left: 0;
  transform: translate(-30%, -30%);
}

.blob-2 {
  bottom: 0;
  right: 0;
  transform: translate(30%, 30%);
} 