/* ============================================================
   URBAN SECURITIES SERVICES - Main Stylesheet
   Color Scheme: Blue + White + Black
   ============================================================ */

:root {
  --primary:       #1a56db;   /* Main Blue */
  --primary-dark:  #1341b3;
  --primary-light: #3b82f6;
  --dark:          #0d1117;   /* Near Black */
  --dark2:         #111827;
  --white:         #ffffff;
  --light-bg:      #f0f4ff;   /* Very light blue-white */
  --light-bg2:     #e8effd;
  --text-dark:     #0d1117;
  --text-body:     #374151;
  --text-muted:    #6b7280;
  --border:        #d1ddf5;
  --section-gap:   90px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--dark);
  padding: 9px 0;
  font-size: 13px;
  color: #cbd5e1;
}
.topbar a { color: #cbd5e1; transition: color 0.2s; }
.topbar a:hover { color: var(--white); }
.topbar .sep { margin: 0 12px; opacity: 0.3; }
.topbar .social-top a {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: all 0.2s;
}
.topbar .social-top a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white) !important;
  padding: 0;
  box-shadow: 0 2px 20px rgba(26,86,219,0.08);
  z-index: 1000;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(26,86,219,0.15);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0;
  width: 100%;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  width: 50px; height: 50px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
}
.brand-text .name {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.brand-text .tagline {
  font-size: 10px;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px !important;
  transition: color 0.2s;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
  border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}
.btn-nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  font-weight: 700;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: all 0.3s;
}
.btn-nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,86,219,0.35);
}
.btn-nav-cta::after { display: none !important; }
.navbar-toggler {
  border: 2px solid var(--primary) !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826%2C86%2C219%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #1a3566 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,86,219,0.2) 0%, transparent 70%);
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
}
.page-banner h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-banner h1 span { color: #60a5fa; }
.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 14px; }
.breadcrumb-item a { color: rgba(255,255,255,0.6); }
.breadcrumb-item a:hover { color: #60a5fa; }
.breadcrumb-item.active { color: var(--white); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================================
   HERO (Home Page)
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3566 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(26,86,219,0.12) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 2px; height: 2px;
  background: #60a5fa;
  border-radius: 50%;
  opacity: 0.5;
  animation: float-up 10s infinite linear;
}
@keyframes float-up {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(2); opacity: 0; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,86,219,0.2);
  border: 1px solid rgba(96,165,250,0.3);
  color: #93c5fd;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #60a5fa;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
}
.hero h1 .highlight {
  color: #60a5fa;
}
.hero-subtitle {
  font-size: 18px;
  color: #93c5fd;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero p.desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom:hover {
  background: transparent;
  color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,86,219,0.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 30px;
  font-weight: 900;
  color: #60a5fa;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Enquiry Card */
.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 16px 16px 0 0;
}
.hero-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 22px;
}
.hero-card h3 span { color: var(--primary); }
.enquiry-form .form-control,
.enquiry-form .form-select {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
  background: var(--white);
  border-color: var(--primary);
  color: var(--text-dark);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.enquiry-form .form-control::placeholder { color: var(--text-muted); font-size: 13px; }
.btn-submit {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 13px;
  border: none;
  border-radius: 8px;
  width: 100%;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}
.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,86,219,0.4);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--primary);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: marquee 35s linear infinite;
}
.ticker-inner span {
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  padding: 0 28px;
  letter-spacing: 0.5px;
}
.ticker-inner span::before {
  content: '★';
  margin-right: 10px;
  opacity: 0.7;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-pad { padding: var(--section-gap) 0; }
.section-pad-sm { padding: 60px 0; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,86,219,0.08);
  border: 1px solid rgba(26,86,219,0.2);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--primary); }
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 620px;
}
.divider {
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 14px 0;
}
.divider.centered { margin: 14px auto; }

/* ============================================================
   ABOUT (Home snippet)
   ============================================================ */
.about-section { background: var(--white); }

