/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #0139ae;
  --primary-light: #1a6fff;
  --primary-dark: #012d8a;
  --dark: #1c1c1c;
  --darker: #111111;
  --light: #f4f5f7;
  --grey: #6c757d;
  --white: #ffffff;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: #333;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey);
  margin-bottom: 3rem;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--darker) !important;
  padding: 15px 0;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand span {
  color: var(--primary);
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 18px !important;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.3);
  margin-right: 5px;
}

.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%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 85vh;
  min-height: 500px;
  padding: 0;
  overflow: hidden;
}

.hero-slider .swiper {
  height: 100%;
}

.hero-slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-slider .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-slider .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}

/* ===== BANNER (sub-pages) ===== */
.page-banner {
  position: relative;
  height: 45vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.82) 0%, rgba(17,17,17,0.45) 100%);
}

.page-banner .banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-banner p {
  font-size: 1.15rem;
  opacity: 0.9;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1,57,174,0.45);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 34px;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: var(--transition);
  display: inline-block;
}

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

/* ===== TRUST POINTS ===== */
.trust-points {
  background: var(--dark);
  padding: 60px 0;
}

.trust-item {
  text-align: center;
  color: var(--white);
  padding: 20px;
}

.trust-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.trust-item h5 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-item p {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 0;
}

/* ===== TEXT/IMAGE SECTIONS ===== */
.content-section {
  padding: 80px 0;
}

.content-section.bg-light {
  background: var(--light);
}

.content-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--dark);
}

.content-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.content-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* placeholder for missing images */
.img-placeholder {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  border-radius: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 80px 0;
  background: var(--light);
}

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
  margin: 10px;
  height: 100%;
}

.review-card .stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.review-card .review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card .reviewer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-card .review-date {
  font-size: 0.85rem;
  color: var(--grey);
}

.reviews-slider .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.reviews-slider .swiper-pagination-bullet {
  background: var(--dark);
  opacity: 0.3;
  width: 10px;
  height: 10px;
}

.reviews-slider .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 80px 0;
}

.contact-form .form-control {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(1,57,174,0.2);
}

.contact-form label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-info-card {
  background: var(--dark);
  border-radius: 8px;
  padding: 40px 30px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h4 {
  margin-bottom: 25px;
}

.contact-info-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-card .info-item i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 3px;
}

.contact-info-card .info-item p {
  margin-bottom: 0;
  opacity: 0.85;
}

#form-status {
  display: none;
  margin-top: 15px;
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 0.95rem;
}

#form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--darker);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 25px;
}

.site-footer h5 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.site-footer a {
  color: rgba(255,255,255,0.6);
}

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

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  margin-right: 10px;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== NAVBAR LOGO ===== */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-brand img {
  display: block;
  height: 80px;
  width: auto;
}

/* ===== GRADIENT BUTTON ===== */
.btn-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: var(--transition);
  display: inline-block;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1,57,174,0.45);
}

/* ===== STEP CARDS (boxing structure, etc.) ===== */
.step-cards {
  counter-reset: step;
}

.step-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
  height: 100%;
  position: relative;
  border-top: 3px solid var(--primary);
  transition: var(--transition);
}

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

.step-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.step-card h5 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.step-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== GRADIENT ACCENT DIVIDER ===== */
.accent-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border: none;
  margin: 0 auto 2rem;
}

/* ===== PAGE BANNER no-pad ===== */
.page-banner {
  padding: 120px 0 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .page-banner h1 {
    font-size: 2.2rem;
  }

  section {
    padding: 60px 0;
  }

  /* Image always first on mobile */
  .content-section .row > .col-lg-6:has(> .content-image) {
    order: -1 !important;
  }

  /* Static nav on mobile */
  .navbar.fixed-top {
    position: static;
  }

}

@media (max-width: 767px) {
  .hero-slider {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .page-banner {
    min-height: 300px;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }

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