/* ====================================
   CYBERSECURITY AUDITS TEMPLATE
   Bootstrap 5 + Custom Variables
   ==================================== */

:root {
  /* Primary Color Palette - Cybersecurity Theme */
  --primary-navy: #0f172a;
  --primary-navy-light: #1e293b;
  --primary-navy-dark: #020617;
  
  --primary-blue: #1d4ed8;
  --primary-blue-light: #3b82f6;
  --primary-blue-dark: #1e40af;
  
  --primary-cyan: #0891b2;
  --primary-cyan-light: #06b6d4;
  --primary-cyan-dark: #0e7490;
  
  --primary-emerald: #059669;
  --primary-emerald-light: #10b981;
  --primary-emerald-dark: #047857;
  
  --primary-slate: #64748b;
  --primary-slate-light: #94a3b8;
  --primary-slate-dark: #475569;
  
  /* Additional Support Colors */
  --accent-orange: #ea580c;
  --accent-red: #dc2626;
  --neutral-white: #ffffff;
  --neutral-light: #f8fafc;
  --neutral-dark: #1e293b;
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-slate-dark);
  background-color: var(--neutral-white);
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-navy);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-navy);
}

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

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

/* Header Styles */
.navbar {
  background-color: var(--neutral-white);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-slate-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  z-index: 1;
}

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

/* Section Spacing */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

/* Button Styles */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 6px;
}

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

/* Card Styles */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

.card-header {
  background-color: var(--neutral-light);
  border-bottom: 1px solid var(--primary-slate-light);
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

/* Service Cards */
.service-card {
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary-blue);
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary-blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--neutral-white);
  font-size: 1.5rem;
}

.price-tag {
  background-color: var(--primary-emerald);
  color: var(--neutral-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Team Member Cards */
.team-member {
  text-align: center;
  background: var(--neutral-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 100%;
  height: 250px;
  background-color: var(--primary-slate-light);
  background-size: cover;
  background-position: center;
}

.team-info {
  padding: 1.5rem;
}

/* Review/Testimonials */
.review-card {
  background: var(--neutral-white);
  border-left: 4px solid var(--primary-blue);
  padding: 2rem;
  margin-bottom: 2rem;
}

.review-text {
  font-style: italic;
  color: var(--primary-slate);
  margin-bottom: 1rem;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-blue-light);
  position: absolute;
  left: -1rem;
  top: -1rem;
}

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

/* FAQ Section */
.faq-card {
  margin-bottom: 1.5rem;
  border: 1px solid var(--primary-slate-light);
}

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

.faq-answer {
  padding: 1.5rem;
  background-color: var(--neutral-white);
  color: var(--primary-slate);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background-color: var(--neutral-light);
  padding: 3rem;
  border-radius: 12px;
}

.form-control {
  border: 2px solid var(--primary-slate-light);
  border-radius: 6px;
  padding: 12px 16px;
  transition: border-color 0.3s ease;
}

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

/* Footer */
.footer {
  background-color: var(--primary-navy);
  color: var(--neutral-white);
  padding: 3rem 0 1rem;
}

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

.footer p,
.footer a {
  color: var(--primary-slate-light);
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid var(--primary-navy-light);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

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

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

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

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

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

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

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1rem;
  bottom: -2rem;
  width: 2px;
  background-color: var(--primary-slate-light);
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 0;
  margin: 1rem 0;
}

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

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-light-pattern {
  background-color: var(--neutral-light);
  background-image: radial-gradient(circle at 1px 1px, var(--primary-slate-light) 1px, transparent 0);
  background-size: 20px 20px;
}

/* Decorative Elements */
.blob-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-blue);
  top: 20%;
  right: 10%;
}

.blob-2 {
  width: 150px;
  height: 150px;
  background-color: var(--primary-cyan);
  bottom: 30%;
  left: 5%;
}


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

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

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

.x-link {
    position: relative;
}

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

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

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

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