/*
 * MLOK ALRIMAL CONTRACTING - Premium Corporate CSS Stylesheet
 * Brand Palette: Deep Corporate Navy, Rich Gold, Silver, Pure White
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- Root & CSS Variables --- */
:root {
  --primary-color: #0b1a30;
  --primary-rgb: 11, 26, 48;
  --secondary-color: #1e355b;
  --secondary-rgb: 30, 53, 91;
  --accent-color: #c59b27;
  --accent-rgb: 197, 155, 39;
  --accent-hover: #a8801d;
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --bg-light: #ffffff;
  --bg-dark: #070d19;
  
  /* Defaults (Dark Mode is primary theme for premium UAE tech/contracting feel) */
  --body-bg: var(--bg-dark);
  --body-text: #94a3b8;
  --heading-text: #ffffff;
  --card-bg: rgba(15, 26, 48, 0.45);
  --card-border: rgba(197, 155, 39, 0.15);
  --nav-bg: rgba(7, 13, 25, 0.75);
  --footer-bg: #040810;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --input-bg: rgba(15, 26, 48, 0.6);
  --input-border: rgba(255, 255, 255, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Mode Overrides */
[data-theme="light"] {
  --body-bg: #f8fafc;
  --body-text: #475569;
  --heading-text: #0f172a;
  --card-bg: #ffffff;
  --card-border: rgba(11, 26, 48, 0.08);
  --nav-bg: rgba(248, 250, 252, 0.85);
  --footer-bg: #0b1a30;
  --glass-bg: rgba(15, 26, 48, 0.02);
  --glass-border: rgba(11, 26, 48, 0.08);
  --input-bg: #ffffff;
  --input-border: #cbd5e1;
  --shadow-color: rgba(15, 26, 48, 0.08);
}

/* --- Reset & Base --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--body-bg);
  color: var(--body-text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--heading-text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--body-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
  border: 2px solid var(--body-bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* --- Typography Utilities --- */
.text-gold {
  color: var(--accent-color) !important;
}
.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="light"] .text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 30%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn-gold {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  border: none;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}
.btn-gold:hover::before {
  opacity: 1;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 155, 39, 0.45);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-color) !important;
  border: 2px solid var(--accent-color);
  font-weight: 600;
  padding: 0.7rem 1.9rem;
  border-radius: 5px;
  transition: var(--transition-smooth);
}
.btn-outline-gold:hover {
  background: var(--accent-color);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  padding: 0.7rem 1.9rem;
  border-radius: 5px;
  transition: var(--transition-smooth);
}
.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-color) !important;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* --- Section Heading --- */
.section-title {
  position: relative;
  margin-bottom: 3.5rem;
  text-align: center;
}
.section-title span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

/* --- Glassmorphic Containers --- */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--shadow-color);
}

/* --- Header / Navbar --- */
.header-top {
  background-color: rgba(4, 8, 16, 0.9);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}
.navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand .logo-dot {
  color: var(--accent-color);
}
.navbar {
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
}
.navbar.sticky-nav {
  padding: 0.7rem 0;
  background-color: var(--nav-bg) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--glass-border);
}
.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
}
[data-theme="light"] .navbar.sticky-nav .nav-link {
  color: var(--text-dark) !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-smooth);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-color) !important;
}

/* Dark/Light Toggle */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.theme-toggle-btn:hover {
  background-color: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
}

/* --- Hero Section with Video --- */
.hero-wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #040810;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(11,26,48,0.2) 0%, rgba(4,8,16,0.85) 90%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}
.hero-content span {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--accent-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

/* --- About Preview Split Section --- */
.about-preview {
  padding: 8rem 0;
  position: relative;
}
.about-img-box {
  position: relative;
}
.about-img-box img {
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.about-img-box::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80%;
  height: 80%;
  border: 3px solid var(--accent-color);
  z-index: -1;
  border-radius: 10px;
}
.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(197, 155, 39, 0.3);
  text-align: center;
}
.about-experience-badge h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0;
  color: #ffffff;
}

