:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #5690dc;
  --primary-coral: #ff846d;
  --primary-mint: #56ccd3;
  --primary-lavender: #b06fc0;
  --primary-cream: #fffefa;
  
  /* Light/Dark Shades */
  --light-blue: #f3f8ff;
  --dark-blue: #28a8e8;
  --light-coral: #fdfcfc;
  --dark-coral: #d34d48;
  --light-mint: #d3f5ff;
  --dark-mint: #18b59c;
  --light-lavender: #fae6ff;
  --dark-lavender: #8c29ae;
  
  /* Typography */
  --font-size-base: 0.9rem;
  --font-size-small: 0.8rem;
  --font-size-large: 1.1rem;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.4rem;
  --line-height-base: 1.6;
}

/* Base Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: #2b3845;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }

.navbar-brand {
  font-size: 1.2rem !important;
  font-weight: 700;
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

.section-title {
  margin-bottom: 3rem;
}

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-coral);
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 15%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 10%;
  background: var(--primary-lavender);
}

/* About Section */
.about-section {
  background-color: #ffffff;
}

.feature-card {
  background: var(--light-cream);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border: 1px solid #e7ecf4;
  transition: transform 0.3s ease;
}

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

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

/* Services Section */
.services-section {
  background-color: var(--light-blue);
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

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

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

/* Features Section */
.features-section {
  background-color: #ffffff;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-mint);
}

.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Team Section */
.team-section {
  background-color: #ffffff;
}

.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-lavender);
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.review-stars {
  color: #ffcb00;
  margin-bottom: 1rem;
}

/* Case Study Section */
.casestudy-section {
  background-color: #ffffff;
}

.case-card {
  background: var(--light-cream);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--primary-coral);
}

/* Process Section */
.process-section {
  background-color: var(--light-blue);
}

.process-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

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

/* Timeline Section */
.timeline-section {
  background-color: #ffffff;
}

.timeline-item {
  background: var(--light-mint);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-mint);
}

/* Career Section */
.career-section {
  background-color: var(--light-lavender);
}

.career-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border: 1px solid #d5deec;
}

.career-badge {
  background: var(--primary-lavender);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* Core Info Section */
.coreinfo-section {
  background-color: #ffffff;
}

.coreinfo-card {
  background: var(--light-blue);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-mint);
}

.contact-form {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info {
  background: var(--primary-mint);
  color: white;
  border-radius: 12px;
  padding: 3rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 30px;
}

/* Blog Section */
.blog-section {
  background-color: #ffffff;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

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

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-cream);
}

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e7eef2;
}

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

/* Gallery Section */
.gallery-section {
  background-color: #ffffff;
}

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: #273640;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

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

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

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

.footer-bottom {
  border-top: 1px solid #2d3c53;
  padding-top: 1rem;
  margin-top: 2rem;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
}

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

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

/* Forms */
.form-control {
  border-radius: 8px;
  border: 1px solid #c8b8b6;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(56, 130, 226, 0.25);
}

/* Utilities */
.text-primary-custom {
  color: var(--primary-blue) !important;
}

.bg-primary-custom {
  background-color: var(--primary-blue) !important;
}

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

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


/* 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;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    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;
    }
}
