/* =========================================
   LOMARRK - Main Stylesheet
   ========================================= */

/* --- CSS Variables --- */
:root {
  --sec-primary: #a89a70;
  --sec-primary-dark: #8c7e5a;
  --sec-secondary: #0a0a0a;
  --sec-accent: #d4c4a8;
  --clean-primary: #a0a0a0;
  --clean-primary-dark: #707070;
  --clean-secondary: #d0d0d0;
  --clean-accent: #c0c0c0;
  --dark-bg: #f5f5f5;
  --dark-bg2: #eeeeee;
  --dark-bg3: #e8e8e8;
  --dark-card: #ffffff;
  --light-bg: #f8f9fa;
  --light-bg2: #f0f0f0;
  --text-light: #333333;
  --text-dark: #0a0a0a;
  --text-muted: #666666;
  --border-dark: rgba(0,0,0,0.08);
  --border-light: rgba(0,0,0,0.08);
  --glass-bg: rgba(255,255,255,0.8);
  --glass-border: rgba(0,0,0,0.1);
  --shadow-red: 0 0 30px rgba(168,154,112,0.25);
  --shadow-blue: 0 0 30px rgba(160,160,160,0.2);
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

/* --- Base Styles --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  background: var(--light-bg);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

body.light-page {
  background: #ffffff;
  color: var(--text-dark);
}

::selection { background: var(--sec-primary); color: #fff; }

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

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.badge-red { background: rgba(168,154,112,0.2); color: var(--sec-primary); border: 1px solid rgba(168,154,112,0.35); }
.badge-blue { background: rgba(160,160,160,0.2); color: var(--clean-primary); border: 1px solid rgba(160,160,160,0.35); }
.badge-white { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }

.section-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }

.text-red { color: var(--sec-primary) !important; }
.text-blue { color: var(--clean-primary) !important; }
.text-gradient-red { background: linear-gradient(135deg, #a89a70, #d4c4a8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient-blue { background: linear-gradient(135deg, #a0a0a0, #d0d0d0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* --- Utilities --- */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 70px 0; }

