/* SOC 2 Evidence Collection SaaS Template - Main Styles */

:root {
  /* Primary Color Palette - 5 colors with light/dark shades */
  --primary-blue: #2563eb;
  --primary-blue-light: #60a5fa;
  --primary-blue-dark: #1d4ed8;
  
  --primary-teal: #0891b2;
  --primary-teal-light: #22d3ee;
  --primary-teal-dark: #0e7490;
  
  --primary-indigo: #6366f1;
  --primary-indigo-light: #a5b4fc;
  --primary-indigo-dark: #4f46e5;
  
  --primary-emerald: #059669;
  --primary-emerald-light: #34d399;
  --primary-emerald-dark: #047857;
  
  --primary-slate: #475569;
  --primary-slate-light: #94a3b8;
  --primary-slate-dark: #334155;
  
  /* Neutral colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
}

/* Global Styles - Conservative Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
}

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

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

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-900);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gray-800);
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-600);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-blue-light) 100%);
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-teal-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 10%;
  left: 10%;
  background: var(--primary-indigo-light);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.service-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

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

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: var(--white);
}

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

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.team-member-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}

.team-member-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: var(--gray-200);
}

/* Reviews/Testimonials Section */
.reviews-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.review-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  height: 100%;
  background-color: var(--gray-50);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.faq-card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  margin-bottom: 1rem;
}

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

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

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.contact-form {
  background-color: var(--gray-50);
  border-radius: 12px;
  padding: 3rem;
}

/* Footer - High Contrast Colors Only */
.footer-section {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 3rem 0 2rem;
}

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

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

.footer-section a:hover {
  color: var(--white);
}

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

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

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

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

/* Price Plan Section */
.priceplan-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.price-card {
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
}

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

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

/* Case Study Section */
.casestudy-section {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.casestudy-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

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

/* Blog Section */
.blog-section {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.blog-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--gray-200);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.about-feature {
  padding: 1.5rem;
  text-align: center;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-indigo);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

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

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

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

.section-subtitle {
  color: var(--primary-blue);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  background-color: var(--gray-200);
}

/* Breadcrumb Styling */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
} 

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


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