:root {
  /* Color Palette */
  --primary-color: #FF5733; /* Vibrant orange */
  --secondary-color: #3D5A80; /* Deep blue */
  --accent-color: #44BBA4; /* Teal */
  --neutral-color: #E7ECEF; /* Light grey */
  --dark-color: #2B2D42; /* Dark blue/grey */
  
  /* Light/Dark variations */
  --primary-light: #FF8C6A;
  --primary-dark: #CC4429;
  --secondary-light: #6A8CAD;
  --secondary-dark: #2C4159;
  --accent-light: #7AD2C2;
  --accent-dark: #338F7F;
  --neutral-light: #FFFFFF;
  --neutral-dark: #C9CED1;
  --dark-light: #474A6A;
  --dark-dark: #1A1B27;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--neutral-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-dark);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  border: none;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: white;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.section-title p {
  color: var(--dark-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Header Styles */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
  background-color: white;
}

.header .navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.header .nav-item {
  margin: 0 10px;
}

.header .nav-link {
  color: var(--dark-color);
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

.header .nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.header .nav-link:hover:after,
.header .nav-link.active:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 30px;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-content {
  padding: 30px 0;
}

.about-feature {
  margin-top: 40px;
}

.about-feature-item {
  padding: 20px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-feature-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.about-feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Services Section */
.services-section {
  background-color: var(--neutral-light);
}

.service-item {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-item img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-item p {
  margin-bottom: 20px;
}

.service-item .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-features {
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.service-features li {
  padding: 5px 0;
  border-bottom: 1px solid var(--neutral-dark);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: var(--secondary-color);
  color: white;
}

.features-section .section-title h2 {
  color: white;
}

.features-section .section-title h2:after {
  background-color: var(--primary-color);
}

.features-section .section-title p {
  color: var(--neutral-light);
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-item h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-item p {
  color: var(--neutral-light);
}

/* Price Plan Section */
.price-plan-section {
  background-color: var(--neutral-light);
}

.price-plan-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.price-plan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-plan-header {
  background-color: var(--secondary-color);
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.price-plan-header h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.price-plan-header .price {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-plan-body {
overflow-x: hidden;
  padding: 30px 20px;
}

.price-plan-features {
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}

.price-plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-dark);
}

.price-plan-features li:last-child {
  border-bottom: none;
}

.price-plan-features i {
  color: var(--accent-color);
  margin-right: 10px;
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-member {
  margin-bottom: 30px;
  text-align: center;
}

.team-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.team-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

.team-member h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.team-member .role {
  color: var(--dark-light);
  font-style: italic;
  margin-bottom: 15px;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.review-item {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 15px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-text:before,
.review-text:after {
  content: '"';
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
}

.review-text:before {
  top: -20px;
  left: -10px;
}

.review-text:after {
  bottom: -40px;
  right: -10px;
}

.review-author {
  font-weight: 700;
  color: var(--dark-color);
}

/* Core Info Section */
.core-info-section {
  background: linear-gradient(to right, var(--secondary-color), var(--dark-color));
  color: white;
  padding: 80px 0;
}

.core-info-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.core-info-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.core-info-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.core-info-item h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.core-info-item p {
  color: var(--neutral-light);
}

/* Contact Section */
.contact-section {
  background-color: white;
}

.contact-form {
  background: var(--neutral-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border: 1px solid var(--neutral-dark);
  border-radius: 5px;
  padding: 10px 15px;
}

textarea.form-control {
  height: 150px;
}

.custom-checkbox {
  margin-bottom: 20px;
}

/* Blog Section */
.blog-section {
  background-color: var(--neutral-light);
}

.blog-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
  background-color: white;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  color: var(--dark-color);
  background-color: white;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: white;
  box-shadow: none;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FF5733' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 11l6-6 6 6'/%3e%3c/svg%3e");
}

.accordion-body {
overflow-x: hidden;
  padding: 20px;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--neutral-light);
  padding: 100px 0;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 20px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .sitename {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary-color);
}

.footer-desc {
  color: var(--neutral-dark);
  margin-bottom: 30px;
}

.footer-heading {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--neutral-dark);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  color: var(--neutral-dark);
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 10px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--neutral-dark);
  font-size: 0.9rem;
}

/* Additional Pages */
.page-header {
  height: 40vh;
  background-color: var(--secondary-color);
  color: white;
  display: flex;
  align-items: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header-content h1 {
  font-size: 3rem;
  color: white;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

.breadcrumb-item, .breadcrumb-item a {
  color: white;
}

.breadcrumb-item.active {
  color: var(--primary-light);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Space Page */
.space-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

/* Utility Classes */
.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

.bg-neutral {
  background-color: var(--neutral-color) !important;
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.text-neutral {
  color: var(--neutral-color) !important;
}

.text-dark {
  color: var(--dark-color) !important;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

.shadow-md {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.shadow-lg {
  box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
} 