/* --- Why Choose Us (Icon Cards Grid) --- */
.why-choose-us {
  padding: 8rem 0;
}
.why-card {
  border-radius: 10px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-color);
  border-color: rgba(197, 155, 39, 0.4);
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(197, 155, 39, 0.15);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}
.why-card:hover .why-icon {
  background: var(--accent-color);
  color: #ffffff;
  transform: rotateY(180deg);
}

/* --- Statistics Counters --- */
.stats-section {
  padding: 6rem 0;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 8, 16, 0.85);
}
.stat-box {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 1.5rem;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}
.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-weight: 600;
}

/* --- Swiper Featured Services Slider --- */
.services-slider-section {
  padding: 8rem 0;
}
.service-slide-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-slide-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px var(--shadow-color);
}
.service-slide-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.service-slide-card:hover .service-slide-img img {
  transform: scale(1.1);
}
.service-slide-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-slide-body h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.service-slide-body p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-link {
  font-weight: 600;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 5px;
}
.service-link i {
  transition: var(--transition-smooth);
}
.service-slide-card:hover .service-link i {
  transform: translateX(5px);
}

/* --- Before & After Image Slider --- */
.before-after-section {
  padding: 8rem 0;
}
.ba-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow-color);
}
.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.ba-after {
  z-index: 1;
}
.ba-before {
  z-index: 2;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid var(--accent-color);
}
.ba-before .ba-image {
  width: 100%;
  /* Force it to not shrink inside its narrow wrapper container */
  min-width: 100%;
}
.ba-slider-handle {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--accent-color);
  cursor: ew-resize;
  transform: translateX(-50%);
}
.ba-slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  pointer-events: none;
}
.ba-label {
  position: absolute;
  bottom: 20px;
  padding: 6px 15px;
  border-radius: 4px;
  background: rgba(4, 8, 16, 0.8);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}
.ba-label-before {
  left: 20px;
}
.ba-label-after {
  right: 20px;
}

/* --- Portfolio Masonry Gallery --- */
.portfolio-section {
  padding: 8rem 0;
}
.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 3rem;
}
.filter-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--heading-text);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
}
.portfolio-grid {
  position: relative;
  width: 100%;
}
.portfolio-item {
  margin-bottom: 30px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.portfolio-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 350px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.portfolio-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11,26,48,0.9) 0%, rgba(11,26,48,0.2) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}
.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}
.portfolio-card:hover img {
  transform: scale(1.1);
}
.portfolio-card-overlay span {
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.portfolio-card-overlay h4 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* --- Project Progress Visualization --- */
.progress-section {
  padding: 8rem 0;
}
.progress-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.progress-bar-custom {
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1rem;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  width: 0%; /* Triggered by JS */
  border-radius: 10px;
  transition: width 2s cubic-bezier(0.1, 0.8, 0.3, 1);
}

/* --- Timeline Section --- */
.timeline-section {
  padding: 8rem 0;
}
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline-container::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--glass-border);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}
.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: var(--accent-color);
  border: 4px solid var(--body-bg);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition-smooth);
}
.timeline-left {
  left: 0;
}
.timeline-right {
  left: 50%;
}
.timeline-right::after {
  left: -8px;
}
.timeline-content {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  position: relative;
}
.timeline-date {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: block;
}
.timeline-item:hover::after {
  background-color: #ffffff;
  box-shadow: 0 0 10px var(--accent-color);
}

/* --- Safety Commitment & HSE Infographics --- */
.hse-section {
  padding: 8rem 0;
}
.hse-card {
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 3rem 2rem;
  border-radius: 10px;
  height: 100%;
}
.hse-icon-radial {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.1) 0%, rgba(0,0,0,0) 70%);
  border: 2px solid rgba(197, 155, 39, 0.2);
}
.hse-icon-radial i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

