:root {
  /* Primary colors */
  --primary-color-1: #3a506b;
  --primary-color-2: #f46036;
  --primary-color-3: #5f9ea0;
  --primary-color-4: #eebc50;
  --primary-color-5: #6b5b95;
  
  /* Shades */
  --primary-color-1-light: #506b8a;
  --primary-color-1-dark: #2a3f55;
  --primary-color-2-light: #f78366;
  --primary-color-2-dark: #d44122;
  --primary-color-3-light: #80b4b6;
  --primary-color-3-dark: #4a797a;
  --primary-color-4-light: #f2ca7a;
  --primary-color-4-dark: #d1a136;
  --primary-color-5-light: #8a7aaf;
  --primary-color-5-dark: #554879;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #ced4da;
  --dark-gray: #495057;
  --black: #212529;
}

/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-color-1-dark);
}

a {
  color: var(--primary-color-2);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-2-dark);
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-1);
}

.section-title p {
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Header Styles */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  padding: 10px 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color-2);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--primary-color-1);
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--dark-gray);
}

.hero-image {
  position: relative;
  z-index: 1;
}

/* About Section */
.about-section {
  background-color: var(--white);
}

.about-feature {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-color-3);
  margin-bottom: 20px;
}

.about-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-1);
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
}

.service-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  font-size: 1.5rem;
  margin: 20px 0 15px;
  color: var(--primary-color-1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-2);
  margin: 15px 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.service-features li {
  padding: 5px 0;
  position: relative;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--primary-color-3);
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color-4);
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-1);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-gray);
}

.price-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.price-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border: 2px solid var(--primary-color-2);
  position: relative;
}

.price-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color-1);
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-2);
  margin: 20px 0;
}

.price-card .features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.price-card .features li {
  padding: 5px 0;
  position: relative;
}

.price-card .features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--primary-color-3);
}

/* Team Section */
.team-section {
  background-color: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-member img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--primary-color-1);
}

.team-member p {
  color: var(--primary-color-2);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-gray);
  position: relative;
}

.review-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  margin: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-text:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: -10px;
  left: -15px;
  font-size: 1.5rem;
  color: var(--medium-gray);
  opacity: 0.3;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--white);
}

.core-info-item {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.core-info-item i {
  font-size: 2.5rem;
  color: var(--primary-color-5);
  margin-bottom: 20px;
}

.core-info-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-1);
}

/* Contact Section */
.contact-section {
  background-color: var(--light-gray);
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid var(--medium-gray);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.form-check-input:checked {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
}

.btn-primary {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-2-dark);
  border-color: var(--primary-color-2-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background-color: var(--primary-color-1);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
  height: 100%;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 30px;
}

.contact-info-item {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary-color-2);
  margin-right: 15px;
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

.blog-item {
  margin-bottom: 30px;
  border-radius: 10px;
  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-content {
  padding: 25px;
  background-color: var(--white);
}

.blog-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.blog-item .read-more {
  font-weight: 600;
  color: var(--primary-color-2);
  display: inline-block;
  margin-top: 15px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-gray);
}

.accordion-item {
  border: none;
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  font-weight: 600;
  padding: 20px;
  color: var(--primary-color-1);
  background-color: var(--white);
}

.accordion-button:not(.collapsed) {
  background-color: var(--white);
  color: var(--primary-color-2);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 20px;
  background-color: var(--white);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--white);
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--primary-color-1-dark);
  color: var(--light-gray);
  padding: 60px 0 20px;
}

footer h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.5rem;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: var(--medium-gray);
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: var(--primary-color-2);
  padding-left: 5px;
}

.site-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 25px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary-color-2);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
}

.copyright p {
  color: var(--medium-gray);
  margin: 0;
}

/* Space Page */
#space {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Utility Classes */
.text-primary {
  color: var(--primary-color-1) !important;
}

.bg-primary {
  background-color: var(--primary-color-1) !important;
}

.text-secondary {
  color: var(--primary-color-2) !important;
}

.bg-secondary {
  background-color: var(--primary-color-2) !important;
} 