:root {
  /* Pastel High-Contrast Color Palette */
  --primary-color: #6366f1;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --neutral-color: #6b7280;
  --light-color: #f8fafc;
  
  /* Light/Dark Shades */
  --primary-light: #a5b4fc;
  --primary-dark: #4338ca;
  --secondary-light: #6ee7b7;
  --secondary-dark: #047857;
  --accent-light: #fbbf24;
  --accent-dark: #d97706;
  --neutral-light: #d1d5db;
  --neutral-dark: #374151;
  --light-shade: #ffffff;
  --dark-shade: #1f2937;
  
  /* Conservative Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
}

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

/* Conservative Typography - Override Bootstrap conservatively */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-shade);
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}

h1 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-shade);
}

h2 {
  font-size: 1.75rem;
  font-weight: var(--font-weight-medium);
  color: var(--primary-dark);
}

h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  color: var(--neutral-dark);
}

h4 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
}

h5 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
}

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

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

.hero-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decoration:nth-child(1) {
  top: 10%;
  right: 10%;
}

.hero-decoration:nth-child(2) {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--secondary-light);
}

/* Services Section */
.services-card {
  background: var(--light-shade);
  border: 1px solid var(--neutral-light);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
  border-color: var(--primary-color);
}

.price-tag {
  background: var(--primary-color);
  color: var(--light-shade);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: var(--font-weight-bold);
  display: inline-block;
}

/* Team Section */
.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-light);
  margin-bottom: 1rem;
}

/* Reviews/Testimonials - Static Cards Only */
.review-card {
  background: var(--light-shade);
  border: 1px solid var(--neutral-light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

/* FAQ Section - Simple Static Cards */
.faq-card {
  background: var(--light-shade);
  border: 1px solid var(--neutral-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

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

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

/* Contact Form */
.contact-form {
  background: var(--light-shade);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

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

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

/* Footer - High Contrast Colors Only */
.footer {
  background-color: var(--dark-shade);
  color: var(--light-shade);
  padding: 3rem 0 1rem;
}

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

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

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

/* Utility Classes */
.section-padding {
  padding: 5rem 0;
}

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

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

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

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

/* Gallery - Images only */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Blog Grid */
.blog-card {
  background: var(--light-shade);
  border: 1px solid var(--neutral-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.blog-card-body {
  padding: 1.5rem;
}

/* Process/Timeline Items */
.process-item {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

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

/* Responsive Image Handling */
img {
  max-width: 100%;
  height: auto;
}

/* Space Page */
#space {
  min-height: 80vh;
  background-color: var(--light-color);
  border-radius: 12px;
  margin: 2rem 0;
} 

.hero-section h1 {
    padding-top: 200px;
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
