:root {
  /* Primary color palette */
  --primary-1: #FF7A00; /* Vibrant Orange */
  --primary-2: #2D3142; /* Dark Blue-Gray */
  --primary-3: #EF476F; /* Raspberry */
  --primary-4: #06D6A0; /* Mint */
  --primary-5: #FFD166; /* Golden Yellow */

  /* Shades */
  --primary-1-light: #FF9A40;
  --primary-1-dark: #CC6200;
  --primary-2-light: #545B76;
  --primary-2-dark: #1A1D28;
  --primary-3-light: #F4748F;
  --primary-3-dark: #C82A50;
  --primary-4-light: #39E1B6;
  --primary-4-dark: #05AA7E;
  --primary-5-light: #FFDC8A;
  --primary-5-dark: #E6B73C;

  /* Neutral colors */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #DDDDDD;
  --dark-gray: #333333;
  --black: #111111;

  --primary-color: #0063a7;
  --secondary-color: #3498db;
  --accent-color: #f39c12;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  
  --primary-light: #0078cc;
  --primary-dark: #004e84;
  --secondary-light: #5dade2;
  --secondary-dark: #2980b9;
  --accent-light: #f5b041;
  --accent-dark: #d68910;
  --dark-light: #34495e;
  --dark-dark: #1a252f;
  --light-dark: #bdc3c7;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-2);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 20px;
}

.section-title h2:after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--primary-1);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-2);
}

.logo span {
  color: var(--primary-1);
}

.main-menu ul {
  display: flex;
  list-style: none;
}

.main-menu ul li {
  margin-left: 30px;
}

.main-menu ul li a {
  color: var(--primary-2);
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

.main-menu ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-1);
  transition: width 0.3s ease;
}

.main-menu ul li a:hover:after,
.main-menu ul li a.active:after {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-2);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background-color: var(--light-gray);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--white);
  max-width: 600px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-shape {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-5-light);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
}

.about-content {
  margin-top: 30px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature-box {
  flex: 0 0 48%;
  margin-right: 2%;
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-box h4 {
  color: var(--primary-1);
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.service-price {
  margin-top: 15px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-1);
}

.service-features {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--medium-gray);
}

.service-features ul {
  list-style: none;
}

.service-features ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.service-features ul li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-4);
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--light-gray);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: var(--primary-1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin: 0 auto 20px;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: var(--primary-1);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: var(--primary-1-dark);
  color: var(--white);
}

.feature-item:hover h3,
.feature-item:hover p {
  color: var(--white);
}

/* Price Plans Section */
.priceplan-section {
  background-color: var(--light-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-2);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 20px;
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features ul {
  list-style: none;
  text-align: left;
}

.pricing-features ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.pricing-features ul li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-4);
}

/* Team Section */
.team-section {
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  height: 300px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
  text-align: center;
  background-color: var(--white);
}

.team-info h4 {
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.team-info p {
  color: var(--primary-1);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.reviews-grid {
  position: relative;
}

.swiper-container {
  width: 100%;
  overflow: hidden;
}

.review-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-top: 30px;
}

.review-text:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5rem;
  color: var(--primary-1-light);
}

.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;
  font-size: 1.1rem;
}

.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--medium-gray);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary-1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--white);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.coreinfo-item {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-1);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-item h3 {
  color: var(--primary-1);
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-gray);
  position: relative;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.2);
  outline: none;
}

textarea.form-control {
  height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-group input {
  margin-right: 10px;
  margin-top: 5px;
}

.services-select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.service-option {
  position: relative;
  padding-left: 30px;
}

.service-option input {
  position: absolute;
  left: 0;
  top: 3px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-1);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-1-dark);
  transform: translateY(-3px);
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-item {
  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-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
  background-color: var(--white);
}

.blog-content h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.blog-excerpt {
  margin-bottom: 15px;
}

.blog-link {
  display: inline-block;
  color: var(--primary-1);
  font-weight: 600;
  position: relative;
}

.blog-link:after {
  content: '\f061';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.blog-link:hover:after {
  margin-left: 12px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-gray);
}

.accordion {
  margin-top: 50px;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  padding: 15px 20px;
  background-color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.accordion-indicator {
  width: 20px;
  height: 20px;
  position: relative;
}

.accordion-indicator:before,
.accordion-indicator:after {
  content: '';
  position: absolute;
  background-color: var(--primary-1);
  transition: all 0.3s ease;
}

.accordion-indicator:before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.accordion-indicator:after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.accordion-item.active .accordion-indicator:after {
  opacity: 0;
}

.accordion-content {
  background-color: var(--white);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 20px 20px;
  max-height: 1000px;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-2);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 40px;
}

.footer-widget h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.footer-about p {
  margin-bottom: 25px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--medium-gray);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-1);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact p i {
  margin-right: 15px;
  color: var(--primary-1);
  font-size: 1.2rem;
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Space Page */
.space-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#space {
  flex: 1;
  padding: 50px 0;
}

/* Additional Pages */
.page-header {
  padding: 100px 0 50px;
  background-color: var(--primary-2);
  color: var(--white);
  text-align: center;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.breadcrumb img {
  width: 20px;
  height: 20px;
}

.additional-section {
  padding: 80px 0;
}

.additional-section:nth-child(even) {
  background-color: var(--light-gray);
}

.section-elements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.element-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.element-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.element-img {
  height: 200px;
  overflow: hidden;
}

.element-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.element-item:hover .element-img img {
  transform: scale(1.1);
}

.element-content {
  padding: 25px;
}

.element-content h3 {
  margin-bottom: 15px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.bg-shape {
  position: absolute;
  z-index: -1;
  opacity: 0.1;
}

.shape-circle {
  border-radius: 50%;
}

.shape-1 {
  top: 50px;
  right: 50px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-1);
}

.shape-2 {
  bottom: 100px;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: var(--primary-3);
}

.shape-3 {
  top: 30%;
  left: 10%;
  width: 150px;
  height: 150px;
  background-color: var(--primary-5);
}

/* Media Queries for Responsiveness */
@media (prefers-reduced-motion: reduce) {
  *, ::after, ::before {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* This will be continued in responsive.css */ 