/* Remote IT Helpdesk for Seniors - Main Styles */

/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-blue: #6B9FF7;
  --primary-green: #7DD3C0; 
  --primary-purple: #A78BFA;
  --primary-orange: #FEB666;
  --primary-pink: #F472B6;
  
  /* Light Shades */
  --light-blue: #E1EFFE;
  --light-green: #E6F7F4;
  --light-purple: #F3F0FF;
  --light-orange: #FEF3E2;
  --light-pink: #FDF2F8;
  
  /* Dark Shades */
  --dark-blue: #4F46E5;
  --dark-green: #059669;
  --dark-purple: #7C3AED;
  --dark-orange: #EA580C;
  --dark-pink: #DB2777;
  
  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --card-padding: 2rem;
  --border-radius: 0.75rem;
}

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

/* Conservative font sizes for accessibility */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 600;
  color: var(--dark-blue);
}

h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--gray-900);
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--gray-800);
}

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

/* ===== SECTIONS ===== */
.section-padding {
  padding: var(--section-padding);
}

/* ===== HEADER ===== */
.navbar {
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--gray-800);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

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

.hero-content {
  z-index: 2;
    padding-top: 175px;
}

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

.hero-subtitle {
  color: var(--primary-purple);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.hero-desc {
  color: var(--gray-800);
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
}

.hero-decorative {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: var(--light-purple);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

/* ===== CARDS ===== */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

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

.card-body {
  padding: var(--card-padding);
}

/* ===== SERVICES CARDS ===== */
.service-card {
  background: var(--white);
  text-align: center;
}

.service-card .card-body {
  padding: 2.5rem 2rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-blue);
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background-color: var(--gray-50);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--primary-green);
}

/* ===== TEAM SECTION ===== */
.team-member {
  text-align: center;
}

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

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background-color: var(--light-purple);
}

.review-card {
  background: var(--white);
  border-left: 4px solid var(--primary-purple);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

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

/* ===== FAQ SECTION ===== */
.faq-card {
  background: var(--white);
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-orange);
}

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

.faq-answer {
  color: var(--gray-800);
  margin-bottom: 0;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  background-color: var(--gray-50);
}

.form-control {
  border-radius: var(--border-radius);
  border: 2px solid var(--gray-200);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

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

.contact-info {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
}

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

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--primary-blue);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 3rem 0 2rem;
}

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

.footer a {
  color: var(--gray-200);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

/* ===== GALLERY ===== */
.gallery-item {
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

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

/* ===== BLOG SECTION ===== */
.blog-card {
  background: var(--white);
  overflow: hidden;
}

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

.blog-excerpt {
  color: var(--gray-800);
  font-size: var(--font-size-small);
}

/* ===== UTILITY CLASSES ===== */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-green { color: var(--primary-green); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-pink { color: var(--primary-pink); }

.bg-light-blue { background-color: var(--light-blue); }
.bg-light-green { background-color: var(--light-green); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-light-orange { background-color: var(--light-orange); }
.bg-light-pink { background-color: var(--light-pink); }

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

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

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

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

.section-desc {
  text-align: center;
  color: var(--gray-800);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


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