/* SaaS Incident Response Template - Main CSS */

/* ============================================
   CSS VARIABLES - COLOR PALETTE
   ============================================ */
:root {
  /* Primary Colors - Pastel High-Contrast */
  --primary-color: #6366f1;        /* Indigo - Trust & Security */
  --secondary-color: #10b981;      /* Emerald - Success & Resolution */
  --accent-color: #f59e0b;         /* Amber - Alerts & Warnings */
  --danger-color: #ef4444;         /* Red - Critical Incidents */
  --info-color: #3b82f6;          /* Blue - Information */
  
  /* Light Shades */
  --primary-light: #e0e7ff;
  --secondary-light: #d1fae5;
  --accent-light: #fef3c7;
  --danger-light: #fee2e2;
  --info-light: #dbeafe;
  
  /* Dark Shades */
  --primary-dark: #4338ca;
  --secondary-dark: #047857;
  --accent-dark: #d97706;
  --danger-dark: #dc2626;
  --info-dark: #1d4ed8;
  
  /* Neutral Colors */
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

/* Conservative Typography */
h1 { 
  font-size: 2.25rem; 
  font-weight: 700; 
  line-height: 1.2; 
}

h2 { 
  font-size: 1.875rem; 
  font-weight: 600; 
  line-height: 1.3; 
}

h3 { 
  font-size: 1.5rem; 
  font-weight: 600; 
  line-height: 1.4; 
}

h4 { 
  font-size: 1.25rem; 
  font-weight: 500; 
  line-height: 1.5; 
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.service-card {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.service-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.1);
  transform: translateY(-5px);
}

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

/* ============================================
   FEATURES SECTION
   ============================================ */
.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-card {
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  background: var(--bg-white);
  position: relative;
  height: 100%;
}

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

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

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

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

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-card {
  border: none;
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  background: var(--bg-light);
  height: 100%;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  background: var(--bg-white);
}

.faq-question {
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-secondary);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--border-color);
  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(99, 102, 241, 0.25);
}

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

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

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

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

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

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

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

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

.footer hr {
  border-color: #374151;
  margin: 2rem 0 1rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary-custom {
  color: var(--primary-color);
}

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

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

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

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

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

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

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

.x-link i {
    display: none;
}

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