/* BRAKIM Security Limited - Custom Stylesheet */
/* ============================================ */

@charset "UTF-8";

/* ----- Variables ----- */
:root {
  --brand: #D22B2B;
  --brand-dark: #B01E1E;
  --brand-light: #E84A4A;
  --dark: #0B1422;
  --dark-2: #111C2E;
  --dark-3: #1A2A42;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --text: #2D3748;
  --text-light: #718096;
  --white: #FFFFFF;
  --font: 'Barlow', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --radius: 8px;
  --radius-lg: 16px;
  --navy: #0B1422;
  --navy-light: #1A2A42;
}

/* ----- Reset ----- */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

a { color: var(--brand); text-decoration: none; transition: .3s; }
a:hover { color: var(--brand-dark); }

img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
[class*="col-"] { padding: 0 15px; }
.col-12 { width: 100%; }
.col-6 { width: 50%; }

@media (min-width:768px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333%; }
  .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.667%; }
}
@media (min-width:992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333%; }
  .col-lg-5 { width: 41.667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333%; }
  .col-lg-8 { width: 66.667%; }
  .col-lg-12 { width: 100%; }
}
@media (min-width:1200px) {
  .col-xl-3 { width: 25%; }
  .col-xl-4 { width: 33.333%; }
  .col-xl-6 { width: 50%; }
  .col-xl-8 { width: 66.667%; }
  .col-xl-9 { width: 75%; }
}

/* ----- Preloader ----- */
#preloader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--white); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: .5s;
}
#preloader.fade-out { opacity: 0; pointer-events: none; }
.preloader-logo { width: 60px; height: 60px; animation: pulse 1s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.preloaderCls { display: none; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-family: var(--font); font-weight: 600; font-size: 15px;
  cursor: pointer; transition: .3s; border: none; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary { background: var(--brand); color: var(--white); }
.btn-primary:hover { background: var(--brand-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ----- Header ----- */
.header-top {
  background: var(--dark);
  padding: 8px 0;
  font-size: 13px;
  color: var(--gray-400);
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.header-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.header-links li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header-links a { color: var(--gray-400); }
.header-links a:hover { color: var(--white); }
.header-links i { color: var(--brand); }
.header-social { display: flex; align-items: center; gap: 10px; }
.header-social .social-title { color: var(--gray-500); margin-right: 4px; }
.header-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  color: var(--gray-400); transition: .3s;
}
.header-social a:hover { color: var(--brand); }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-main {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}
.header-main.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.header-logo img { height: 55px; width: auto; display: block; }
.main-nav ul { display: flex; gap: 2px; }
.main-nav a {
  padding: 8px 14px;
  color: var(--text);
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: .3s;
  position: relative;
}
.main-nav a:hover,
.main-nav a.active,
.dropdown:hover > a,
.dropdown:focus-within > a {
  background: var(--gray-100);
  color: var(--brand);
}
.header-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: .3s;
  white-space: nowrap;
}
.header-btn:hover {
  background: var(--brand-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ----- Floating WhatsApp Button ----- */
.float-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  animation: pulse 2s infinite;
  transition: all .3s ease;
}

.float-whatsapp:hover {
  background: var(--brand-dark);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(210,43,43,.3);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(210,43,43,.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(210,43,43,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(210,43,43,0);
  }
}

.dropdown > a::after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  margin-left: 8px;
  transition: .3s;
}
.dropdown:hover > a::after,
.dropdown:focus-within > a::after {
  transform: rotate(180deg);
}

.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 2000;
  padding: 12px;
  columns: 2;
  column-gap: 8px;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 6px;
  color: var(--text);
  break-inside: avoid;
}
.dropdown-menu a:hover { background: var(--gray-100); color: var(--brand); }

.mobile-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--dark); cursor: pointer; }

@media (max-width:991px) {
  .mobile-toggle { display: block; }
  .header-btn { display: none; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); box-shadow: var(--shadow-lg); z-index: 100; padding: 20px; border-top: 2px solid var(--brand); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 12px 16px; }
  .dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding-left: 20px; display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .header-main { position: relative; }
}

/* ----- Hero ----- */
.hero {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(11,20,34,.5) 20%, rgba(11,20,34,.2) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 700px; }
.hero-subtitle {
  font-family: var(--font); font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--brand); margin-bottom: 20px; display: block;
}
.hero-title { font-size: 48px; margin-bottom: 20px; color: var(--white); }
.hero-text { font-size: 18px; color: var(--gray-400); margin-bottom: 35px; line-height: 1.8; max-width: 580px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-slider .swiper-slide { min-height: 85vh; display: flex; align-items: center; }
.swiper-pagination-bullet { background: var(--gray-500); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--brand); width: 30px; border-radius: 4px; }
.swiper-button-next, .swiper-button-prev { color: var(--white); }

