/* Main CSS - Cybersecurity Audits Template */

/* Color Palette - 5 primary colors with light/dark shades */
:root {
  --primary-blue: #1a3dd3;
  --primary-blue-light: #2c5eff;
  --primary-blue-dark: #2a69d7;
  
  --primary-slate: #4b597b;
  --primary-slate-light: #5a6e7d;
  --primary-slate-dark: #2d3240;
  
  --primary-emerald: #008a75;
  --primary-emerald-light: #18a15e;
  --primary-emerald-dark: #05915c;
  
  --primary-amber: #c45b0a;
  --primary-amber-light: #e9951e;
  --primary-amber-dark: #c45f1b;
  
  --primary-red: #d32642;
  --primary-red-light: #e94d58;
  --primary-red-dark: #b62327;
  
  --text-primary: #111521;
  --text-secondary: #797e84;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #eaeaea;
}

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

/* Global Styles */
html, body {
  overflow-x: hidden;
}

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

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

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

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

h6 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

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

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

.section-sm {
  padding: 60px 0;
}

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

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

.hero-shape-1 {
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Card Styles */
.card-custom {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Services Cards */
.service-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border: 1px solid var(--border-light);
}

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

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

/* Team Member Cards */
.team-member {
  text-align: center;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-light);
}

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

/* Testimonial Cards */
.testimonial-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--primary-blue);
  height: 100%;
}

/* FAQ Cards */
.faq-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
}

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

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

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline-custom {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

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

/* Contact Form */
.contact-form {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-light);
}

.form-control-custom {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control-custom:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(57, 124, 226, 0.25);
}

/* Footer - High contrast colors only, no gradients */
.footer {
  background-color: var(--text-primary);
  color: var(--bg-white);
  padding: 60px 0 20px;
}

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

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

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

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

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

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

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--bg-light);
}

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

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  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 */
.timeline-item {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-emerald);
}

/* Case Studies */
.case-study-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  height: 100%;
}

/* Price Plans */
.price-plan-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-light);
  height: 100%;
  position: relative;
}

.price-plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1rem 0;
}

.price-plan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-plan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

/* Career Cards */
.career-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

/* Core Info */
.core-info-item {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  height: 100%;
}

.core-info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-emerald);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

/* Blog Cards */
.blog-card {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  height: 100%;
}

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

.blog-card-body {
  padding: 1.5rem;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-blue);
}

.text-secondary-custom {
  color: var(--text-secondary);
}

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

.border-custom {
  border: 1px solid var(--border-light);
} 

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


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