/* Bootstrap 5 CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdn.jsdelivr.net/npm/lightbox2@2.11.4/dist/css/lightbox.min.css');

/* Color Palette Variables */
:root {
  --primary-coral: #FF6B6B;
  --primary-gold: #FFD93D;
  --primary-sage: #6BCB77;
  --primary-lavender: #A8E6CF;
  --primary-sunset: #FF8E53;
  
  --light-coral: #FFB3B3;
  --light-gold: #FFF099;
  --light-sage: #B8E6C1;
  --light-lavender: #D4F1E8;
  --light-sunset: #FFB899;
  
  --dark-coral: #E55555;
  --dark-gold: #E6C234;
  --dark-sage: #5BB366;
  --dark-lavender: #97D5BA;
  --dark-sunset: #E67A42;
  
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --white: #FFFFFF;
  --gradient-1: linear-gradient(135deg, var(--primary-coral), var(--primary-sunset));
  --gradient-2: linear-gradient(135deg, var(--primary-gold), var(--primary-sage));
  --gradient-3: linear-gradient(135deg, var(--primary-lavender), var(--primary-coral));
}

/* Global Styles */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
    overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  font-size: 1rem;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-lavender);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-coral) !important;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-coral) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-background.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-section h1 {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-1);
  border-radius: 2px;
}

/* Cards */
.custom-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border: none;
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.custom-card .card-body {
    overflow-x: hidden;
  padding: 2rem;
}

.custom-card .card-title {
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.custom-card .card-text {
  color: var(--text-light);
}

/* Services Cards */
.service-card {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .card-img-top {
  transform: scale(1.1);
}

.service-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-1);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Price Plans */
.price-card {
  position: relative;
  border: 2px solid var(--light-lavender);
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-coral);
}

.price-header {
  background: var(--gradient-2);
  color: var(--white);
  padding: 2rem;
  text-align: center;
  border-radius: 15px 15px 0 0;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0;
}

.price-features {
  padding: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-lavender);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Cards */
.team-card {
  text-align: center;
  position: relative;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--light-coral);
  transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.1);
}

/* Reviews Slider */
.reviews-slider {
  padding: 2rem 0;
}

.review-card {
  background: var(--gradient-3);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin: 1rem;
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.95);
}

.review-author {
  font-weight: 600;
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background: var(--light-lavender);
  padding: 3rem;
  border-radius: 20px;
}

.form-control {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.btn-primary {
  background: var(--gradient-1);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-1);
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--light-lavender);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background: var(--light-gold);
  padding: 1.5rem;
  cursor: pointer;
  margin: 0;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-gold);
}

.faq-answer {
  padding: 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--light-lavender);
  color: var(--text-light);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links a {
  color: var(--light-lavender);
  text-decoration: none;
  display: block;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-coral);
}

.footer-bottom {
  border-top: 1px solid var(--text-light);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom small {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-lavender);
}

.breadcrumb-image {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-coral);
  border-radius: 50%;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--light-coral);
}

.timeline-item:last-child::before {
  display: none;
}

/* Case Studies */
.case-study-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  border-left: 5px solid var(--primary-sage);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Career Cards */
.career-card {
  background: var(--light-sage);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.career-role {
  color: var(--primary-coral);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Blog Grid */
.blog-post {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-coral);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--dark-coral);
}

/* Space Page */
#space {
  min-height: 70vh;
  background: var(--gradient-2);
  border-radius: 20px;
  margin: 2rem 0;
}

/* Additional decorative elements */
.decorative-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-3);
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -150px;
}

.blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -100px;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-1 {
  background: var(--gradient-1);
}

.bg-gradient-2 {
  background: var(--gradient-2);
}

.bg-gradient-3 {
  background: var(--gradient-3);
} 