@media (max-width:767px) {
  .hero-title { font-size: 32px; }
  .hero-text { font-size: 16px; }
  .hero-content { padding: 60px 0; }
  .hero, .hero-slider .swiper-slide { min-height: 60vh; }
}

/* ----- Sections ----- */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-gray { background: var(--gray-100); }

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .subtitle {
  font-family: var(--font); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--brand); margin-bottom: 12px; display: block;
}
.section-title h2 { font-size: 36px; margin-bottom: 15px; }
.section-title p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 17px; }
.section-title.light h2 { color: var(--white); }
.section-title.light p { color: var(--gray-400); }

.text-center { text-align: center; }
.text-brand { color: var(--brand); }

@media (max-width:767px) {
  .section { padding: 60px 0; }
  .section-title h2 { font-size: 28px; }
}

/* ----- About Section ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; display: block; }
.about-content h2 { font-size: 36px; margin-bottom: 20px; }
.about-content p { color: var(--text-light); margin-bottom: 20px; font-size: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature i { color: var(--brand); font-size: 18px; margin-top: 3px; }
.about-feature h4 { font-size: 15px; margin-bottom: 2px; }
.about-feature p { font-size: 13px; color: var(--text-light); margin: 0; }

.counter-grid { display: flex; gap: 40px; margin-top: 30px; }
.counter-item { text-align: center; }
.counter-item .number { font-family: var(--font); font-weight: 800; font-size: 36px; color: var(--brand); }
.counter-item .label { font-size: 14px; color: var(--text-light); }

@media (max-width:991px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ----- Services ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: .3s;
  border: 1px solid var(--gray-200);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.service-card .icon {
  width: 60px; height: 60px;
  background: rgba(210,43,43,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--brand);
}
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card h3 a { color: var(--dark); }
.service-card h3 a:hover { color: var(--brand); }
.service-card p { color: var(--text-light); font-size: 15px; margin-bottom: 18px; line-height: 1.7; }
.service-card .service-link {
  font-family: var(--font); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--brand); display: inline-flex; align-items: center; gap: 6px;
}

@media (max-width:991px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:576px) { .services-grid { grid-template-columns: 1fr; } }

/* ----- Why Choose Us ----- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 25px; margin-top: 30px; }
.why-item { display: flex; gap: 15px; }
.why-item .num {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 700; font-size: 15px;
}
.why-item h4 { font-size: 17px; margin-bottom: 5px; }
.why-item p { font-size: 14px; color: var(--text-light); margin: 0; }

@media (max-width:991px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ----- Clients / Projects ----- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.client-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: .3s;
}
.client-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.client-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.client-card .body { padding: 20px; }
.client-card .body h4 { font-size: 16px; margin-bottom: 4px; }
.client-card .body p { font-size: 13px; color: var(--text-light); margin: 0; }

@media (max-width:991px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:576px) { .clients-grid { grid-template-columns: 1fr; } }

/* ----- Testimonials ----- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .stars { color: #FFB539; margin-bottom: 15px; }
.testimonial-card blockquote {
  font-size: 16px; line-height: 1.8;
  color: var(--text); font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); font-size: 20px;
}
.testimonial-card .author h4 { font-size: 15px; margin-bottom: 2px; }
.testimonial-card .author span { font-size: 13px; color: var(--text-light); }

/* ----- CTA ----- */
.cta {
  background: #F5F6FA;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  pointer-events: none;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  pointer-events: none;
}
.cta h2 { color: var(--dark); font-size: 36px; margin-bottom: 15px; position: relative; z-index:1; }
.cta p { color: var(--text-light); font-size: 17px; max-width: 600px; margin: 0 auto 30px; position: relative; z-index:1; }
.cta div[style] { position: relative; z-index:1; }
.cta .btn-outline { border-color: var(--dark); color: var(--dark); }
.cta .btn-outline:hover { background: var(--dark); color: var(--white); }

/* About Page Cards */
.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  text-align: center;
  transition: .3s;
}
.about-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: var(--brand); }
.about-card .icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: rgba(210,43,43,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--brand);
}
.about-card h3 { font-size: 20px; margin-bottom: 12px; }
.about-card p { color: var(--text-light); font-size: 14px; line-height: 1.8; }

/* ----- Footer ----- */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  font-size: 14px;
}
.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer h3 {
  font-family: var(--font); font-weight: 700; font-size: 16px;
  color: var(--white); margin-bottom: 20px; text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 55px; width: auto; display: block; }
