/* Remote Executive Assistant Matchmaking - Main Styles */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  --primary-blue: #7e7cf9;
  --primary-teal: #23b6b8;
  --primary-rose: #ff435d;
  --primary-amber: #ffb516;
  --primary-purple: #ae67ff;
  
  --light-blue: #d0cdef;
  --light-teal: #d7f3e9;
  --light-rose: #ffe4f1;
  --light-amber: #ffefbd;
  --light-purple: #f3e1ff;
  
  --dark-blue: #332b85;
  --dark-teal: #0a6055;
  --dark-rose: #d10b32;
  --dark-amber: #f26b00;
  --dark-purple: #8728bd;
  
  --text-primary: #19202e;
  --text-secondary: #5b5d69;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
}

/* Base Typography - Conservative Font Sizes */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  scroll-behavior: auto;
}

/* Disable all animations globally */
*, *::before, *::after {
  animation-duration: 0s !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}

/* Conservative Typography Sizes */
.navbar-brand {
  font-size: 1.29rem;
  font-weight: 600;
  color: var(--primary-blue);
}

h1 {
  font-size: 2.60rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.11rem;
}

h4 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.97rem;
}

h5 {
  font-size: 1.21rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.77rem;
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(106, 94, 230, 0.10);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 21px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-teal) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(104, 87, 217, 0.10) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 175px;
}

.hero-title {
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Styling */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-blue);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.60rem;
}

/* Services Section */
.services {
  background: var(--bg-light);
}

.service-card {
  background: var(--bg-white);
  border-radius: 19px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 17px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.77rem;
  object-fit: cover;
}

.service-price {
  font-size: 1.63rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 1rem;
}

/* Features Section */
.features {
  background: var(--bg-white);
}

.feature-card {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1.87rem;
}

/* Team Section */
.team {
  background: var(--bg-light);
}

.team-member {
  text-align: center;
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.team-member:hover {
  /* Removed transform effect */
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1.77rem;
  object-fit: cover;
}

.team-member-name {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.74rem;
}

.team-member-role {
  color: var(--primary-blue);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background: var(--bg-white);
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--light-blue);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.review-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.74rem;
}

.review-author {
  font-weight: 600;
  color: var(--text-primary);
}

/* FAQ Section */
.faq {
  background: var(--bg-light);
}

.faq-card {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.09rem;
}

.faq-answer {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  background: var(--bg-white);
}

.contact-form {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2rem;
}

.contact-info {
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.79rem;
}

.contact-info-icon {
  font-size: 1.54rem;
  color: var(--primary-blue);
  margin-right: 1rem;
  width: 24px;
}

/* Footer */
.footer {
  background: var(--dark-blue);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
  color: white;
  text-decoration: none;
}

/* Buttons */
.btn-primary {
  background: var(--primary-blue);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--dark-blue);
}

.btn-outline-primary {
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background: var(--primary-blue);
  color: white;
}

/* Form Styles */
.form-control {
  border-radius: 10px;
  border: 1px solid rgba(117, 103, 234, 0.20);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(89, 80, 255, 0.25);
}

/* Gallery */
.gallery img {
  border-radius: 10px;
}

.gallery img:hover {
  /* Removed transform effect */
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb img {
  width: 20px;
  height: 20px;
}

/* Price Plan */
.priceplan {
  background: var(--bg-light);
}

.price-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.price-card.featured {
  border: 2px solid var(--primary-blue);
}

.price-amount {
  font-size: 2.58rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Case Studies */
.casestudy {
  background: var(--bg-white);
}

.casestudy-card {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
}

/* Process */
.process {
  background: var(--bg-light);
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.60rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* Timeline */
.timeline {
  background: var(--bg-white);
}

.timeline-item {
  padding: 1.5rem;
  border-left: 3px solid var(--primary-blue);
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 1.5rem;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-blue);
}

/* Career */
.career {
  background: var(--bg-light);
}

.career-item {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.89rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Core Info */
.coreinfo {
  background: var(--bg-white);
}

.coreinfo-item {
  text-align: center;
  padding: 2rem 1rem;
}

.coreinfo-icon {
  font-size: 2.59rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

/* Blog */
.blog {
  background: var(--bg-light);
}

.blog-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
  /* Removed transform effect */
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-title {
  font-size: 1.32rem;
  font-weight: 600;
  margin-bottom: 1.12rem;
}

.blog-card-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.blog-card-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.blog-card-link:hover {
  color: var(--dark-blue);
}

/* Space Page */
#space {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rounded-custom {
  border-radius: 20px;
}

/* Loading Animation - Disabled */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
}

/* Lazy Loading - Disabled */
img[data-src] {
  opacity: 1;
}

img.loaded {
  opacity: 1;
}

/* Sal.js Animation Support - Disabled */
.sal-animate {
  /* Removed transition */
}

/* Force all elements with Sal.js attributes to be visible */
[data-sal] {
  opacity: 1 !important;
  transform: none !important;
}

/* Ensure all content is visible */
[data-sal-duration],
[data-sal-delay],
[data-sal-easing] {
  opacity: 1 !important;
  transform: none !important;
}

/* Accessibility */
.keyboard-navigation a:focus,
.keyboard-navigation button:focus,
.keyboard-navigation input:focus,
.keyboard-navigation textarea:focus,
.keyboard-navigation select:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

.focused {
  box-shadow: 0 0 0 3px rgba(112, 115, 227, 0.30);
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-blue);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
} 


/* 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;
    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 {
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
}

.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);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