.divider-red { width: 60px; height: 4px; background: var(--sec-primary); border-radius: 2px; margin: 0 auto 2rem; }
.divider-blue { width: 60px; height: 4px; background: var(--clean-primary); border-radius: 2px; margin: 0 auto 2rem; }
.divider-left { margin: 0 0 2rem; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar-lomarrk {
  background: #a89a70;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 15px 0;
  transition: var(--transition);
  z-index: 9999;
}

.navbar-lomarrk.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

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

.navbar-nav .nav-link {
  color: #1a1a1a !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 8px 16px !important;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #766b4a;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover { color: #fff !important; }
.navbar-nav .nav-link:hover::after { width: 60%; }
.navbar-nav .nav-link.active { color: #fff !important; }
.navbar-nav .nav-link.active::after { width: 60%; }
.navbar-nav .nav-link.navbar-cta.active { color: black !important; }

.navbar-nav .dropdown-menu {
  background: #a89a70;
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius);
  padding: 10px;
  margin-top: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.navbar-nav .dropdown-item {
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: var(--transition);
}

.navbar-nav .dropdown-item:hover {
  background: rgba(143, 107, 0, 0.15);
  color: white;
}

.navbar-cta {
  background: white;
  color: var(--sec-primary) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.navbar-cta:hover { background: #766b4a !important; color: white !important; }
.navbar-nav .nav-link.navbar-cta.active { background: white !important; color: black !important; }
.navbar-cta::after { display: none !important; }

.navbar-toggler {
  border: 1px solid var(--border-dark);
  padding: 6px 10px;
}

.navbar-toggler-icon { filter: invert(1); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero-main {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-bg);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.97) 0%, rgba(20,15,0,0.85) 50%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(168,154,112,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(168,154,112,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,154,112,0.15);
  border: 1px solid rgba(168,154,112,0.35);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sec-primary);
  margin-bottom: 1.5rem;
}

.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--sec-primary); border-radius: 50%; animation: pulse-dot 2s infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes threatPulse {
  0%   { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  70%  { box-shadow: 0 0 0 6px transparent; opacity: 0.8; }
  100% { box-shadow: 0 0 0 0 transparent; opacity: 1; }
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.line {
  color: #eeeeee;
}

.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; }

.typed-wrapper { min-height: 1.2em; }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 550px;
  margin-bottom: 2.5rem;
}

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

.btn-hero-primary {
  background: var(--sec-primary);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 2px solid var(--sec-primary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: transparent;
  color: var(--sec-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168,154,112,0.35);
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.2);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  flex-wrap: wrap;
}

.hero-stat-number { font-size: 2rem; font-weight: 800; color: var(--sec-primary); font-family: var(--font-heading); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card-float {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 25px;
  margin-bottom: 20px;
  animation: float 6s ease-in-out infinite;
}

.hero-card-float:nth-child(2) { animation-delay: -3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, rgba(168,154,112,0.8)); animation: scroll-line 2s ease-in-out infinite; }
@keyframes scroll-line { 0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
.scroll-text { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary-red {
  background: var(--sec-primary);
  color: white;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  border: 2px solid var(--sec-primary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.btn-primary-red:hover {
  background: transparent;
  color: var(--sec-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168,154,112,0.35);
}

.btn-outline-red {
  background: transparent;
  color: var(--sec-primary);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  border: 2px solid var(--sec-primary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.btn-outline-red:hover {
  background: var(--sec-primary);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168,154,112,0.35);
}

.btn-primary-blue {
  background: var(--clean-primary);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  border: 2px solid var(--clean-primary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.btn-primary-blue:hover {
  background: transparent;
  color: var(--clean-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(160,160,160,0.35);
}

.btn-outline-blue {
  background: transparent;
  color: var(--clean-primary);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  border: 2px solid var(--clean-primary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.btn-outline-blue:hover {
  background: var(--clean-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(160,160,160,0.35);
}

.btn-white {
  background: #fff;
  color: var(--text-dark);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  border: 2px solid #fff;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================
   SERVICE SPLIT SECTION
   ========================================= */
.services-split { display: flex; min-height: 600px; }

.split-security {
  flex: 1;
  background: var(--dark-bg2);
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
  transition: var(--transition);
  cursor: pointer;
}

.split-security::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168,154,112,0.12) 0%, transparent 60%);
  z-index: 0;
}

.split-security:hover { flex: 1.3; }
.split-security:hover .split-overlay { opacity: 1; }

.split-cleaning {
  flex: 1;
  background: #161616;
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
  transition: var(--transition);
  cursor: pointer;
}

.split-cleaning::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(160,160,160,0.12) 0%, transparent 60%);
  z-index: 0;
}

.split-cleaning:hover { flex: 1.3; }
.split-cleaning:hover .split-overlay { opacity: 1; }

.split-content { position: relative; z-index: 1; }

.split-icon { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 20px; font-size: 2rem; margin-bottom: 1.5rem; }
.split-icon-red { background: rgba(168,154,112,0.2); color: var(--sec-primary); }
.split-icon-blue { background: rgba(160,160,160,0.2); color: var(--clean-primary); }
.split-divider { width: 5px; background: var(--dark-bg); flex-shrink: 0; }

/* =========================================
   CARDS
   ========================================= */
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-lg);
  padding: 35px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sec-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color: rgba(168,154,112,0.25); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-blue::before { background: var(--clean-primary); }
.service-card-blue:hover { border-color: rgba(160,160,160,0.25); box-shadow: 0 20px 50px rgba(160,160,160,0.15); }

.service-card-light {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--text-dark);
}

.service-card-light:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.card-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.card-icon-red { background: rgba(168,154,112,0.15); color: var(--sec-primary); }
.card-icon-blue { background: rgba(160,160,160,0.15); color: var(--clean-primary); }

.card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.8rem; }
.card-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1.2rem;
  color: var(--sec-primary);
}

.card-link-blue { color: var(--clean-primary); }

/* Glass card */
.glass-card {
  background: rgba(0,0,0,0.1);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 30px;
}

/* Stat card */
.stat-card {
  text-align: center;
  padding: 40px 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-choose { background: var(--dark-bg2); }

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
  padding: 25px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-dark);
  transition: var(--transition);
}

.feature-item:hover { background: var(--dark-card); border-color: rgba(168,154,112,0.2); }

.feature-icon { width: 50px; height: 50px; background: rgba(168,154,112,0.15); color: var(--sec-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }

.feature-content h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-content p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* =========================================
   COUNTERS
   ========================================= */
.counters-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f5f5f5 100%);
  border-top: 1px solid rgba(168,154,112,0.18);
  border-bottom: 1px solid rgba(168,154,112,0.18);
}

.counter-item { text-align: center; padding: 20px; }
.counter-number { font-size: 3.5rem; font-weight: 900; color: var(--sec-primary); font-family: var(--font-heading); display: block; }
.counter-suffix { color: var(--sec-primary); font-size: 2rem; }
.counter-label { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: #666666; margin-top: 5px; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--light-bg); }

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 35px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  color: rgba(168,154,112,0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-red); border-color: rgba(168,154,112,0.25); }

.testimonial-text { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 15px; }

.author-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--sec-primary); }
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }

.stars { color: #ffc107; font-size: 0.85rem; margin-bottom: 1rem; }

/* =========================================
   CTA SECTIONS
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 40%, #f5f5f5 100%);
  border-top: 1px solid rgba(168,154,112,0.18);
  border-bottom: 1px solid rgba(160,160,160,0.2);
}

.cta-split-red { background: linear-gradient(135deg, var(--sec-primary) 0%, var(--sec-primary-dark) 100%); }
.cta-split-blue { background: linear-gradient(135deg, #444444 0%, #222222 100%); }

/* =========================================
   FORM STYLES
   ========================================= */
.form-dark .form-control,
.form-dark .form-select {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-dark .form-control:focus,
.form-dark .form-select:focus {
  background: var(--dark-bg3);
  border-color: var(--sec-primary);
  box-shadow: 0 0 0 3px rgba(168,154,112,0.15);
  color: #fff;
}

.form-dark .form-control::placeholder { color: rgba(255,255,255,0.3); }
.form-dark .form-label { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 6px; }

.form-dark .form-select option { background: var(--dark-bg3); color: #fff; }

.form-light .form-control,
.form-light .form-select {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-dark);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-light .form-control:focus,
.form-light .form-select:focus {
  border-color: var(--clean-primary);
  box-shadow: 0 0 0 3px rgba(160,160,160,0.15);
  color: var(--text-dark);
}

/* =========================================
   PAGE HERO (Inner Pages)
   ========================================= */
.page-hero {
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--light-bg2);
  padding: 120px 0 80px;
}

.page-hero-red { background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%); border-bottom: 1px solid rgba(168,154,112,0.2); }
.page-hero-blue { background: linear-gradient(135deg, #eeeeee 0%, #e8e8e8 100%); border-bottom: 1px solid rgba(160,160,160,0.2); }

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(168,154,112,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(168,154,112,0.05) 0%, transparent 50%);
}

.page-hero-blue .page-hero-pattern {
  background-image: radial-gradient(circle at 20% 50%, rgba(160,160,160,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(160,160,160,0.08) 0%, transparent 50%);
}

.breadcrumb-custom {
  background: none;
  padding: 0;
  margin-bottom: 1rem;
}

.breadcrumb-custom .breadcrumb-item a { color: white; font-size: 0.85rem; }
.breadcrumb-custom .breadcrumb-item a:hover { color: var(--sec-primary); }
.breadcrumb-custom .breadcrumb-item.active { color: white; font-size: 0.85rem; }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: white; }

/* =========================================
   SECURITY PAGE SPECIFIC
   ========================================= */
.security-section { background: var(--dark-bg); }
.security-dark { background: var(--dark-bg2); }

.security-feature-list { list-style: none; padding: 0; }
.security-feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.security-feature-list li:last-child { border-bottom: none; }
.security-feature-list li i { color: var(--sec-primary); width: 20px; flex-shrink: 0; }

/* =========================================
   CLEANING PAGE SPECIFIC
   ========================================= */
.cleaning-section { background: #fff; color: var(--text-dark); }
.cleaning-light { background: var(--light-bg2); color: var(--text-dark); }
.cleaning-dark { background: #111111; color: #fff; }

.cleaning-feature-list { list-style: none; padding: 0; }
.cleaning-feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.cleaning-feature-list li:last-child { border-bottom: none; }
.cleaning-feature-list li i { color: var(--clean-primary); width: 20px; flex-shrink: 0; }

/* =========================================
   JOBS / CAREERS
   ========================================= */
.job-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--sec-primary);
}

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

.job-badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.job-badge-fulltime { background: rgba(160,160,160,0.15); color: var(--clean-primary); }
.job-badge-parttime { background: rgba(255,165,0,0.1); color: orange; }
.job-badge-security { background: rgba(168,154,112,0.15); color: var(--sec-primary); }
.job-badge-cleaning { background: rgba(160,160,160,0.15); color: var(--clean-primary); }

.job-meta { display: flex; flex-wrap: wrap; gap: 15px; margin: 12px 0; }
.job-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-muted); }

/* =========================================
   ADMIN DASHBOARD
   ========================================= */
.admin-sidebar {
  width: 260px;
  min-height: 100vh;
  background: var(--dark-bg);
  border-right: 1px solid var(--border-dark);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  overflow-y: auto;
}

.admin-sidebar.collapsed { width: 70px; }

.admin-main { margin-left: 260px; min-height: 100vh; background: var(--dark-bg3); transition: var(--transition); }
.admin-main.expanded { margin-left: 70px; }

.admin-topbar {
  background: var(--dark-bg2);
  border-bottom: 1px solid var(--border-dark);
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sidebar-logo { padding: 25px 20px 20px; border-bottom: 1px solid var(--border-dark); }

.sidebar-nav { padding: 20px 0; }

.sidebar-nav-item { padding: 0 12px; margin-bottom: 4px; }

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
}

.sidebar-nav-link:hover { background: rgba(168,154,112,0.12); color: var(--sec-primary); }
.sidebar-nav-link.active { background: rgba(168,154,112,0.18); color: var(--sec-primary); }

.sidebar-nav-link i { width: 20px; text-align: center; flex-shrink: 0; font-size: 1.1rem; }
.sidebar-nav-label { flex: 1; }

.sidebar-section-title {
  padding: 10px 28px 6px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}

.admin-stat-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-lg);
  padding: 25px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-stat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.admin-stat-icon { width: 60px; height: 60px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }

