:root {
  /* B2B Corporate Gifting Color Palette - Pastel High-Contrast */
  --primary-color: #4A90E2;
  --primary-light: #7BB3F0;
  --primary-dark: #2C5282;
  
  --secondary-color: #E8A87C;
  --secondary-light: #F2C7A3;
  --secondary-dark: #C08552;
  
  --accent-color: #9FD1A4;
  --accent-light: #C4E5C7;
  --accent-dark: #7FB584;
  
  --neutral-color: #6B7D8F;
  --neutral-light: #A0B4C8;
  --neutral-dark: #4A5A6B;
  
  --background-color: #F8FAFB;
  --background-light: #FFFFFF;
  --background-dark: #E5E9EC;
  
  /* Typography */
  --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--neutral-dark);
  background-color: var(--background-light);
    overflow-x: hidden;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--neutral-color);
  margin-bottom: 0.625rem;
}

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

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--neutral-dark);
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
  opacity: 0.1;
  z-index: 1;
}

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

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 15%;
  width: 150px;
  height: 150px;
}

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

/* Services Section */
.service-card {
  background: var(--background-light);
  border: 1px solid var(--background-dark);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

/* Price Plan Section */
.price-card {
  background: var(--background-light);
  border: 2px solid var(--background-dark);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.price-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, var(--background-light) 0%, var(--primary-light) 5%);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

/* Team Section */
.team-card {
  background: var(--background-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--neutral-light);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

/* Reviews Section */
.review-card {
  background: var(--background-light);
  border: 1px solid var(--background-dark);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--neutral-color);
}

.review-author {
  font-weight: 600;
  color: var(--primary-dark);
}

/* Case Study Section */
.case-study-card {
  background: var(--background-light);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Process Section */
.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
}

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

/* Timeline Section */
.timeline-item {
  background: var(--background-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Career Section */
.career-card {
  background: var(--background-light);
  border: 1px solid var(--background-dark);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Core Info Section */
.core-info-item {
  background: var(--background-light);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

/* Contact Form */
.contact-form {
  background: var(--background-light);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--background-dark);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

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

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

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

/* Blog Section */
.blog-card {
  background: var(--background-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--neutral-light);
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-card {
  background: var(--background-light);
  border: 1px solid var(--background-dark);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.faq-answer {
  color: var(--neutral-color);
}

/* Gallery Section */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--neutral-light);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--background-light);
  padding: 3rem 0 1rem;
}

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

.footer a {
  color: var(--background-color);
  text-decoration: none;
}

.footer a:hover {
  color: var(--background-light);
}

.footer-bottom {
  border-top: 1px solid var(--neutral-color);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--background-color);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  background: var(--neutral-light);
  border-radius: 4px;
}

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

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

.text-secondary-custom {
  color: var(--secondary-color);
}

.bg-secondary-custom {
  background-color: var(--secondary-color);
}

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

.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;
    }
}