.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: 16px;
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3566 100%);
  height: 480px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.about-badge-float {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(26,86,219,0.4);
}
.about-badge-float .num { font-size: 34px; line-height: 1; }
.about-badge-float .text { font-size: 11px; letter-spacing: 1px; opacity: 0.9; }

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin: 3px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.about-point-icon {
  width: 44px; height: 44px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}
.about-point-text h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.about-point-text p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.7; }

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

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(26,86,219,0.12);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 62px; height: 62px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.service-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  margin-top: 16px;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }
.why-card {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.3s;
}
.why-card:hover {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(26,86,219,0.1);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
}
.why-card h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #1a3566 100%);
  padding: 70px 0;
}
.stat-item { text-align: center; position: relative; }
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-item:last-child::after { display: none; }
.stat-num {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  color: #60a5fa;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section { background: var(--light-bg); }
.industry-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 28px 18px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}
.industry-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(26,86,219,0.1);
  transform: translateY(-4px);
}
.industry-icon {
  width: 65px; height: 65px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 26px;
  margin: 0 auto 14px;
  transition: all 0.3s;
}
.industry-card:hover .industry-icon {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.industry-card h5 { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testimonial-card {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 35px rgba(26,86,219,0.1);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 80px;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-size: 15px; font-weight: 700; color: var(--dark); }
.author-role { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   TEAM
   ============================================================ */
.team-section { background: var(--light-bg); }
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(26,86,219,0.12);
}
.team-img {
  height: 220px;
  background: linear-gradient(135deg, var(--dark) 0%, #1a3566 100%);
  display: flex; align-items: center; justify-content: center;
}
.team-avatar {
  width: 100px; height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; font-weight: 900;
  color: var(--white);
  border: 4px solid rgba(255,255,255,0.2);
}
.team-info { padding: 24px; }
.team-info h4 { font-size: 19px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.team-role { color: var(--primary); font-size: 13px; font-weight: 600; letter-spacing: 1px; margin-bottom: 12px; }
.team-info p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.team-social { display: flex; justify-content: center; gap: 8px; }
.team-social a {
  width: 34px; height: 34px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.2s;
}
.team-social a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--light-bg); }
.contact-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.3s;
}
.contact-info-card:hover { border-color: var(--primary); }
.contact-icon {
  width: 50px; height: 50px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-card h6 {
  font-size: 11px; font-weight: 700;
  color: var(--text-muted); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 5px;
}
.contact-info-card p { font-size: 15px; color: var(--dark); font-weight: 600; margin: 0; line-height: 1.6; }
.contact-info-card a { color: var(--dark); transition: color 0.2s; }
.contact-info-card a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 30px rgba(26,86,219,0.06);
}
.contact-form-card h4 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.contact-form-card h4 span { color: var(--primary); }
.contact-form .form-control,
.contact-form .form-select {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
  color: var(--text-dark);
}
.contact-form .form-control::placeholder { color: var(--text-muted); font-size: 13px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* CTA Banner */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  right: -50px; top: -50px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-section h2 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 0; }
.btn-cta-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 800;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 15px;
  border: 2px solid var(--white);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-cta-outline {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  padding: 70px 0 0;
}
.footer-brand .name { font-size: 20px; font-weight: 800; color: var(--white); }
.footer-brand .tagline { font-size: 10px; color: #60a5fa; letter-spacing: 2px; text-transform: uppercase; }
footer p { font-size: 14px; color: #9ca3af; line-height: 1.8; }
.footer-title {
  font-size: 13px; font-weight: 700;
  color: var(--white); letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--primary);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: #9ca3af;
  font-size: 14px;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 7px;
}
.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 16px; font-weight: 700;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact a {
  color: #9ca3af;
  font-size: 14px;
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-contact a i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  margin-top: 50px;
}
.footer-bottom p { font-size: 13px; margin: 0; color: #6b7280; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af;
  font-size: 15px;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(26,86,219,0.4);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

.floating-wa {
  position: fixed;
  bottom: 86px; right: 30px;
  width: 50px; height: 50px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.3s;
  animation: pulse-wa 3s infinite;
}
.floating-wa:hover { transform: scale(1.1); color: var(--white); }
@keyframes pulse-wa {
  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); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   LOGO & IMAGE STYLES
   ============================================================ */

/* Navbar Logo */
.navbar-logo {
  height: 90px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
/* Footer Logo */
.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  opacity: 0.92;
}

/* About Section Image */
.about-img-wrap img.about-img {
  border-radius: 16px;
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-img-wrap .about-img-placeholder {
  display: flex;
}

/* Service Image */
.service-img-wrap {
  width: 100%;
  height: 190px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin: -32px -24px 24px;
  width: calc(100% + 48px);
  background: linear-gradient(135deg, #e8effd, #d1ddf5);
  border-bottom: 2px dashed var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-wrap img.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-img-wrap .svc-ph {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px;
}
.service-img-wrap .svc-ph i { font-size: 36px; opacity: 0.4; }

/* Team Photo */
.team-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-img-placeholder {
  height: 240px;
  background: linear-gradient(135deg, var(--dark) 0%, #1a3566 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.team-ph-label {
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 1px;
  text-align: center;
  padding: 0 16px;
}

/* Page banner image placeholder */
.page-banner-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ============================================================
   TOPBAR — Redesigned (clean, mobile-ready)
   ============================================================ */
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: hidden;
  min-width: 0;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.topbar-link:hover { color: #fff; }
.topbar-sep { color: rgba(255,255,255,0.18); font-size: 12px; }
.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(26,86,219,0.3);
  color: #93c5fd;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
}
.topbar-social {
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #9ca3af;
  font-size: 12px;
  transition: all 0.2s;
}
.topbar-social:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.topbar-social.wa:hover { background: #25d366; border-color: #25d366; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-card { margin-top: 40px; }
  .stat-item::after { display: none; }
  .about-badge-float { left: 10px; }

  /* ---- Mobile Navbar ---- */
  .navbar-inner { padding: 10px 0; align-items: center; }
  .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    border-top: 1px solid rgba(26,86,219,0.12);
    padding: 10px 0 14px;
    margin-top: 8px;
    background: var(--white);
  }
  .navbar-nav { width: 100%; gap: 0; }
  .navbar-nav .nav-link {
    padding: 12px 6px !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 15px;
    display: flex;
    align-items: center;
  }
  .navbar-nav .nav-link::after { display: none !important; }
  .navbar-nav li:last-child .nav-link { border-bottom: none; }
  .btn-nav-cta {
    display: flex !important;
    justify-content: center;
    margin: 14px 0 0 0 !important;
    width: 100%;
    padding: 13px 20px !important;
    font-size: 15px;
    border-radius: 8px;
  }
  .navbar-logo { height: 76px; max-width: 290px; }
}
@media (max-width: 767px) {
  :root { --section-gap: 60px; }
  .hero h1 { font-size: 30px; }
  .hero-stats { gap: 18px; }
  .about-img-wrap img.about-img { height: 280px; }
  .about-img-placeholder { height: 280px; }
  .contact-form-card { padding: 22px; }
  .cta-section .d-flex { flex-direction: column; gap: 14px; }
  .service-img-wrap { height: 160px; }
}
@media (max-width: 575px) {
  .topbar { padding: 6px 0; font-size: 11px; }
  .navbar-logo { height: 62px; max-width: 230px; }
  .hero-stats { gap: 14px; }
  .hero-stat .num { font-size: 24px; }
  .hero-stat .lbl { font-size: 10px; }
  .about-badge-float { left: 0; bottom: -10px; padding: 12px 16px; }
  .about-badge-float .num { font-size: 26px; }
  .page-banner { padding: 55px 0; }
  .page-banner h1 { font-size: 24px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; }
}
@media (max-width: 400px) {
  .topbar-badge { display: none !important; }
}

/* ── City Location Cards ───────────────────────────────────────────── */
.city-link-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  height: 100%;
}
.city-link-card > i:first-child {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}
.city-link-card span { flex: 1; }
.city-link-card:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(59,130,246,0.2);
}
.city-link-card:hover > i:first-child { color: #fff; }
@media (max-width: 576px) {
  .city-link-card { padding: 12px 14px; font-size: 13px; gap: 8px; }
  .city-link-card > i:first-child { font-size: 15px; }
}
