:root {
  /* Primary Color Palette - Pastel High-Contrast Colors for Virtual Coworking */
  --primary-purple: #6366f1;
  --primary-teal: #14b8a6;
  --primary-orange: #f59e0b;
  --primary-pink: #ec4899;
  --primary-blue: #3b82f6;
  
  /* Light/Dark Shades */
  --light-purple: #e0e7ff;
  --light-teal: #ccfbf1;
  --light-orange: #fef3c7;
  --light-pink: #fce7f3;
  --light-blue: #dbeafe;
  
  --dark-purple: #4338ca;
  --dark-teal: #0f766e;
  --dark-orange: #d97706;
  --dark-pink: #be185d;
  --dark-blue: #1d4ed8;
  
  /* Typography */
  --font-size-brand: 1.5rem;
  --font-size-h1: 2.25rem;
  --font-size-h2: 1.875rem;
  --font-size-h3: 1.5rem;
  --font-size-p: 1rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
}

/* Bootstrap 5 Integration - DO NOT OVERRIDE */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/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://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Base Typography - Conservative Sizes */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--font-size-p);
  line-height: 1.6;
  color: #374151;
}

.navbar-brand {
  font-size: var(--font-size-brand) !important;
  font-weight: 600;
  color: var(--primary-purple) !important;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

p {
  font-size: var(--font-size-p);
  margin-bottom: 1rem;
  max-width: 65ch;
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}

.navbar-nav .nav-link {
  color: #374151;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: var(--light-orange);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

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

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-title {
  color: var(--primary-purple);
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-teal);
  text-align: center;
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-purple);
}

/* Features Grid */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #e5e7eb;
}

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

/* Reviews/Testimonials */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--primary-purple);
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid #e5e7eb;
  position: relative;
}

.price-featured {
  border-color: var(--primary-purple);
  transform: scale(1.05);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-purple);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-blue);
}

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

.faq-answer {
  color: #6b7280;
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-control {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 0.75rem 1rem;
}

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

.btn-primary {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--dark-purple);
  border-color: var(--dark-purple);
}

/* Gallery */
.gallery-item {
  aspect-ratio: 1;
  background: var(--light-blue);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 2rem;
}

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

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-teal);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: #f9fafb;
}

.breadcrumb-img {
  width: 24px;
  height: 24px;
  background: var(--primary-purple);
  border-radius: 4px;
}

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

/* Animations - Conservative and Accessible */
@media (prefers-reduced-motion: no-preference) {
  .sal-animate {
    transition: all 0.6s ease;
  }
}

/* High Contrast Footer Colors */
.footer {
  background: #000000;
  color: #ffffff;
}

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


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

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