.footer p { line-height: 1.8; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); transition: .3s;
}
.footer-social a:hover { background: var(--brand); border-color: var(--brand); color: var(--white); }

.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--gray-400); }
.footer-links a:hover { color: var(--brand); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 18px; }
.footer-contact-item i { color: var(--brand); margin-top: 3px; font-size: 16px; width: 18px; }
.footer-contact-item a { color: var(--gray-400); }
.footer-contact-item a:hover { color: var(--brand); }

.footer-bottom {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--gray-500); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--white); }

@media (max-width:991px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:576px) { .footer-grid { grid-template-columns: 1fr; } }

/* ----- Contact Page ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-card {
  display: flex; gap: 15px; margin-bottom: 30px;
}
.contact-info-card .icon {
  width: 50px; height: 50px; min-width: 50px;
  background: rgba(210,43,43,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 20px;
}
.contact-info-card h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--text-light); margin: 0; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px;
  transition: .3s; background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(210,43,43,.12); }
textarea.form-control { min-height: 130px; resize: vertical; }

.alert-success {
  background: #D4EDDA; color: #155724;
  padding: 12px 20px; border-radius: var(--radius);
  margin-bottom: 20px; border: 1px solid #C3E6CB;
}

/* ----- Services Page ----- */
.breadcrumb {
  background: var(--dark);
  padding: 40px 0;
  text-align: center;
}
.breadcrumb h1 { color: var(--white); font-size: 32px; margin-bottom: 8px; }
.breadcrumb a { color: var(--gray-400); font-size: 14px; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { color: var(--gray-500); font-size: 14px; }

/* ----- FAQ ----- */
.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-header {
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: .3s;
}
.accordion-header:hover { background: var(--gray-100); }
.accordion-header i { transition: .3s; font-size: 14px; }
.accordion-header.active i { transform: rotate(180deg); }
.accordion-body {
  padding: 0 20px 20px;
  color: var(--text-light);
  font-size: 15px;
  display: none;
}
.accordion-body.open { display: block; }

/* ----- Pricing ----- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: .3s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.pricing-card.featured { border-color: var(--brand); position: relative; }
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: var(--white); padding: 4px 20px;
  border-radius: 20px; font-size: 12px; font-weight: 600;
  font-family: var(--font); text-transform: uppercase; letter-spacing: 1px;
}
.pricing-card h3 { font-size: 20px; margin-bottom: 10px; }
.pricing-card .price { font-size: 14px; color: var(--text-light); margin-bottom: 25px; }
.pricing-features { text-align: left; margin-bottom: 25px; }
.pricing-features li {
  padding: 8px 0; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-features li i { color: var(--brand); }
.pricing-features li.unavailable { color: var(--gray-400); }
.pricing-features li.unavailable i { color: var(--gray-400); }

@media (max-width:991px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* ----- Scroll to Top ----- */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: .3s; z-index: 99;
  box-shadow: var(--shadow);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--brand-dark); transform: translateY(-3px); }

/* ----- Utilities ----- */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.gap-30 { gap: 30px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.text-light { color: var(--text-light); }
.text-white { color: var(--white); }
.w-100 { width: 100%; }

/* ----- Mobile Navigation ----- */
.th-menu-wrapper {
  display: none;
}
.mobile-nav-open .th-menu-wrapper {
  display: block;
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.6); z-index: 999;
}
.th-menu-area {
  position: fixed; top: 0; right: -320px; width: 320px; height: 100%;
  background: var(--white); z-index: 1000;
  padding: 30px; transition: .3s;
  overflow-y: auto;
}
.mobile-nav-open .th-menu-area { right: 0; }
.th-menu-toggle { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--dark); }
.mobile-logo { margin-bottom: 30px; }
.mobile-logo img { height: 40px; }
.th-mobile-menu ul { list-style: none; }
.th-mobile-menu a {
  display: block; padding: 10px 0;
  color: var(--text); font-family: var(--font); font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}
.th-mobile-menu a:hover { color: var(--brand); }
.th-mobile-menu .sub-menu { padding-left: 20px; display: none; }
.th-mobile-menu .menu-item-has-children.open > .sub-menu { display: block; }

/* ----- 404 ----- */
.error-page { text-align: center; padding: 100px 0; }
.error-page h1 { font-size: 120px; color: var(--brand); line-height: 1; margin-bottom: 20px; }
.error-page h2 { font-size: 28px; margin-bottom: 15px; }
.error-page p { color: var(--text-light); margin-bottom: 30px; }

