/* ==============================================
   GUARDIANSHIP SERVICE - MAIN STYLES
   ============================================== */

/* === COLOR VARIABLES === */
:root {
  /* Primary Colors */
  --color-primary: #2d4a5e;
  --color-secondary: #8b5a3c;
  --color-accent: #5c7a89;
  --color-highlight: #d4af37;
  --color-neutral: #6b7280;
  
  /* Light Shades */
  --color-primary-light: #4a6b7f;
  --color-secondary-light: #a67c5a;
  --color-accent-light: #7a9aab;
  --color-highlight-light: #e6c85c;
  --color-neutral-light: #9ca3af;
  
  /* Dark Shades */
  --color-primary-dark: #1e2f3a;
  --color-secondary-dark: #5d3a24;
  --color-accent-dark: #3d5159;
  --color-highlight-dark: #b8941f;
  --color-neutral-dark: #4b5563;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary), var(--color-highlight));
  --gradient-accent: linear-gradient(135deg, var(--color-accent), var(--color-primary-light));
  
  /* Typography */
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --line-height: 1.6;
}

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-family);
  line-height: var(--line-height);
  color: var(--color-primary-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
  line-height: 1.4;
}

h5 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  line-height: var(--line-height);
}

/* === NAVIGATION === */
.navbar {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 74, 94, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand {
    font-size: 12px !important;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.navbar-nav .nav-link {
    font-size: 10px !important;
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-highlight);
}

/* === HERO SECTION === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../MEN_images/mfca_hero-bg.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

/* === SECTIONS === */
.section {
  padding: 4rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--color-neutral);
  font-size: var(--font-size-large);
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(45, 74, 94, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-highlight);
  margin-top: 1rem;
}

/* === FEATURES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--gradient-accent);
  border-radius: 12px;
  color: white;
}

.feature-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-highlight-light);
}

/* === TEAM === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--color-highlight-light);
}

/* === TESTIMONIALS === */
.testimonials-slider {
  margin-top: 3rem;
}

.testimonial-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 0 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: var(--font-size-large);
  color: var(--color-neutral-dark);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
}

/* === CONTACT FORM === */
.contact-form {
  background: var(--gradient-secondary);
  padding: 3rem;
  border-radius: 12px;
  color: white;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: var(--font-size-base);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-highlight-light);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.btn-primary {
  background: var(--color-highlight);
  color: var(--color-primary-dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-highlight-dark);
}

/* === FAQ === */
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(45, 74, 94, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: var(--color-primary-light);
  color: white;
  padding: 1rem;
  margin: 0;
  cursor: pointer;
  font-weight: 500;
}

.faq-answer {
  padding: 1rem;
  background: white;
  color: var(--color-neutral-dark);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* === FOOTER === */
.footer {
  background: var(--color-primary-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h5 {
  color: var(--color-highlight-light);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: var(--color-highlight-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === BREADCRUMBS === */
.breadcrumb {
  padding: 1rem 0;
  background: rgba(45, 74, 94, 0.05);
}

.breadcrumb img {
  max-height: 30px;
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.py-5 { padding: 2.5rem 0; }
.py-4 { padding: 2rem 0; }
.py-3 { padding: 1.5rem 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
  }
}

/* === PRICE PLAN === */
.price-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-plan-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-plan-item:hover {
  border-color: var(--color-highlight);
  transform: translateY(-5px);
}

.price-plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-highlight);
  margin: 1rem 0;
}

.price-plan-features {
  list-style: none;
  margin: 1.5rem 0;
}

.price-plan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(45, 74, 94, 0.1);
}

/* === CASE STUDIES === */
.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.casestudy-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--color-highlight);
}

/* === PROCESS STEPS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-item {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

/* === TIMELINE === */
.timeline-container {
  margin-top: 3rem;
}

.timeline-item {
  padding: 2rem;
  margin-bottom: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--color-accent);
}

/* === CAREER === */
.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.career-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--color-secondary);
}

/* === CORE INFO === */
.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  background: var(--gradient-accent);
  color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--color-highlight);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
} 