/* Behemoth Security – ProGuards-inspired theme */
:root {
  --md-primary: #FFE401; /* ProGuards primary yellow */
  --md-primary-dark: #181818; /* ProGuards dark */
  --md-accent: #FFE401;
  --md-ink: #181818;
  --md-gray: #f6f7f9;
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .section-title, .navbar-brand {
  font-family: "Red Hat Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
}

.navbar-brand strong { letter-spacing: 0.2px; }

/* Hero Carousel Styles */
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slides {
  height: 100vh;
}

.hero-slides .carousel-inner {
  height: 100vh;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Fix carousel item display issues */
.hero-carousel .carousel-item {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel .carousel-item:not(.active) {
  display: none;
}

.hero-carousel .carousel-item.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24,24,24,0.7) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding-top: 120px;
  padding-bottom: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 240px);
}

.hero-pretitle {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: #e0e0e0;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-pretitle .accent-bar {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--md-primary);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 32px;
  color: #e0e0e0;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Carousel controls and indicators styling */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 228, 1, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.hero-carousel .carousel-control-prev {
  left: 30px;
}

.hero-carousel .carousel-control-next {
  right: 30px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  opacity: 1;
  background: rgba(255, 228, 1, 0.2);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

.carousel-indicators {
  bottom: 30px;
  gap: 8px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid var(--md-primary);
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--md-primary);
  transform: scale(1.2);
}

/* Carousel transition effects - only for active transitions */
.hero-carousel .carousel-item.active {
  transition: transform 0.8s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel .carousel-item {
    transition: none;
  }
}

/* Responsive hero */
@media (max-width: 768px) {
  .hero-carousel {
    height: 100vh;
    min-height: 600px;
  }

  .hero-slide {
    height: 100vh;
    min-height: 600px;
  }

  .hero-slides,
  .hero-slides .carousel-inner {
    height: 100vh;
    min-height: 600px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
  }

  .hero-carousel .carousel-control-prev {
    left: 15px;
  }

  .hero-carousel .carousel-control-next {
    right: 15px;
  }

  .carousel-indicators {
    bottom: 20px;
  }
}

.section-title { font-weight: 700; letter-spacing: .2px; }

.md-btn {
  background: var(--md-primary);
  color: var(--md-ink);
  border: none;
  border-radius: .5rem;
  padding: .75rem 1.25rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 228, 1, .35);
}
.md-btn:hover {
  background: #e6cc01;
  color: var(--md-ink);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 228, 1, .45);
}

.icon-lg { font-size: 40px; color: var(--md-primary); }

.card-elevated { box-shadow: 0 8px 20px rgba(0,0,0,.08); border: none; }

/* Footer Styles */
.footer {
  background: var(--md-primary-dark);
  color: #cfd8dc;
  overflow: hidden;
}

.footer .col-lg-4 p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-brand {
  font-size: 1.25rem;
  color: white;
  display: flex;
  align-items: center;
}

.footer-brand .material-symbols-outlined {
  color: var(--md-primary);
  font-size: 24px;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cfd8dc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--md-primary);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}

.footer-contact .material-symbols-outlined {
  color: var(--md-primary);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: #cfd8dc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--md-primary);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 228, 1, 0.1);
  border-radius: 8px;
  color: var(--md-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--md-primary);
  color: var(--md-ink);
  transform: translateY(-2px);
}

.social-icon {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem 0;
}

.footer-bottom {
  padding-top: 1rem;
  font-size: 0.9rem;
}

.footer-legal a {
  color: #cfd8dc;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--md-primary);
}

.form-control:focus { border-color: var(--md-primary); box-shadow: 0 0 0 .25rem rgba(255, 228, 1, .15); }