/* ----- Service Page Enhancements ----- */
.service-hero {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(210,43,43,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.service-hero h1 { color: var(--white); font-size: 40px; margin-bottom: 12px; }
.service-hero p { color: var(--gray-400); font-size: 17px; max-width: 600px; margin: 0 auto; }

.service-card-v2 {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: .4s;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}
.service-card-v2 .card-top {
  padding: 35px 30px 20px;
  text-align: center;
  position: relative;
}
.service-card-v2 .card-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: rgba(210,43,43,.1);
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
}
.service-card-v2 .icon-wrap {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(210,43,43,.1), rgba(210,43,43,.05));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--brand);
  transition: .4s;
}
.service-card-v2:hover .icon-wrap {
  background: var(--brand);
  color: var(--white);
  transform: scale(1.1);
}
.service-card-v2 h3 { font-size: 18px; margin-bottom: 10px; }
.service-card-v2 h3 a { color: var(--dark); }
.service-card-v2 h3 a:hover { color: var(--brand); }
.service-card-v2 p { color: var(--text-light); font-size: 14px; line-height: 1.7; margin: 0 30px 20px; }
.service-card-v2 .card-bottom {
  margin-top: auto;
  padding: 18px 30px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-card-v2 .card-bottom a {
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-v2 .card-bottom a:hover { gap: 10px; }

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px; right: -15px;
  width: 30px; height: 2px;
  background: var(--gray-300);
}
.process-step .num {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  background: rgba(210,43,43,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font);
  font-weight: 800;
  font-size: 20px;
  color: var(--brand);
  position: relative;
}
.process-step h4 { font-size: 16px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-light); margin: 0; }

@media (max-width:991px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
}
@media (max-width:576px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* Service Detail Page */
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}
.service-detail-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.service-detail-header .icon-lg {
  width: 80px; height: 80px; min-width: 80px;
  background: linear-gradient(135deg, rgba(210,43,43,.1), rgba(210,43,43,.05));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px;
  color: var(--brand);
}
.service-detail-header h1 { font-size: 32px; margin-bottom: 8px; }
.service-detail-header p { color: var(--text-light); font-size: 16px; margin: 0; }

.feature-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 25px 0;
}
.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-radius: var(--radius);
}
.feature-checklist li i { color: var(--brand); margin-top: 2px; }

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 25px 0;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 25px;
  text-align: center;
  transition: .3s;
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--brand); }
.benefit-card .icon {
  width: 48px; height: 48px;
  margin: 0 auto 15px;
  background: rgba(210,43,43,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--brand);
}
.benefit-card h4 { font-size: 15px; margin-bottom: 6px; }
.benefit-card p { font-size: 13px; color: var(--text-light); margin: 0; }

@media (max-width:991px) {
  .benefit-cards { grid-template-columns: 1fr 1fr; }
  .feature-checklist { grid-template-columns: 1fr; }
}
@media (max-width:576px) {
  .benefit-cards { grid-template-columns: 1fr; }
}

/* Service Sidebar */
.service-sidebar { position: sticky; top: 100px; }
.service-sidebar .widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 25px;
  margin-bottom: 25px;
}
.service-sidebar .widget_title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}
.service-sidebar .service-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: .3s;
  margin-bottom: 4px;
  border: 1px solid transparent;
}
.service-sidebar .service-list a:hover,
.service-sidebar .service-list a.active {
  background: rgba(210,43,43,.06);
  border-color: rgba(210,43,43,.15);
  color: var(--brand);
}
.service-sidebar .service-list a i {
  width: 18px;
  color: var(--brand);
}
.service-sidebar .widget-cta {
  background: var(--dark);
  border-color: var(--dark);
  text-align: center;
  padding: 35px 25px;
}
.service-sidebar .widget-cta h4 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.service-sidebar .widget-cta p { color: var(--gray-400); font-size: 14px; margin-bottom: 20px; }

@media (max-width:991px) {
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

/* FAQ v2 */
.faq-item-v2 {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: .3s;
}
.faq-item-v2:hover { border-color: var(--brand); }
.faq-item-v2 .faq-q {
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: .3s;
  user-select: none;
}
.faq-item-v2 .faq-q:hover { background: var(--gray-100); }
.faq-item-v2 .faq-q i { transition: .3s; font-size: 14px; color: var(--brand); }
.faq-item-v2 .faq-q.active i { transform: rotate(180deg); }
.faq-item-v2 .faq-a {
  padding: 0 20px 18px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  display: none;
}
.faq-item-v2 .faq-a.open { display: block; }

/* ----- Swiper Overrides ----- */
.swiper { padding-bottom: 50px; }
.testimonials-slider .swiper { padding-bottom: 0; }
