/* ===== MAIN.CSS - Remote Executive Assistant Matchmaking Template ===== */

/* CSS Custom Properties - 5 Pastel High-Contrast Colors */
:root {
  /* Primary pastel colors with high contrast */
  --color-primary: #6366f1;        /* Soft indigo */
  --color-secondary: #ec4899;      /* Bright pink */
  --color-accent: #10b981;         /* Emerald green */
  --color-warning: #f59e0b;        /* Amber */
  --color-info: #06b6d4;           /* Cyan */
  
  /* Light variations */
  --color-primary-light: #e0e7ff;
  --color-secondary-light: #fce7f3;
  --color-accent-light: #d1fae5;
  --color-warning-light: #fef3c7;
  --color-info-light: #cffafe;
  
  /* Dark variations */
  --color-primary-dark: #4338ca;
  --color-secondary-dark: #be185d;
  --color-accent-dark: #047857;
  --color-warning-dark: #d97706;
  --color-info-dark: #0891b2;
  
  /* Conservative typography */
  --font-size-brand: 1.5rem;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.75rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.25rem;
  --font-size-h6: 1.125rem;
  --font-size-base: 1rem;
  
  /* Spacing and borders */
  --border-radius: 0.5rem;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ===== BOOTSTRAP 5 INTEGRATION ===== */
/* Import Bootstrap 5 from CDN - will be linked in HTML */

/* ===== GLOBAL STYLES ===== */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #374151;
}

/* Conservative Typography - Override Bootstrap defaults */
.navbar-brand {
  font-size: var(--font-size-brand) !important;
  font-weight: 600;
  color: var(--color-primary);
}

h1 { font-size: var(--font-size-h1); font-weight: 700; }
h2 { font-size: var(--font-size-h2); font-weight: 600; }
h3 { font-size: var(--font-size-h3); font-weight: 600; }
h4 { font-size: var(--font-size-h4); font-weight: 500; }
h5 { font-size: var(--font-size-h5); font-weight: 500; }
h6 { font-size: var(--font-size-h6); font-weight: 500; }

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

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-decoration-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
}

.hero-decoration-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
}

/* ===== SECTION STYLING ===== */
.section-padding {
  padding: 5rem 0;
}

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

.section-subtitle {
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-description {
  color: #6b7280;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

/* ===== SERVICES CARDS ===== */
.service-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

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

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

/* ===== FEATURES STYLING ===== */
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-dark);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

/* ===== TEAM MEMBER CARDS ===== */
.team-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: none;
  text-align: center;
  padding: 2rem 1.5rem;
}

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

/* ===== TESTIMONIALS - STATIC CARDS ONLY ===== */
.review-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: none;
  height: 100%;
}

.review-stars {
  color: var(--color-warning);
  margin-bottom: 1rem;
}

/* ===== FAQ STATIC CARDS ===== */
.faq-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: none;
  margin-bottom: 1.5rem;
}

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

.faq-answer {
  color: #6b7280;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2.5rem;
}

.form-control {
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

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

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

/* ===== FOOTER - HIGH CONTRAST COLORS ONLY ===== */
.footer {
  background-color: #1f2937;
  color: #f9fafb;
  padding: 3rem 0 1rem;
}

.footer a {
  color: #d1d5db;
  text-decoration: none;
}

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

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

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

.breadcrumb-image {
  width: 24px;
  height: 24px;
}

/* ===== PROCESS STEPS ===== */
.process-step {
  text-align: center;
  position: relative;
}

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

/* ===== TIMELINE ITEMS ===== */
.timeline-item {
  border-left: 3px solid var(--color-primary);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: -7.5px;
  top: 0;
}

/* ===== CASE STUDIES ===== */
.case-study-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: none;
  height: 100%;
}

/* ===== CAREER CARDS ===== */
.career-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: none;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

/* ===== PRICE PLAN CARDS ===== */
.price-plan-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: none;
  text-align: center;
  padding: 2.5rem 2rem;
  height: 100%;
}

.price-plan-featured {
  border: 3px solid var(--color-primary);
  transform: scale(1.05);
}

/* ===== CORE INFO ITEMS ===== */
.core-info-item {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: none;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

/* ===== BLOG CARDS ===== */
.blog-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: none;
  height: 100%;
}

.blog-card img {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

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

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



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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}



/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

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

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

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