/*
Theme Name: Asloob International
Theme URI: https://asloob.com
Author: Asloob International
Author URI: https://asloob.com
Description: Professional WordPress theme for Asloob International Co. — Construction, Security, Catering & Maintenance.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: asloob
Tags: construction, corporate, business
*/

/* ============================================================
   CSS VARIABLES — ASLOOB BRAND SYSTEM
   ============================================================ */
:root {
  --navy: #0B3D6B;
  --navy-deep: #082E52;
  --midnight: #0A1F33;
  --orange: #E8762B;
  --orange-hover: #D0651F;
  --orange-glow: rgba(232,118,43,0.25);
  --steel: #5A6A72;
  --charcoal: #2C3E4A;
  --cloud: #F4F6F8;
  --white: #FFFFFF;
  --border: #D1D8DD;
  --light-blue: #1A5A96;
  --warm-orange: #F09035;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --font-arabic: 'Tajawal', sans-serif;
  --shadow-sm: 0 2px 8px rgba(10,31,51,0.06);
  --shadow-md: 0 4px 20px rgba(10,31,51,0.1);
  --shadow-lg: 0 12px 40px rgba(10,31,51,0.15);
  --shadow-orange: 0 4px 16px rgba(232,118,43,0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --max-width: 1200px;
  --section-py: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   PAGE SYSTEM — Multi-page via JS
   ============================================================ */
/* .page { display: none; } -- REMOVED: conflicts with WordPress body.page class */
/* .page.active { display: block; } -- REMOVED: not needed in WordPress */

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--midnight);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader .logo-mark {
  width: 60px; height: 60px;
  border: 3px solid rgba(232,118,43,0.2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
#preloader span {
  margin-top: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.top-bar {
  background: var(--midnight);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.6); }
.top-bar a:hover { color: var(--orange); }
.top-bar .top-contact { display: flex; gap: 20px; }

header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}
header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 22px;
  color: var(--navy);
  cursor: pointer;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--light-blue) 100%);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.logo-icon::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
}
.logo-icon svg { width: 26px; height: 26px; fill: white; }
.logo-text { line-height: 1.1; }
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
}

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}
nav a:hover, nav a.active { color: var(--navy); }
nav a.active::after {
  content: '';
  position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 2px; background: var(--orange);
  border-radius: 1px;
}
.nav-cta {
  margin-left: 10px;
  padding: 10px 24px !important;
  background: var(--orange) !important;
  color: white !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  box-shadow: var(--shadow-orange);
}
.nav-cta:hover { background: var(--orange-hover) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 30px 24px;
  flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 18px;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--cloud);
  cursor: pointer;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--navy);
  background: var(--cloud);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,118,43,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--navy);
  border-color: white;
}
.btn-white:hover {
  background: var(--cloud);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}
.btn-dark {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(3px); }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section { padding: var(--section-py) 0; }
.section-dark { background: var(--midnight); color: white; }
.section-navy { background: var(--navy); color: white; }
.section-cloud { background: var(--cloud); }
.section-white { background: var(--white); }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--orange);
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-dark .section-title,
.section-navy .section-title { color: white; }
.section-subtitle {
  font-size: 16px;
  color: var(--steel);
  max-width: 600px;
  line-height: 1.7;
}
.section-dark .section-subtitle,
.section-navy .section-subtitle { color: rgba(255,255,255,0.6); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 41px);
}
.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.hero-gradient-orb.orb-1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -100px; right: -100px;
}
.hero-gradient-orb.orb-2 {
  width: 300px; height: 300px;
  background: var(--light-blue);
  bottom: -50px; left: 10%;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(232,118,43,0.12);
  border: 1px solid rgba(232,118,43,0.25);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  color: white;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}
