/* ===== COLOR PALETTE ===== */
:root {
  /* Primary Colors */
  --primary-emerald: #25e592;
  --primary-violet: #7955f8;
  --primary-coral: #e96d58;
  --primary-amber: #e3a61d;
  --primary-slate: #5e7894;
  
  /* Light/Dark Variations */
  --emerald-light: #b9fee1;
  --emerald-dark: #0c6f58;
  --violet-light: #d3c7ff;
  --violet-dark: #5529aa;
  --coral-light: #ffc5c0;
  --coral-dark: #b03017;
  --amber-light: #fee9a4;
  --amber-dark: #dc8a15;
  --slate-light: #bcc8e0;
  --slate-dark: #161d28;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-emerald), var(--primary-violet));
  --gradient-secondary: linear-gradient(135deg, var(--primary-coral), var(--primary-amber));
  --gradient-accent: linear-gradient(135deg, var(--primary-violet), var(--primary-slate));
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', var(--font-primary);
  
  /* Spacing */
  --section-padding: 80px 0;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --box-shadow: 0 9px 32px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: 18.00px;
  line-height: 1.6;
  color: var(--slate-dark);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Reduced Motion Support */
@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;
  }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.56rem;
}

h1 {
  font-size: 2.54rem;
  font-weight: 700;
}

h2 {
  font-size: 2.33rem;
}

h3 {
  font-size: 1.84rem;
}

h4 {
  font-size: 1.45rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.11rem;
}

p {
  margin-bottom: 1.18rem;
  font-size: 1.11rem;
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.62rem !important;
  font-weight: 700;
  color: var(--primary-violet) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--slate-dark) !important;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-violet) !important;
  background: var(--emerald-light);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== SECTIONS ===== */
.section-padding {
  padding: var(--section-padding);
}

.bg-light {
  background: linear-gradient(135deg, #f8fafc 0%, #fbfdff 100%) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding-top: 50px;
  background: var(--gradient-primary);
  color: white;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../SIV_images/hero-dice.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.56rem;
  margin-bottom: 1.18rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h3 {
  color: var(--emerald-light);
  margin-bottom: 1.67rem;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2.11rem;
  opacity: 0.9;
}

/* ===== FEATURE CARDS ===== */
.feature-card, .service-card, .price-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  margin-bottom: 2.11rem;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover, .service-card:hover, .price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.feature-icon {
  font-size: 3.01rem;
  color: var(--primary-emerald);
  margin-bottom: 1.18rem;
}

.service-card img {
  border-radius: var(--border-radius);
  margin-bottom: 1.67rem;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.price {
  font-size: 2.12rem;
  font-weight: 700;
  color: var(--primary-violet);
  margin-top: 1.10rem;
}

.price-card.featured {
  border: 2px solid var(--primary-emerald);
  transform: scale(1.05);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--slate-light);
}

.price-card ul li:before {
  content: 'âœ“';
  color: var(--primary-emerald);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* ===== TEAM SECTION ===== */
.team-member {
  margin-bottom: 2.11rem;
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.18rem;
  border: 4px solid var(--primary-emerald);
}

/* ===== REVIEWS SLIDER ===== */
.reviews-slider {
  padding: 2rem 0;
}

.review-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  margin: 1rem;
  box-shadow: var(--box-shadow);
}

.review-card p {
  font-style: italic;
  font-size: 1.12rem;
  margin-bottom: 1.18rem;
}

.review-card h6 {
  color: var(--primary-violet);
  font-weight: 600;
}

/* ===== PROCESS STEPS ===== */
.process-step {
  text-align: center;
  margin-bottom: 2.11rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.62rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-emerald);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 2rem 0;
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 45%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 55%;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  background: var(--primary-violet);
  border-radius: 50%;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
  right: -27px;
}

.timeline-item:nth-child(even)::before {
  left: -27px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.contact-form .form-control {
  border: 2px solid var(--slate-light);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1.18rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-emerald);
  box-shadow: 0 0 0 0.2rem rgba(52, 193, 136, 0.25);
}

.contact-info {
  background: var(--gradient-accent);
  color: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  margin-top: 2.09rem;
}

.contact-info p {
  margin-bottom: 1.18rem;
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--emerald-light);
}

/* ===== BUTTONS ===== */
.btn {
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
}

.btn-primary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
}

/* ===== FAQ ACCORDION ===== */
.accordion-button {
  background: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 1rem 1.5rem;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: var(--emerald-light);
  color: var(--emerald-dark);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-emerald);
}

.accordion-body {
  background: var(--slate-light);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* ===== GALLERY ===== */
.gallery-item {
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--box-shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 0 1rem;
  background: var(--slate-dark) !important;
}

.footer h5, .footer h6 {
  color: var(--emerald-light);
  margin-bottom: 1.18rem;
}

.footer ul li {
  margin-bottom: 0.56rem;
}

.footer ul li a {
  color: var(--slate-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: var(--primary-emerald);
}

.footer hr {
  border-color: var(--slate-light);
  margin: 2rem 0 1rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
  padding: 100px 0 20px;
  background: var(--slate-light);
}

.breadcrumb-img {
  width: 40px;
  height: 40px;
  opacity: 0.7;
}

/* ===== SPACE PAGE ===== */
.space-content {
  min-height: 70vh;
  padding: 120px 0;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== UTILITY CLASSES ===== */
.text-primary-custom {
  color: var(--primary-emerald) !important;
}

.bg-primary-custom {
  background: var(--gradient-primary) !important;
}

.border-primary-custom {
  border-color: var(--primary-emerald) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.54rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: auto;
    left: 40px !important;
    margin-left: 0;
  }
  
  .timeline-item::before {
    left: -27px !important;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .col-lg-2-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== BLOG POSTS ===== */
.blog-post {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  margin-bottom: 2.11rem;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-post h5 {
  padding: 1rem 1.5rem 0.5rem;
  color: var(--slate-dark);
}

.blog-post p {
  padding: 0 1.5rem;
  color: var(--primary-slate);
}

.blog-post a {
  display: inline-block;
  padding: 0.5rem 1.5rem 1.5rem;
  color: var(--primary-violet);
  text-decoration: none;
  font-weight: 600;
}

.blog-post a:hover {
  color: var(--primary-emerald);
}

/* ===== ADDITIONAL PAGE STYLES ===== */
.workshop-item, .format-card, .benefit-item, .instructor-card, .pricing-card, 
.education-item, .grade-card, .subject-item, .support-card, .metric-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1.67rem;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.workshop-item:hover, .format-card:hover, .benefit-item:hover, 
.instructor-card:hover, .pricing-card:hover, .education-item:hover, 
.grade-card:hover, .subject-item:hover, .support-card:hover, .metric-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
}

.instructor-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.18rem;
  border: 3px solid var(--primary-emerald);
}

.metric-number {
  font-size: 3.01rem;
  font-weight: 700;
  color: var(--primary-violet);
  margin-bottom: 0.56rem;
}

.contact-page {
  padding-top: 122.00px;
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
