:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-sky: #88d8ea;
  --primary-charcoal: #2c353f;
  --primary-silver: #cecece;
  --primary-coral: #ff7e91;
  --primary-mint: #99e4a3;
  
  /* Light/Dark Shades */
  --light-sky: #f0f8ff;
  --dark-sky: #467d9e;
  --light-charcoal: #6e859a;
  --dark-charcoal: #395d61;
  --light-silver: #f5f5f5;
  --dark-silver: #c1b0ae;
  --light-coral: #ffe5e4;
  --dark-coral: #dc1c4d;
  --light-mint: #f0fff0;
  --dark-mint: #00ff99;
}

/* Conservative Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--light-silver);
}

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 600;
  color: var(--primary-charcoal);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-sky) 0%, var(--primary-sky) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-mint);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

/* Typography Consistency */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-charcoal);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-charcoal);
  margin-bottom: 0.5rem;
}

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

/* Card Styling */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(62, 84, 100, 0.10);
  transition: transform 0.3s ease;
  background: white;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(36, 51, 57, 0.15);
}

/* Services Section */
.services-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.services-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin-top: 1rem;
}

/* Price Plan Section */
.price-card {
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
  background: white;
}

.price-card.featured {
  border: 2px solid var(--primary-coral);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Team Section */
.team-card {
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--light-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-charcoal);
}

/* Reviews Section */
.review-card {
  background: var(--light-sky);
  border-left: 4px solid var(--primary-coral);
  padding: 2rem;
}

/* FAQ Section */
.faq-card {
  margin-bottom: 1rem;
  background: white;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--light-charcoal);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(57, 70, 75, 0.10);
}

.form-control {
  border: 2px solid var(--light-silver);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sky);
  box-shadow: 0 0 0 0.2rem rgba(142, 201, 232, 0.25);
}

.btn-primary {
  background: var(--primary-coral);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

footer h5 {
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

footer a {
  color: var(--light-silver);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-mint);
}

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

.gallery-item {
  aspect-ratio: 16/9;
  background: var(--light-sky);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.gallery-item::after {
  content: 'ðŸ“¹';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--primary-charcoal);
}

/* Blog Section */
.blog-card {
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

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

.process-item::before, .timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--primary-coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Utility Classes */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.text-primary-custom {
  color: var(--primary-coral);
}

.bg-light-custom {
  background-color: var(--light-silver);
}

.bg-primary-custom {
  background-color: var(--primary-sky);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .card:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

/* Space Page Specific */
#space {
  min-height: 70vh;
  background: var(--light-sky);
  border-radius: 12px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-charcoal);
} 

.hero-content {
    padding-top: 175px;
}


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