.hero h1 span { color: var(--orange); }
.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}
.hero-stats-row {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}
.hero-stat-item h3 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 32px;
  color: var(--orange);
}
.hero-stat-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating shapes */
.hero-shapes {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 45%; height: 80%;
  pointer-events: none;
}
.floating-shape {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
}
.floating-shape:nth-child(1) {
  width: 200px; height: 200px;
  top: 10%; right: 15%;
  animation: float1 8s ease-in-out infinite;
}
.floating-shape:nth-child(2) {
  width: 140px; height: 140px;
  top: 40%; right: 5%;
  border-color: rgba(232,118,43,0.1);
  animation: float2 10s ease-in-out infinite;
}
.floating-shape:nth-child(3) {
  width: 80px; height: 80px;
  bottom: 15%; right: 25%;
  animation: float3 6s ease-in-out infinite;
}
@keyframes float1 { 0%, 100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(-15px, -20px) rotate(3deg); } }
@keyframes float2 { 0%, 100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(10px, -15px) rotate(-2deg); } }
@keyframes float3 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-10px, 10px); } }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 100px 0 70px;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 100%);
  overflow: hidden;
}
.page-hero .hero-pattern { position: absolute; inset: 0; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-label { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  color: white;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ============================================================
   INTRO / ABOUT SECTION
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cloud) 0%, var(--border) 100%);
}
.intro-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,61,107,0.08), transparent);
}
.intro-image .experience-badge {
  position: absolute; bottom: -16px; right: 24px;
  background: var(--orange);
  color: white;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-orange);
}
.experience-badge h3 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 36px;
  line-height: 1;
}
.experience-badge p {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}
.intro-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 28px;
}
.intro-feature {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px;
  background: var(--cloud);
  border-radius: var(--radius-md);
}
.intro-feature-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(232,118,43,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 16px;
}
.intro-feature h4 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 14px;
  color: var(--navy);
  margin-bottom: 2px;
}
.intro-feature p { font-size: 12px; color: var(--steel); line-height: 1.5; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(11,61,107,0.08), rgba(11,61,107,0.03));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange), var(--warm-orange));
}
.service-icon svg {
  width: 28px; height: 28px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}
.service-card:hover .service-icon svg { stroke: white; }
.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  cursor: pointer;
}
.service-link svg {
  width: 14px; height: 14px;
  stroke: var(--orange); fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
}
.service-link:hover svg { transform: translateX(4px); }

/* ============================================================
   STATS BANNER
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--midnight) 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 0;
  position: relative; z-index: 2;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 52px;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 30px; height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 10px auto 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.why-card {
  display: flex; gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}
.why-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: rgba(232,118,43,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.why-card h4 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 18px;
  color: var(--navy);
  margin-bottom: 6px;
}
.why-card p { font-size: 14px; color: var(--steel); }

/* ============================================================
   PROJECTS GRID
   ============================================================ */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--steel);
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,31,51,0.9) 100%);
  transition: var(--transition);
}
.project-card:hover .project-card-overlay {
  background: linear-gradient(180deg, rgba(232,118,43,0.1) 0%, rgba(10,31,51,0.95) 100%);
}
.project-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  transform: translateY(10px);
  transition: var(--transition);
}
.project-card:hover .project-card-content { transform: translateY(0); }
.project-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(232,118,43,0.2);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.project-card h3 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 18px;
  color: white;
  margin-bottom: 4px;
}
.project-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.project-card .view-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.project-card:hover .view-btn { opacity: 1; transform: translateY(0); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: var(--orange);
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px);
}
.cta-banner .container {
  position: relative; z-index: 2;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: white;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* ============================================================
   TIMELINE (About page)
   ============================================================ */
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  padding-right: 40px;
  margin-bottom: 40px;
  position: relative;
}
.timeline-item:nth-child(even) {
  justify-content: flex-start;
  margin-left: 50%;
  padding-right: 0;
  padding-left: 40px;
}
.timeline-item::after {
  content: '';
  position: absolute;
  top: 20px;
  width: 14px; height: 14px;
  background: var(--orange);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--orange);
}
.timeline-item::after { right: -7px; }
.timeline-item:nth-child(even)::after { left: -7px; right: auto; }
.timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  max-width: 400px;
  transition: var(--transition);
}
.timeline-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.timeline-year {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 28px;
  color: var(--orange);
}
.timeline-card h4 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 16px;
  color: var(--navy);
  margin: 4px 0;
}
.timeline-card p { font-size: 13px; color: var(--steel); }

/* ============================================================
   SERVICES DETAIL
   ============================================================ */
.service-detail {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.service-detail-strengths {
  display: flex; flex-direction: column; gap: 12px;
  margin: 20px 0;
}
.strength-item {
  display: flex; gap: 12px; align-items: center;
  font-size: 14px; color: var(--charcoal);
}
.strength-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(232,118,43,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 11px; font-weight: 700;
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 28px;
}
.process-step {
  text-align: center;
  padding: 20px 12px;
  background: var(--cloud);
  border-radius: var(--radius-md);
  position: relative;
}
.process-step-num {
  width: 32px; height: 32px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 14px;
  margin: 0 auto 10px;
}
.process-step h5 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 13px;
  color: var(--navy);
}
.process-step p { font-size: 11px; color: var(--steel); margin-top: 4px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,61,107,0.1);
  background: white;
}
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-card {
  background: var(--cloud);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 16px;
}
.contact-info-card h4 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 16px;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-item {
  display: flex; gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}