/* New theme sections to match reference design */
.topbar { background: var(--md-primary-dark); color:#cfd8dc; font-size:12px; }
.topbar a { color:#cfd8dc; text-decoration:none; }
.topbar .dot { width:4px; height:4px; background:#cfd8dc; border-radius:50%; display:inline-block; margin:0 8px; opacity:.6; }

.yellow-strip { background: var(--md-accent); color:#111; }
.yellow-strip .btn-outline-dark { border-color:#111; color:#111; }
.yellow-strip .btn-outline-dark:hover { background:#111; color:#fff; }

/* ProGuards-style Service Cards */
.proguards-service-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proguards-service-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
  transform: translateY(-3px);
  border-color: var(--md-primary);
}

.proguards-service-card .service-icon {
  width: 70px;
  height: 70px;
  background: var(--md-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.proguards-service-card .service-icon .material-symbols-outlined {
  font-size: 32px;
  color: var(--md-ink);
}

.proguards-service-card .service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.proguards-service-card .service-title {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

.proguards-service-card .service-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.proguards-service-card .service-title a:hover {
  color: var(--md-primary);
}

.proguards-service-card .service-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  flex: 1;
}

.proguards-service-card .service-link {
  color: var(--md-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.proguards-service-card .service-link:hover {
  color: var(--md-ink);
}

/* Enhanced Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--md-primary) 0%, #e6cc01 100%);
  color: var(--md-ink);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-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 60 60"><circle cx="30" cy="30" r="1" fill="%23000" opacity="0.1"/></svg>');
  pointer-events: none;
}

.stats-section .section-title,
.stats-section .text-muted {
  color: var(--md-ink);
}

.enhanced-stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 20px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.enhanced-stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-icon .material-symbols-outlined {
  font-size: 28px;
  color: var(--md-ink);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 4px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Enhanced Mission/Vision Section */
.mission-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
}

.mission-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--md-primary), #e6cc01);
}

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

.vision-card::before {
  background: linear-gradient(90deg, #e6cc01, var(--md-primary));
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: var(--md-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.mission-icon .material-symbols-outlined {
  font-size: 32px;
  color: var(--md-ink);
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.mission-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.values-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--md-primary), #e6cc01);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon .material-symbols-outlined {
  font-size: 28px;
  color: var(--md-ink);
}

.value-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.value-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Enhanced Technology Section */
.technology-section {
  padding: 100px 0;
  background: white;
}

.tech-image-wrapper {
  position: relative;
}

.tech-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.tech-badge {
  background: var(--md-primary);
  color: var(--md-ink);
  padding: 12px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 228, 1, 0.3);
}

.tech-content .pretitle {
  color: var(--md-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tech-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.feature-bullet {
  background: var(--md-primary);
  color: var(--md-ink);
  border-radius: 50%;
  font-size: 18px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text {
  font-weight: 500;
  color: #333;
}

.tech-stats {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  margin-top: 30px;
}

.mini-stat {
  text-align: center;
}

.mini-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--md-primary);
  line-height: 1;
}

.mini-stat-label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
}

/* Enhanced FAQs Section */
.faqs-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.faqs-intro {
  padding-right: 30px;
}

.faqs-intro .pretitle {
  color: var(--md-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.faq-stats {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.faq-stat {
  text-align: center;
}

.faq-stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--md-primary);
  line-height: 1;
}

.faq-stat-label {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
}

.enhanced-accordion-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.enhanced-accordion-item:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.enhanced-accordion-button {
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: #333;
  position: relative;
}

.enhanced-accordion-button:focus {
  box-shadow: none;
  border: none;
}

.enhanced-accordion-button:not(.collapsed) {
  background: var(--md-primary);
  color: var(--md-ink);
}

.enhanced-accordion-button:not(.collapsed) .question-icon {
  background: rgba(24, 24, 24, 0.1);
}

.question-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 228, 1, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.question-text {
  flex: 1;
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.enhanced-accordion-button:not(.collapsed) .toggle-icon {
  transform: rotate(180deg);
}

.enhanced-accordion-body {
  padding: 0 25px 25px 80px;
  color: #666;
  line-height: 1.6;
}

/* Enhanced CTA Section */
.enhanced-cta-section {
  padding: 100px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24,24,24,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: white;
  padding-right: 30px;
}

.cta-pretitle {
  color: var(--md-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.cta-feature .material-symbols-outlined {
  background: var(--md-primary);
  color: var(--md-ink);
  border-radius: 50%;
  padding: 8px;
  font-size: 20px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.enhanced-cta-card {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.enhanced-cta-card .card-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.enhanced-cta-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.enhanced-cta-card .card-subtitle {
  color: #666;
  margin: 0;
}

.quick-contact-form .form-group {
  margin-bottom: 20px;
}

.quick-contact-form .form-floating > .form-control {
  border-radius: 10px;
  border: 2px solid #eee;
  padding: 1rem 0.75rem;
}

.quick-contact-form .form-floating > .form-control:focus {
  border-color: var(--md-primary);
  box-shadow: 0 0 0 0.25rem rgba(255, 228, 1, 0.15);
}

.quick-contact-form .form-floating > label {
  padding: 1rem 0.75rem;
}

/* Enhanced Contact Section */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.contact-info-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--md-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon .material-symbols-outlined {
  font-size: 24px;
  color: var(--md-ink);
}

.contact-details h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.contact-details p {
  margin-bottom: 5px;
}

.contact-details a {
  color: var(--md-primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-details small {
  color: #666;
  font-size: 0.85rem;
}

.contact-guarantees {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-guarantees h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #333;
}

.guarantee-item .material-symbols-outlined {
  color: var(--md-primary);
  font-size: 20px;
}

.enhanced-contact-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.enhanced-contact-form .form-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.enhanced-contact-form .form-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.enhanced-contact-form .form-header p {
  color: #666;
  margin: 0;
}

.contact-form .form-floating > .form-control,
.contact-form .form-floating > .form-select {
  border-radius: 10px;
  border: 2px solid #eee;
  padding: 1rem 0.75rem;
}

.contact-form .form-floating > .form-control:focus,
.contact-form .form-floating > .form-select:focus {
  border-color: var(--md-primary);
  box-shadow: 0 0 0 0.25rem rgba(255, 228, 1, 0.15);
}

.contact-form .form-floating > label {
  padding: 1rem 0.75rem;
}

.form-footer-text {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 15px;
  margin-bottom: 0;
}

/* Enhanced Articles Section */
.articles-section {
  padding: 100px 0;
  background: white;
}

.articles-section .pretitle {
  color: var(--md-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.enhanced-blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.enhanced-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.blog-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.enhanced-blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.blog-category {
  background: var(--md-primary);
  color: var(--md-ink);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.8rem;
  color: #666;
}

.read-time,
.publish-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.read-time .material-symbols-outlined,
.publish-date .material-symbols-outlined {
  font-size: 16px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.blog-footer {
  margin-top: auto;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--md-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: var(--md-ink);
  gap: 12px;
}

.read-more-link .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.read-more-link:hover .material-symbols-outlined {
  transform: translateX(3px);
}

.cta-overlay { position:relative; background-size:cover; background-position:center; }
.cta-overlay::after { content:""; position:absolute; inset:0; background:rgba(0,0,0,.45); }
.cta-overlay .cta-card { position:relative; z-index:1; background:#fff; border-radius:14px; box-shadow:0 12px 30px rgba(0,0,0,.15); }

.blog-card { border:none; border-radius:14px; box-shadow:0 8px 22px rgba(0,0,0,.06); }
.blog-card img { border-top-left-radius:14px; border-top-right-radius:14px; height:180px; object-fit:cover; }

/* Transparent navbar on hero, sticky on scroll */
.nav-transparent { position:absolute; top:0; left:0; right:0; background:transparent !important; z-index:1000; }
.navbar-sticky { position:fixed !important; top:0; left:0; right:0; background: var(--md-primary-dark) !important; box-shadow:0 6px 20px rgba(0,0,0,.25); }
.navbar-sticky .navbar-brand, .navbar-sticky .nav-link { color:#fff !important; }

/* Enhanced About Section */
.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
  position: relative;
}

.about-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.min-vh-50 {
  min-height: 50vh;
}

.about-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-overlay-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--md-primary);
  color: var(--md-ink);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 228, 1, 0.4);
  font-weight: 600;
}

.about-overlay-badge .material-symbols-outlined {
  font-size: 20px;
}

.about-overlay-badge .badge-text small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.about-content {
  padding-left: 20px;
}

.about-content .pretitle {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--md-primary);
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}

.about-content .pretitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--md-primary);
}

.about-content .section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #333;
}

.about-content .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.feature-item .material-symbols-outlined {
  background: var(--md-primary);
  color: var(--md-ink);
  padding: 10px;
  border-radius: 8px;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-item strong {
  font-weight: 600;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-section {
    padding: 60px 0;
  }

  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .about-content .section-title {
    font-size: 2rem;
  }
}

/* Mid hero */
.mid-hero { position:relative; background-size:cover; background-position:center; min-height: 50vh; }
.mid-hero::after { content:""; position:absolute; inset:0; background:rgba(0,0,0,.45); }

/* Checklist */
.checklist li { display:flex; align-items:flex-start; gap:8px; margin-bottom:8px; }
.checklist li .bullet { width:18px; height:18px; background:var(--md-accent); border-radius:6px; display:inline-flex; align-items:center; justify-content:center; font-size:14px; line-height:1; color:#111; }

/* Navigation Dropdown Styles */
.navbar-nav .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.navbar-nav .dropdown-item {
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
  background: var(--md-primary);
  color: var(--md-ink);
}

.navbar-nav .dropdown-divider {
  margin: 0.5rem 0;
  border-color: rgba(0,0,0,.1);
}

/* About Page Styles */
.about-highlights {
  margin: 2rem 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.75rem;
}

.highlight-item .material-symbols-outlined {
  color: var(--md-primary);
  font-size: 20px;
}

.about-image-wrapper {
  position: relative;
}

.about-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-content .material-symbols-outlined {
  color: var(--md-primary);
  font-size: 24px;
}

.badge-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--md-ink);
}

.badge-subtitle {
  font-size: 0.8rem;
  color: #666;
}

/* Mission & Vision Cards */
.mission-card, .vision-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.mission-icon, .vision-icon {
  background: var(--md-primary);
  color: var(--md-ink);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-title, .vision-title {
  color: var(--md-ink);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mission-text, .vision-text {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Value Cards */
.value-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-icon {
  background: var(--md-primary);
  color: var(--md-ink);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.value-title {
  color: var(--md-ink);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.value-description {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--md-primary-dark) 0%, #2c2c2c 100%);
  color: white;
}

.cta-title {
  color: white;
  font-weight: 700;
}

.cta-text {
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* Services Page Styles */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
  background: var(--md-primary);
  color: var(--md-ink);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-title {
  color: var(--md-ink);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--md-primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--md-primary-dark);
}

.service-link .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.service-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* Why Choose Us Section */
.why-features {
  margin-top: 2rem;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  background: var(--md-primary);
  color: var(--md-ink);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-content h5 {
  color: var(--md-ink);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.why-image-wrapper {
  position: relative;
}

.why-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--md-primary);
  color: var(--md-ink);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.badge-number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

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

.step-number {
  background: var(--md-primary);
  color: var(--md-ink);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1.5rem auto;
}

.step-content h5 {
  color: var(--md-ink);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Services CTA */
.services-cta {
  background: var(--md-primary);
  color: var(--md-ink);
}

.cta-wrapper {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
}

.services-cta .cta-title {
  color: var(--md-ink);
  font-weight: 700;
  margin: 0;
}

.services-cta .cta-text {
  color: rgba(24,24,24,0.8);
  margin: 0.5rem 0 0 0;
}

/* Button styling in navbar */
.navbar .btn {
  font-weight: 600;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar .btn-outline-light {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
}

.navbar .btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
}