.admin-stat-number { font-size: 2rem; font-weight: 800; font-family: var(--font-heading); }
.admin-stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.admin-stat-change { font-size: 0.75rem; margin-top: 4px; }
.admin-stat-up { color: #00ff88; }
.admin-stat-down { color: var(--sec-primary); }

.admin-table-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.admin-table-header {
  padding: 20px 25px;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 14px 20px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; border-bottom: 1px solid var(--border-dark); text-align: left; }
.admin-table td { padding: 14px 20px; font-size: 0.875rem; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }

.status-badge { padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }
.status-pending { background: rgba(255,165,0,0.15); color: orange; }
.status-reviewed { background: rgba(160,160,160,0.2); color: var(--clean-primary); }
.status-interview { background: rgba(138,43,226,0.15); color: #9b59b6; }
.status-accepted { background: rgba(0,200,100,0.15); color: #00c864; }
.status-rejected { background: rgba(168,154,112,0.2); color: var(--sec-primary); }
.status-new { background: rgba(255,215,0,0.15); color: #ffd700; }

/* =========================================
   FOOTER
   ========================================= */
.footer-main {
  background: #a89a70;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 0;
}

.footer-brand-name { font-size: 2rem; font-weight: 900; }
.footer-brand-name .lom { color: #333333; }
.footer-brand-name .arrk { color: var(--sec-primary); }

.footer-desc { font-size: 0.875rem; color: white; margin: 1rem 0 1.5rem; line-height: 1.8; }

.footer-heading { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: white; font-weight: 600; margin-bottom: 1.2rem; }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: white; font-size: 0.875rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: rgba(255,255,255,0.7); padding-left: 5px; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 15px; }
.footer-contact-icon { width: 35px; height: 35px; background: rgba(0,0,0,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: black; font-size: 0.9rem; flex-shrink: 0; }
.footer-contact-text { font-size: 0.875rem; color: white; }
.footer-contact-text strong { display: block; color: rgba(255,255,255,0.8); font-size: 0.8rem; margin-bottom: 2px; }

.footer-social { display: flex; gap: 10px; margin-top: 1.5rem; }
.social-link { width: 38px; height: 38px; background: rgba(0,0,0,0.1); border: 1px solid var(--border-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: black; font-size: 0.9rem; transition: var(--transition); }
.social-link:hover { background: var(--sec-primary); border-color: var(--sec-primary); color: #fff; transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 0;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-text { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

.footer-certifications { display: flex; gap: 15px; align-items: center; }
.cert-badge { background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark); border-radius: 6px; padding: 4px 12px; font-size: 0.7rem; color: rgba(255,255,255,0.4); }

/* =========================================
   FLOATING ELEMENTS
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: whatsapp-pulse 3s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); background: #20ba5a; }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

.quote-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--sec-primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(168,154,112,0.45);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.quote-float:hover { transform: translateY(-3px); background: var(--sec-primary-dark); color: #fff; }

/* =========================================
   FAQ
   ========================================= */
.faq-item { border: 1px solid var(--border-dark); border-radius: var(--border-radius); margin-bottom: 10px; overflow: hidden; }
.faq-question { padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question.active { background: rgba(168,154,112,0.08); color: var(--sec-primary); }
.faq-question i { transition: var(--transition); color: var(--text-muted); flex-shrink: 0; }
.faq-question.active i { transform: rotate(45deg); color: var(--sec-primary); }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { padding: 0 25px 20px; max-height: 300px; }
.faq-answer p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; }

/* =========================================
   MISC
   ========================================= */
.uk-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.uk-flag { font-size: 1rem; }

.process-step { text-align: center; padding: 20px; position: relative; }
.process-number { width: 60px; height: 60px; background: rgba(168,154,112,0.15); border: 2px solid rgba(168,154,112,0.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; color: var(--sec-primary); margin: 0 auto 1rem; font-family: var(--font-heading); }
.process-connector { position: absolute; top: 50px; right: -50%; width: 100%; height: 2px; background: rgba(168,154,112,0.2); z-index: 0; }

.newsletter-section { background: var(--dark-bg2); }
.newsletter-input { background: var(--dark-card); border: 1px solid var(--border-dark); color: #fff; border-radius: 50px 0 0 50px; padding: 14px 20px; flex: 1; font-size: 0.9rem; }
.newsletter-input:focus { outline: none; border-color: var(--sec-primary); }
.newsletter-btn { border-radius: 0 50px 50px 0; }

.map-container { border-radius: var(--border-radius-lg); overflow: hidden; border: 1px solid var(--border-dark); }

/* =========================================
   ANIMATIONS
   ========================================= */
[data-aos] { opacity: 0; transition: opacity 0.65s ease, transform 0.65s ease; }
[data-aos].aos-animate { opacity: 1; transform: none !important; }

.animate-fade-up { animation: fadeUp 0.7s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.animate-fade-in { animation: fadeIn 0.7s ease forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .services-split { flex-direction: column; }
  .split-security, .split-cleaning { padding: 60px 30px; }
  .split-divider { width: 100%; height: 5px; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.mobile-open { transform: translateX(0); }
  .admin-main { margin-left: 0; padding-top: 65px; }
  .admin-topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 500; }
  .hero-title { font-size: clamp(2rem, 6vw, 3.5rem); }
  .hero-card-float { display: none; }
}

@media (max-width: 767px) {
  html, body { overflow-x: hidden; }
  .section-padding { padding: 60px 0; }
  .section-padding-sm { padding: 50px 20px; }
  .page-hero { min-height: auto !important; padding: 90px 0 40px; }
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .counter-number { font-size: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
  .quote-float { display: none; }

  /* Why Choose Us */
  .feature-item { padding: 14px; gap: 14px; }
  .feature-content h5 { font-size: 0.95rem; }

  /* CTA banners */
  .cta-split-red, .cta-split-blue { padding: 2rem !important; }

  /* Jobs preview */
  .job-card { padding: 1.25rem; }

  /* FAQ */
  .faq-question { font-size: 0.88rem; padding: 16px 18px; }
  .faq-answer, .faq-answer.open { padding-left: 18px; padding-right: 18px; }

  /* Services split stacked */
  .split-security, .split-cleaning { padding: 50px 20px; }
  .split-security h2, .split-cleaning h2 { font-size: 1.6rem; }

  /* Form inputs – prevent iOS Safari auto-zoom (triggered when font-size < 16px) */
  .form-dark .form-control,
  .form-dark .form-select,
  .form-light .form-control,
  .form-light .form-select,
  .form-control,
  .form-select,
  textarea { font-size: 1rem; }
}

@media (max-width: 575px) {

  .hero-title { font-size: 2rem; }
  .stat-number { font-size: 2.5rem; }
  .section-title { font-size: 1.5rem; }
  .section-padding { padding: 40px 0; }
  .page-hero { padding: 80px 0 30px; }

  /* CTA full-width buttons on tiny screens */
  .cta-split-red .btn-white,
  .cta-split-blue .btn-white { display: block; text-align: center; }

  /* Prevent any child from busting out of viewport */
  .container { padding-left: 16px; padding-right: 16px; }
}

/* =========================================
   ADMIN DARK THEME OVERRIDE
   Admin panel keeps its dark appearance regardless of site theme
   ========================================= */
.admin-sidebar,
.admin-topbar,
.admin-main {
  background-color: #f5f5f5;
  color: #333333;
}
.admin-main { background-color: #eeeeee; }
.admin-topbar { background-color: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.08); }
.admin-sidebar { background-color: #ffffff; border-right: 1px solid rgba(0,0,0,0.08); }

.admin-stat-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  color: #333333;
}
.admin-table-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  color: #333333;
}
.admin-table-header { border-bottom: 1px solid rgba(0,0,0,0.08); }
.admin-table th { color: #888; border-bottom: 1px solid rgba(0,0,0,0.08); }
.admin-table td { border-bottom: 1px solid rgba(0,0,0,0.04); color: #333333; }
.admin-table tr:hover td { background: rgba(0,0,0,0.02); }
.sidebar-nav-link { color: rgba(0,0,0,0.6); }
.sidebar-section-title { color: rgba(0,0,0,0.3); }

/* =========================================
   HERO BACKGROUND CAROUSEL
   ========================================= */
.hero-main {
  position: relative;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
}

.hero-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-main .container,
.hero-main .hero-grid-pattern {
  position: relative;
  z-index: 2;
}

