:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-blue: #6C7CE7;
  --primary-mint: #A8E6CF;
  --primary-coral: #FFB3BA;
  --primary-lavender: #DCC4E8;
  --primary-sage: #B5D5C5;
  
  /* Light/Dark Shades */
  --primary-blue-light: #E8EAFF;
  --primary-blue-dark: #4A5BC4;
  --primary-mint-light: #E8F8F0;
  --primary-mint-dark: #7BC49C;
  --primary-coral-light: #FFE8EA;
  --primary-coral-dark: #FF8A92;
  --primary-lavender-light: #F5F0FA;
  --primary-lavender-dark: #C29BD1;
  --primary-sage-light: #E8F2ED;
  --primary-sage-dark: #8FC4A1;
  
  /* Typography */
  --font-family-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 1rem;
  --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;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-max-width: 1200px;
  
  /* Shadows */
  --box-shadow-sm: 0 2px 8px rgba(108, 124, 231, 0.1);
  --box-shadow-md: 0 4px 16px rgba(108, 124, 231, 0.15);
  --box-shadow-lg: 0 8px 32px rgba(108, 124, 231, 0.2);
}

/* Base Typography */
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: #2c3e50;
  background-color: #ffffff;
    overflow-x: hidden;
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.625rem;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  max-width: 65ch;
}

/* Header */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--box-shadow-sm);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: #2c3e50;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--primary-lavender-light);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 40%;
  height: 120%;
  background: var(--primary-coral-light);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

.hero-title {
  color: var(--primary-blue-dark);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--primary-sage-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hero-desc {
  color: #5a6c7d;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: 15px;
  box-shadow: var(--box-shadow-lg);
  width: 100%;
  height: auto;
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

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

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

.section-desc {
  color: #5a6c7d;
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 600px;
}

/* About Section */
.about-section {
  background-color: var(--primary-blue-light);
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: var(--box-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-md);
}

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

.feature-name {
  color: var(--primary-blue-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: #5a6c7d;
  margin-bottom: 0;
}

/* Services Section */
.services-section {
  background-color: #ffffff;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--box-shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-mint));
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
  border-color: var(--primary-blue-light);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-name {
  color: var(--primary-blue-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-desc {
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  color: #2c3e50;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: var(--primary-blue-light);
  border-radius: 8px;
}

.service-price {
  color: var(--primary-blue);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}

/* Features Section */
.features-section {
  background-color: var(--primary-mint-light);
}

/* Price Plan Section */
.priceplan-section {
  background-color: #ffffff;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: var(--box-shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
  border-color: var(--primary-blue);
}

.price-card.featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.price-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Team Section */
.team-section {
  background-color: var(--primary-lavender-light);
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: var(--box-shadow-sm);
  transition: transform 0.3s ease;
  text-align: center;
  height: 100%;
}

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

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

.team-name {
  color: var(--primary-blue-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-sage-dark);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
  background-color: #ffffff;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--box-shadow-sm);
  height: 100%;
  border-left: 4px solid var(--primary-mint);
}

.review-text {
  color: #5a6c7d;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

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

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--box-shadow-sm);
  margin-bottom: 1rem;
  border: none;
}

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

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

/* Contact Section */
.contact-section {
  background-color: #ffffff;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: var(--box-shadow-md);
}

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

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(108, 124, 231, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-mint));
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-md);
}

.contact-info {
  background: var(--primary-blue-light);
  border-radius: 12px;
  padding: 2rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item i {
  color: var(--primary-blue);
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 3rem 0 1rem;
}

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

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

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

.footer-bottom {
  border-top: 1px solid #445566;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--primary-coral-light);
}

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  transition: transform 0.3s ease;
}

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

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

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

/* Utility Classes */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-mint-light) 100%);
}

.text-primary-blue {
  color: var(--primary-blue);
}

.text-primary-mint {
  color: var(--primary-mint);
}

.text-primary-coral {
  color: var(--primary-coral);
}

.text-primary-lavender {
  color: var(--primary-lavender);
}

.text-primary-sage {
  color: var(--primary-sage);
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--primary-blue-light);
}

.breadcrumb-image {
  max-height: 30px;
  width: auto;
} 


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

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