:root {
  /* Primary Color Palette - 5 colors with light/dark variations */
  --primary-purple: #6B46C1;
  --primary-purple-light: #A78BFA;
  --primary-purple-dark: #553C9A;
  
  --secondary-gold: #F59E0B;
  --secondary-gold-light: #FCD34D;
  --secondary-gold-dark: #D97706;
  
  --accent-coral: #F97316;
  --accent-coral-light: #FDBA74;
  --accent-coral-dark: #EA580C;
  
  --neutral-slate: #475569;
  --neutral-slate-light: #94A3B8;
  --neutral-slate-dark: #334155;
  
  --base-cream: #FEF3E2;
  --base-cream-light: #FFFBEB;
  --base-cream-dark: #FED7AA;
  
  /* Typography */
  --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;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1.5rem;
}

/* Base Typography - Conservative Sizes */
html {
  font-size: var(--font-size-base);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--neutral-slate-dark);
  background-color: var(--base-cream-light);
}

h1 { font-size: var(--font-size-h1); font-weight: 700; }
h2 { font-size: var(--font-size-h2); font-weight: 600; }
h3 { font-size: var(--font-size-h3); font-weight: 600; }
h4 { font-size: var(--font-size-h4); font-weight: 500; }
h5 { font-size: var(--font-size-h5); font-weight: 500; }
h6 { font-size: var(--font-size-h6); font-weight: 500; }

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark)) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(107, 70, 193, 0.1);
}

.navbar-brand {
  font-size: 1.5rem !important; /* Conservative size */
  font-weight: 700;
  color: white !important;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-gold-light) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-coral) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: url('../LIN_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(15deg);
}

.hero-content h1 {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-large);
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-purple-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--neutral-slate);
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  color: var(--neutral-slate-light);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--base-cream);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(107, 70, 193, 0.15);
}

.feature-card i {
  font-size: 3rem;
  color: var(--accent-coral);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--base-cream-light), var(--base-cream));
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(107, 70, 193, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-15px);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card-body {
  padding: 2rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-gold);
  margin-bottom: 1rem;
}

.service-features {
  color: var(--neutral-slate);
  margin-bottom: 1.5rem;
}

/* Features Section */
.features-section {
  background: var(--primary-purple-dark);
  color: white;
}

.features-section .section-title,
.features-section .section-subtitle,
.features-section .section-description {
  color: white;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-item i {
  font-size: 4rem;
  color: var(--secondary-gold);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(107, 70, 193, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary-purple), var(--accent-coral));
  color: white;
  transform: scale(1.05);
}

.pricing-card.featured .pricing-price {
  color: var(--secondary-gold-light);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-gold);
  margin-bottom: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(107, 70, 193, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background: var(--base-cream);
}

.team-card {
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--secondary-gold);
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--neutral-slate-dark), var(--primary-purple-dark));
  color: white;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Case Studies Section */
.casestudy-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
  height: 100%;
}

/* Process Section */
.process-section {
  background: var(--base-cream-light);
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-gold), var(--accent-coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

/* Timeline Section */
.timeline-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
  border-left: 5px solid var(--accent-coral);
}

/* Career Section */
.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
  height: 100%;
  border-top: 4px solid var(--secondary-gold);
}

/* Core Info Section */
.coreinfo-section {
  background: linear-gradient(135deg, var(--primary-purple), var(--accent-coral));
  color: white;
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--secondary-gold-light);
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
  background: var(--base-cream);
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(107, 70, 193, 0.1);
}

.form-control {
  border: 2px solid var(--base-cream-dark);
  border-radius: 10px;
  padding: 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(107, 70, 193, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple), var(--accent-coral));
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

/* Blog Section */
.blog-section {
  background: var(--base-cream-light);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 2rem;
}

.blog-link {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--accent-coral);
}

/* FAQ Section */
.faq-section {
  background: white;
}

.faq-item {
  background: var(--base-cream-light);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-purple);
  color: white;
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-purple-dark);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--neutral-slate-dark);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: var(--neutral-slate-dark);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--neutral-slate-dark), var(--primary-purple-dark));
  color: white;
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: var(--secondary-gold);
  margin-bottom: 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--secondary-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-section {
  background: var(--base-cream);
  padding: 2rem 0;
  text-align: center;
}

.breadcrumb-image {
  max-width: 150px;
  height: auto;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-purple), var(--accent-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-purple), var(--accent-coral));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--secondary-gold), var(--accent-coral));
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background: var(--secondary-gold);
}

.swiper-pagination-bullet-active {
  background: var(--primary-purple);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  :root {
    --font-size-h1: 1.875rem;
    --font-size-h2: 1.5rem;
    --font-size-h3: 1.25rem;
    --section-padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .service-card img {
    height: 200px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .gallery-item {
    height: 200px;
  }
} 


/* 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;
    }
}