.contact-item-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(11,61,107,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 12px;
  color: var(--steel);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.emergency-card {
  background: linear-gradient(135deg, #B91C1C, #991B1B);
  color: white;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.emergency-card h4 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 16px;
  margin-bottom: 8px;
}
.emergency-card .phone {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 24px;
  letter-spacing: 0.05em;
}
.emergency-card p { font-size: 12px; opacity: 0.8; margin-top: 4px; }
.map-placeholder {
  width: 100%; height: 200px;
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel); font-size: 13px;
  margin-top: 16px;
}

/* ============================================================
   MISSION VISION CARDS
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
}
.mv-card h3 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.mv-card h3 span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(232,118,43,0.1);
  border-radius: var(--radius-sm);
  font-size: 18px;
}
.mv-card p { font-size: 14px; color: var(--steel); line-height: 1.8; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.5);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.4);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 15px;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
}
.footer-col a:hover { color: white; padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  flex-wrap: wrap; gap: 10px;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 90px; right: 24px; z-index: 900;
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--orange); }
.back-to-top svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }

/* ============================================================
   PORTFOLIO GALLERY & LIGHTBOX
   ============================================================ */
.portfolio-region-tabs {
  display: flex; gap: 0;
  margin-bottom: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--navy);
}
.portfolio-region-btn {
  flex: 1;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.portfolio-region-btn:first-child { border-right: 2px solid var(--navy); }
.portfolio-region-btn:hover { background: var(--cloud); }
.portfolio-region-btn.active {
  background: var(--navy);
  color: white;
}
.portfolio-region-btn .flag {
  font-size: 20px;
  line-height: 1;
}
.portfolio-region { display: none; }
.portfolio-region.active { display: block; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cloud) 0%, var(--border) 100%);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: var(--steel);
  font-size: 13px;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}
.gallery-placeholder svg {
  opacity: 0.3;
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,31,51,0.85) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 15px;
  color: white;
  margin-bottom: 4px;
}
.gallery-item-overlay p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.gallery-item-overlay .zoom-icon {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(232,118,43,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay .zoom-icon { transform: scale(1); }
.zoom-icon svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(10,31,51,0.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-content {
  position: relative;
  max-width: 900px; width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cloud);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-content img {
  width: 100%; height: auto; max-height: 80vh;
  object-fit: contain;
}
.lightbox-placeholder {
  width: 100%; height: 60vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: var(--steel);
  font-family: var(--font-heading);
  font-size: 16px;
}
.lightbox-close {
  position: absolute; top: -48px; right: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: white; font-size: 20px;
}
.lightbox-close:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}
.lightbox-nav:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-nav svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(10,31,51,0.9));
  color: white;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 14px;
}
.lightbox-counter {
  position: absolute; top: -48px; left: 0;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-heading);
  font-size: 14px;
}

/* ============================================================
   ABOUT SUB-TABS
   ============================================================ */
.about-tabs {
  display: flex; gap: 4px; flex-wrap: wrap;
  background: var(--cloud);
  padding: 6px;
  border-radius: var(--radius-md);
  margin-bottom: 48px;
}
.about-tab-btn {
  padding: 12px 22px;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--steel);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.about-tab-btn:hover { color: var(--navy); background: rgba(255,255,255,0.6); }
.about-tab-btn.active {
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow-sm);
}
.about-tab-content { display: none; }
.about-tab-content.active { display: block; }

.management-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.management-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.management-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.management-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(11,61,107,0.08), rgba(11,61,107,0.03));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
  color: var(--navy);
  border: 2px solid var(--cloud);
}
.management-card h4 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}
.management-card p {
  font-size: 12px;
  color: var(--steel);
  letter-spacing: 0.03em;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.client-logo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 13px;
  color: var(--steel);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.client-logo-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.qa-section-block {
  padding: 28px;
  background: var(--cloud);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange);
  margin-bottom: 20px;
}
.qa-section-block h4 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
}
.qa-section-block p {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.8;
}

.profile-placeholder {
  background: linear-gradient(135deg, var(--midnight), var(--navy));
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: white;
}
.profile-placeholder h3 {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 24px;
  margin-bottom: 12px;
}
.profile-placeholder p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-shapes { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-py: 60px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 36px; }
  .why-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats-row { flex-wrap: wrap; gap: 24px; }
  .intro-features { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .timeline::before { left: 16px; }
  .timeline-item { width: 100%; padding-left: 48px; padding-right: 0; }
  .timeline-item:nth-child(even) { margin-left: 0; padding-left: 48px; }
  .timeline-item::after { left: 9px !important; right: auto !important; }
  .top-bar { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .about-tabs { gap: 2px; padding: 4px; }
  .about-tab-btn { padding: 10px 14px; font-size: 12px; }
  .management-grid { grid-template-columns: 1fr 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .portfolio-region-btn { font-size: 12px; padding: 12px 16px; }
  .lightbox { padding: 20px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: -44px; }
  .lightbox-counter { display: none; }
}

/* WordPress Admin Bar Fix */
body.admin-bar header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar header { top: 46px; }
}
