:root {
  /* Color Palette */
  --primary-color-1: #4a6fa5; /* Deep blue */
  --primary-color-2: #e27d60; /* Terracotta */
  --primary-color-3: #41b3a3; /* Teal */
  --primary-color-4: #c38d9e; /* Mauve */
  --primary-color-5: #f8b74f; /* Amber */
  
  /* Light and dark variants */
  --primary-color-1-light: #6889ba;
  --primary-color-1-dark: #385685;
  --primary-color-2-light: #e8a08b;
  --primary-color-2-dark: #c45e43;
  --primary-color-3-light: #6fc7bb;
  --primary-color-3-dark: #329485;
  --primary-color-4-light: #d3acb9;
  --primary-color-4-dark: #a5707f;
  --primary-color-5-light: #fac97a;
  --primary-color-5-dark: #e9a128;
  
  /* Neutral colors */
  --neutral-100: #ffffff;
  --neutral-200: #f8f9fa;
  --neutral-300: #e9ecef;
  --neutral-400: #dee2e6;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
}

/* Base styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-800);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--primary-color-1);
}

a:hover {
  color: var(--primary-color-1-dark);
}

section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-subtitle {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  color: var(--primary-color-2);
}

.section-description {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header styles */
header {
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--neutral-100);
}

.navbar {
  padding: 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 500;
  color: var(--neutral-700);
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, rgba(74, 111, 165, 0.9), rgba(65, 179, 163, 0.8)), url('../SKY_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title-1 {
  font-size: 3.5rem;
  color: var(--neutral-100);
  margin-bottom: 1rem;
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  color: var(--neutral-200);
  margin-bottom: 2rem;
}

.hero-desc-1 {
  color: var(--neutral-200);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* About Section */
.about {
  position: relative;
}

.about-feature {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-feature-name {
  color: var(--primary-color-1);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Services Section */
.services {
  background-color: var(--neutral-200);
}

.service-item {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-item-img {
  height: 200px;
  object-fit: cover;
}

.service-item-content {
  padding: 1.5rem;
}

.service-item-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color-1);
}

.service-item-desc {
  margin-bottom: 1rem;
  color: var(--neutral-700);
}

.service-item-price {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color-3);
  margin-top: 1rem;
  display: block;
}

.service-item-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.service-item-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-300);
}

.service-item-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features {
  position: relative;
}

.feature-item {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: var(--neutral-100);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-item-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-3);
}

.feature-item-name {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

/* Price Plan Section */
.priceplan {
  background-color: var(--neutral-200);
}

.priceplan-item {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.priceplan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.priceplan-item-header {
  padding: 2rem;
  background-color: var(--primary-color-1);
  color: var(--neutral-100);
  text-align: center;
}

.priceplan-item-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.priceplan-item-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.priceplan-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.priceplan-item-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: auto;
}

.priceplan-item-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--neutral-300);
}

.priceplan-item-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team {
  position: relative;
}

.team-member {
  margin-bottom: 2rem;
  text-align: center;
}

.team-member-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--neutral-100);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color-1);
}

.team-member-role {
  color: var(--primary-color-2);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background-color: var(--neutral-200);
  position: relative;
}

.reviews-slider {
  padding-bottom: 3rem;
}

.review-item {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.review-item-author {
  font-weight: 600;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
  display: block;
}

.review-item-text {
  font-style: italic;
  color: var(--neutral-700);
}

/* Core Info Section */
.coreinfo {
  position: relative;
}

.coreinfo-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.coreinfo-item-title {
  color: var(--primary-color-1);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Contact Section */
.contact {
  position: relative;
}

.contact-form {
  background-color: var(--neutral-100);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid var(--neutral-400);
  padding: 0.75rem;
  border-radius: 0.25rem;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(74, 111, 165, 0.25);
  border-color: var(--primary-color-1);
}

.form-check-label {
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
}

/* Blog Section */
.blog {
  background-color: var(--neutral-200);
}

.blog-item {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-item-img {
  height: 200px;
  object-fit: cover;
}

.blog-item-content {
  padding: 1.5rem;
}

.blog-item-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

.blog-item-excerpt {
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
  position: relative;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-button {
  padding: 1.25rem;
  font-weight: 600;
  color: var(--primary-color-1);
  background-color: var(--neutral-100);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: var(--neutral-100);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(74, 111, 165, 0.25);
}

.accordion-body {
  padding: 1.25rem;
  background-color: var(--neutral-100);
}

/* Gallery Section */
.gallery {
  background-color: var(--neutral-200);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 0;
  padding-bottom: 75%;
}

.gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 4rem 0 1rem;
}

footer p {
  margin-bottom: 0.5rem;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer a {
  color: var(--neutral-300);
}

footer a:hover {
  color: var(--neutral-100);
}

#site-copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-700);
  display: block;
  text-align: center;
  font-size: 0.875rem;
  color: var(--neutral-500);
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Additional Pages */
.add-page-section {
  padding: 5rem 0;
}

.add-page-section:nth-child(even) {
  background-color: var(--neutral-200);
}

.add-page-title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.add-page-subtitle {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  color: var(--primary-color-2);
}

.add-page-desc {
  margin-bottom: 3rem;
}

.add-page-elem {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.add-page-elem:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.add-page-elem-title {
  color: var(--primary-color-1);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Decorative elements */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(40px);
  z-index: 0;
}

.shape-blob-1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(74, 111, 165, 0.2);
}

.shape-blob-2 {
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(226, 125, 96, 0.2);
}

/* Animation utility classes */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-in-left {
  animation: slideInLeft 1s ease-in-out;
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.slide-in-right {
  animation: slideInRight 1s ease-in-out;
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.slide-in-up {
  animation: slideInUp 1s ease-in-out;
}

@keyframes slideInUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
} 