:root {
  /* Primary Color Palette - High Contrast Pastels */
  --primary-blue: #3f8aef;
  --primary-blue-light: #67a6d6;
  --primary-blue-dark: #2d5a9c;
  
  --primary-green: #5bc11d;
  --primary-green-light: #c5f9a5;
  --primary-green-dark: #3e920f;
  
  --primary-orange: #ff8d23;
  --primary-orange-light: #fff100;
  --primary-orange-dark: #e0840b;
  
  --primary-red: #c50018;
  --primary-red-light: #f87873;
  --primary-red-dark: #891a20;
  
  --primary-purple: #7403ff;
  --primary-purple-light: #998bc6;
  --primary-purple-dark: #6b00df;
  
  /* Background & Text */
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --text-dark: #1d1b1b;
  --text-light: #5f5f5f;
  --text-muted: #857f7f;
  
  /* Conservative font sizes */
  --font-size-base: 16px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.4rem;
  --font-size-brand: 1.3rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
.navbar-brand {
  font-size: var(--font-size-brand) !important;
  font-weight: 700;
  color: var(--primary-blue-dark) !important;
}

.navbar {
  padding: 1rem 0;
  background: var(--bg-white) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

/* Navbar Toggler */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 147, 210, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-purple-light));
  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('../images/hero-security-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--primary-blue-dark);
  margin-bottom: 1rem;
}

.hero-section .lead {
  font-size: 1.24rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Services Section */
.services-card {
  background: var(--bg-white);
  border-radius: 19px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 13px 210px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary-green);
}

.services-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.services-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.services-card h4 {
  color: var(--primary-blue-dark);
  margin-bottom: 1rem;
  font-size: var(--font-size-h3);
}

.services-price {
  font-size: 1.60rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* Team Section */
.team-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary-orange-light);
}

/* Reviews/Testimonials */
.review-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-top: 3px solid var(--primary-orange);
}

.review-stars {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-card {
  background: var(--bg-white);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid #dddee1;
  overflow: hidden;
}

.faq-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-green-light));
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-body {
  padding: 1.5rem;
  background: var(--bg-white);
  display: none;
}

.faq-card.active .faq-body {
  display: block;
}

/* Contact Form */
.contact-form {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid #edeff1;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(58, 112, 211, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-green-dark));
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-purple-dark));
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-orange-light);
  margin-bottom: 1rem;
}

.footer a {
  color: #d2cacb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-orange-light);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--primary-blue-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.18rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-green-light));
}

/* Process Section */
.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.52rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Blog Section */
.btn-outline-primary {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--bg-light);
  text-align: center;
}

.breadcrumb-section img {
  width: 100px;
  height: 60px;
  object-fit: contain;
} 


/* 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;
}

.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;
    }
}
