:root {
  /* Color Palette - 5 primary colors + light/dark shades */
  --primary-rose: #edd2d3;
  --primary-lavender: #d2c4db;
  --primary-sage: #d8f0dd;
  --primary-cream: #fff4b5;
  --primary-sky: #e2fdff;
  
  /* Dark shades */
  --dark-rose: #cc717f;
  --dark-lavender: #897aca;
  --dark-sage: #5e976d;
  --dark-cream: #e2ad7a;
  --dark-sky: #76bad9;
  
  /* Light shades */
  --light-rose: #fdf2f3;
  --light-lavender: #f7f4fc;
  --light-sage: #f3faf4;
  --light-cream: #fffcf0;
  --light-sky: #f0fbfc;
  
  /* Typography */
  --font-family-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: #201e1e;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Conservative navbar brand */
.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 600;
}

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-sage);
  opacity: 0.3;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-sky);
  top: -20px;
  left: -20px;
  opacity: 0.5;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Sections */
.section-padding {
  padding: 80px 0;
}

.section-title {
  color: var(--dark-lavender);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--dark-sage);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

/* Services Cards */
.service-card {
  background: var(--light-cream);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

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

/* Team Cards */
.team-card {
  background: var(--light-sky);
  border: none;
  border-radius: 15px;
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-sky);
}

/* Reviews Cards */
.review-card {
  background: var(--light-sage);
  border: none;
  border-radius: 15px;
  padding: 1.5rem;
  height: 100%;
}

.review-author {
  font-weight: 600;
  color: var(--dark-sage);
  margin-bottom: 0.5rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--light-lavender);
  border: none;
  border-radius: 15px;
  text-align: center;
  padding: 2rem 1.5rem;
  height: 100%;
  position: relative;
}

.price-card.featured {
  background: var(--primary-lavender);
  transform: scale(1.05);
}

/* FAQ Cards */
.faq-card {
  background: var(--light-rose);
  border: none;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--dark-rose);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: #626262;
  margin-bottom: 0;
}

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

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

.form-control:focus {
  border-color: var(--primary-lavender);
  box-shadow: 0 0 0 0.2rem rgba(230, 208, 255, 0.25);
}

.btn-primary {
  background-color: var(--primary-lavender);
  border-color: var(--primary-lavender);
  color: #484546;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: #433f40;
  color: white;
  padding: 3rem 0 1rem;
}

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

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

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

/* Process/Timeline Steps */
.process-step {
  background: var(--light-sky);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.process-number {
  background: var(--primary-sky);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Blog Cards */
.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Case Study Cards */
.case-study-card {
  background: var(--light-rose);
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
}

/* Career Cards */
.career-card {
  background: var(--light-sage);
  border: none;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Core Info Cards */
.core-info-card {
  background: var(--light-lavender);
  border: none;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

/* About Features */
.about-feature {
  background: var(--light-sky);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

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

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


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.x-link i {
    display: none;
}

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