/* --- Contact Page Info Cards & Validated Form --- */
.contact-section {
  padding: 8rem 0;
}
.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2.5rem;
  border-radius: 10px;
  height: 100%;
  display: flex;
  gap: 20px;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(197, 155, 39, 0.15);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-form-container {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 3.5rem;
  border-radius: 10px;
}
.form-control, .form-select {
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--heading-text);
  padding: 0.8rem 1.2rem;
  border-radius: 5px;
  transition: var(--transition-smooth);
}
.form-control:focus, .form-select:focus {
  background-color: var(--input-bg);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(197, 155, 39, 0.15);
  color: var(--heading-text);
}
.invalid-feedback {
  font-size: 0.85rem;
  color: #ef4444;
}

/* --- FAQ Accordion --- */
.faq-section {
  padding: 8rem 0;
}
.accordion-item {
  background-color: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  margin-bottom: 1rem;
  border-radius: 8px !important;
  overflow: hidden;
}
.accordion-button {
  background-color: var(--card-bg) !important;
  color: var(--heading-text) !important;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  border: none !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--accent-color) !important;
  background-color: rgba(197, 155, 39, 0.05) !important;
}
.accordion-button::after {
  filter: invert(1);
}
[data-theme="light"] .accordion-button::after {
  filter: none;
}
.accordion-body {
  color: var(--body-text);
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.01);
}

/* --- Floating Panels & Buttons --- */
/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-5px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 95px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}
.whatsapp-float i {
  font-size: 1.8rem;
}

/* Floating Callback Inquiry Panel */
.inquiry-trigger {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  color: #ffffff;
  padding: 1rem 0.5rem;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  z-index: 100;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}
.inquiry-trigger:hover {
  background: var(--accent-hover);
  padding-left: 0.8rem;
}
.inquiry-panel {
  position: fixed;
  left: -350px;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  background: var(--footer-bg);
  border: 1px solid var(--accent-color);
  border-left: none;
  border-radius: 0 10px 10px 0;
  z-index: 101;
  padding: 2.5rem;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.4);
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.inquiry-panel.open {
  left: 0;
}
.inquiry-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--body-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.inquiry-close:hover {
  color: var(--accent-color);
}

/* --- Hero Subpages Banner --- */
.subpage-hero {
  height: 45vh;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.subpage-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11,26,48,0.7) 0%, rgba(4,8,16,0.9) 100%);
}
.subpage-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}
.subpage-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}
.breadcrumb a {
  color: var(--accent-color);
}
.breadcrumb span {
  color: rgba(255,255,255,0.6);
}

/* --- Services Grid Cards --- */
.service-main-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.service-main-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent-color);
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--transition-smooth);
}
.service-main-card:hover::after {
  transform: scaleY(1);
}
.service-main-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 155, 39, 0.3);
  box-shadow: 0 10px 30px var(--shadow-color);
}
.service-main-icon {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}
.service-sub-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.2rem;
}
.service-sub-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.service-sub-list li::before {
  content: '\F2E6'; /* Bootstrap Icons plus */
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 900;
}

/* --- Service Process Steps --- */
.process-step {
  text-align: center;
  position: relative;
}
.process-icon-box {
  width: 80px;
  height: 80px;
  background: var(--card-bg);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
}
.process-step:hover .process-icon-box {
  background: var(--accent-color);
  color: #ffffff;
  transform: scale(1.1);
}
.process-connector {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--glass-border);
  z-index: 1;
}

/* --- Mega Footer --- */
.mega-footer {
  background-color: var(--footer-bg);
  color: #94a3b8;
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}
.mega-footer h5 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  position: relative;
}
.mega-footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}
.mega-footer ul {
  list-style: none;
  padding-left: 0;
}
.mega-footer ul li {
  margin-bottom: 0.8rem;
}
.mega-footer ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}
.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}
.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-smooth);
}
.footer-social-links a:hover {
  background: var(--accent-color);
  color: #ffffff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  margin-top: 4rem;
  font-size: 0.85rem;
}

/* --- CTA Banner --- */
.cta-banner-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  z-index: -2;
}
.cta-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(197, 155, 39, 0.05);
  border-radius: 50%;
  z-index: -1;
}
.cta-shape-1 {
  top: -100px;
  right: -50px;
}
.cta-shape-2 {
  bottom: -150px;
  left: -50px;
}
