:root {
  /* Primary Color Palette */
  --primary-purple: #5b47a8;
  --primary-purple-light: #a15eff;
  --primary-purple-dark: #573698;
  
  --secondary-coral: #f99215;
  --secondary-coral-light: #f5ad44;
  --secondary-coral-dark: #ec6d1e;
  
  --accent-teal: #089073;
  --accent-teal-light: #09ad97;
  --accent-teal-dark: #187464;
  
  --neutral-slate: #415463;
  --neutral-slate-light: #62758f;
  --neutral-slate-dark: #39425c;
  
  --warm-amber: #c18a12;
  --warm-amber-light: #e77a0c;
  --warm-amber-dark: #c86700;
  
  /* Light/Dark variations */
  --bg-light: #FEFEFE;
  --bg-gray: #F8FAFC;
  --text-dark: #171d30;
  --text-muted: #5e708c;
  
  /* Conservative font sizes */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 2.25rem;
  --font-size-h2: 1.875rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.125rem;
  --font-size-h6: 1rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  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 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.72rem;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
  margin-bottom: 1.08rem;
  font-size: var(--font-size-base);
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 700;
  color: var(--primary-purple) !important;
}

.navbar {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-coral) 100%);
  backdrop-filter: blur(13px);
  box-shadow: 0 7px 25px rgba(115, 80, 193, 0.10);
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--warm-amber-light) !important;
  transform: translateY(-6px);
}

/* Hero Section */
.hero-section h1 {
  padding-top: 100px;
}
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-teal) 50%, var(--secondary-coral) 100%);
  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('../FUZ_images/fuzu_hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  padding-top: 150px !important;
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.08rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.69rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-size-large);
  margin-bottom: 2.09rem;
  opacity: 0.8;
}

/* Decorative shapes */
.blob-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--warm-amber) 0%, var(--secondary-coral) 100%);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(10deg); }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.08rem;
  color: var(--primary-purple);
}

.section-subtitle {
  font-size: var(--font-size-h4);
  text-align: center;
  margin-bottom: 1.08rem;
  color: var(--neutral-slate);
}

.section-desc {
  text-align: center;
  margin-bottom: 3.18rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--bg-gray);
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 11px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 22px 40px rgba(112, 60, 198, 0.15);
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-coral);
  margin-bottom: 1.08rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--accent-teal-light) 100%);
  color: white;
}

.service-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.05);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--warm-amber-light);
  margin: 1rem 0;
}

/* Team Section */
.team-member {
  text-align: center;
  padding: 1rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--secondary-coral);
  transition: all 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.1);
  border-color: var(--primary-purple);
}

/* Reviews Section */
.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin: 1rem;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--secondary-coral);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

/* Contact Form */
.contact-section {
  background: var(--bg-gray);
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid #eff6fd;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(90, 66, 195, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-coral) 100%);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(111, 70, 198, 0.30);
}

/* FAQ Section */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.08rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--primary-purple);
  color: white;
  padding: 1rem 1.5rem;
  cursor: pointer;
  margin: 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-purple-dark);
}

.faq-answer {
  padding: 1.5rem;
  border-top: 1px solid #f2f6ff;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.08rem;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog Section */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 0.72rem;
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: var(--font-size-small);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--neutral-slate-dark) 0%, var(--primary-purple-dark) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--warm-amber-light);
  margin-bottom: 1.08rem;
}

.footer a {
  color: #bccee5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--warm-amber-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.22rem;
  padding-top: 1.10rem;
  text-align: center;
}

/* Process/Timeline */
.process-item, .timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.09rem;
}

.process-item::before, .timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--secondary-coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--bg-gray);
  margin-top: 84.00px;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-teal) 100%);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--secondary-coral) 0%, var(--warm-amber) 100%);
}

/* Space page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  text-align: center;
}

/* Swiper customization */
.swiper-pagination-bullet {
  background: var(--primary-purple);
}

.swiper-pagination-bullet-active {
  background: var(--secondary-coral);
}

/* Additional responsive fixes */
.col-lg-2-4 {
  flex: 0 0 auto;
  width: 20%;
}

@media (max-width: 991.98px) {
  .col-lg-2-4 {
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  .col-lg-2-4 {
    width: 100%;
  }
}



/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
