:root {
  /* Color Palette */
  --primary-color: #3a7ca5; /* Deep blue for main elements */
  --secondary-color: #d9a679; /* Warm sand/copper for accents */
  --tertiary-color: #48a9a6; /* Teal for highlights */
  --accent-color: #e4572e; /* Vibrant orange for CTA elements */
  --neutral-color: #f5f5f5; /* Light gray for backgrounds */
  
  /* Shade variations */
  --primary-light: #5a9bc5;
  --primary-dark: #2a5c85;
  --secondary-light: #f9c699;
  --secondary-dark: #b98659;
  --tertiary-light: #68c9c6;
  --tertiary-dark: #388986;
  --accent-light: #ff774e;
  --accent-dark: #c4371e;
  --neutral-light: #ffffff;
  --neutral-dark: #e5e5e5;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
  transition: all 0.3s ease;
}

header.sticky {
  position: fixed;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

header.sticky .logo {
  color: var(--primary-dark);
}

.navbar-nav .nav-link {
  color: white;
  font-weight: 600;
  padding: 10px 20px !important;
  transition: all 0.3s ease;
}

header.sticky .navbar-nav .nav-link {
  color: var(--primary-dark);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primary-dark);
  overflow: hidden;
}

.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: fadeUp 1s ease;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  animation: fadeUp 1.2s ease;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
  background-color: var(--neutral-light);
}

.about-img img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding: 30px 0;
}

.feature-box {
  padding: 20px;
  margin-bottom: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Services Section */
.services-section {
  background-color: var(--primary-light);
  position: relative;
  overflow: hidden;
  color: white;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #333;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 15px;
}

.service-features {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.service-features ul {
  padding-left: 20px;
}

.service-features li {
  margin-bottom: 8px;
}

/* Features Section */
.features-section {
  background-color: var(--neutral-light);
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background-color: white;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: white;
  font-size: 30px;
  margin: 0 auto 20px;
}

.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Price Plan Section */
.price-section {
  background-color: #f9f9f9;
}

.price-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.price-header {
  background-color: var(--primary-color);
  color: white;
  padding: 20px;
}

.price-header h4 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.price-content {
  padding: 30px;
}

.price-content .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.price-content ul {
  text-align: left;
  margin-bottom: 30px;
  padding-left: 20px;
}

.price-content li {
  margin-bottom: 10px;
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.team-img {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-content {
  padding: 20px;
  text-align: center;
}

.team-content h4 {
  margin-bottom: 5px;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.team-content p {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-light);
  color: white;
}

.review-card {
  background-color: white;
  color: #333;
  padding: 30px;
  border-radius: 10px;
  margin: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-card p {
  font-style: italic;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
}

.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.reviewer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-info h5 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.reviewer-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: #777;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--neutral-light);
}

.info-box {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-box h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background-color: white;
}

.contact-form {
  background-color: var(--neutral-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 15px;
}

textarea.form-control {
  height: 150px;
}

.form-check-label {
  margin-left: 10px;
}

/* Blog Section */
.blog-section {
  background-color: var(--neutral-light);
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.blog-content p {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
  background-color: white;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 600;
  padding: 20px;
  background-color: var(--neutral-light);
  color: var(--primary-dark);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: white;
}

.accordion-body {
  padding: 20px;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--neutral-light);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 70px 0 20px;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h4 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-widget h4:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 0;
}

.footer-widget p {
  margin-bottom: 20px;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact li i {
  margin-right: 15px;
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 5px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  text-align: center;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Space Page */
#space {
  padding: 100px 0;
  min-height: 500px;
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--primary-light);
  padding: 100px 0 20px;
  color: white;
  margin-bottom: 30px;
}

.breadcrumb-img {
  max-width: 100%;
  height: auto;
}

/* Media queries will be in responsive.css */ 