/* ============================================================
   RELIABLE EXPERTS LIMITED – Main Stylesheet
   Color Palette:
     Primary:   #0d2251  (deep navy)
     Accent:    #f0a500  (golden amber)
     Dark:      #0a1628  (almost black navy)
     Light:     #f4f7ff  (off-white blue)
     Text:      #333333
     Muted:     #6b7280
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #0d2251;
  --primary-light: #1a3575;
  --accent:    #f0a500;
  --accent-dark: #c88a00;
  --dark:      #0a1628;
  --light:     #f4f7ff;
  --white:     #ffffff;
  --text:      #333333;
  --muted:     #6b7280;
  --border:    #e2e8f0;
  --shadow:    0 4px 24px rgba(13,34,81,.12);
  --shadow-lg: 0 8px 40px rgba(13,34,81,.18);
  --radius:    8px;
  --radius-lg: 16px;
  --transition: all .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.section-header { text-align: center; margin-bottom: 3rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,165,0,.4); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: .5rem 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar span, .topbar a {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.topbar a:hover { color: var(--accent); }
.topbar i { color: var(--accent); font-size: .85rem; }

/* ---------- NAVBAR ---------- */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(13,34,81,.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.logo-sub { font-size: .75rem; font-weight: 500; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; }

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--primary); background: var(--light); }

.nav-menu .dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border-top: 3px solid var(--accent);
  z-index: 100;
}

.nav-menu .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1.25rem;
  font-size: .88rem;
  color: var(--text);
  transition: var(--transition);
}
.dropdown-menu li a:hover { background: var(--light); color: var(--primary); padding-left: 1.6rem; }
.dropdown-menu li a i { color: var(--accent); width: 16px; }

.btn-nav-cta {
  background: var(--accent) !important;
  color: var(--dark) !important;
  padding: .5rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: .88rem !important;
  transition: var(--transition) !important;
  margin-left: .5rem;
}
.btn-nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(240,165,0,.4) !important; }

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 55%, #1a4a8f 100%);
}


.hero-shapes { position: absolute; top:0;left:0;width:100%;height:100%; overflow: hidden; pointer-events: none; z-index: 2; }
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(240,165,0,.07);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; }
.shape-3 { width: 150px; height: 150px; top: 40%; right: 25%; }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 580px;
  padding: 5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(240,165,0,.15);
  border: 1px solid rgba(240,165,0,.3);
  color: var(--accent);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero h1 span { color: var(--accent); }

.hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}

.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-stat .label { font-size: .8rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  animation: bounce 2s infinite;
}
.scroll-indicator i { font-size: 1.2rem; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ---------- SERVICES OVERVIEW ---------- */
.services-section { padding: 6rem 0; background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(13,34,81,.08), rgba(240,165,0,.15));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); }

.service-card h3 { font-size: 1.1rem; margin-bottom: .6rem; color: var(--primary); }
.service-card p { color: var(--muted); font-size: .9rem; margin-bottom: 1.25rem; }

.service-card .service-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
.service-card .tag {
  background: var(--light);
  color: var(--primary);
  padding: .2rem .7rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 500;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: .88rem;
  transition: var(--transition);
}
.service-link:hover { gap: .7rem; color: var(--accent); }

/* ---------- ABOUT SECTION ---------- */
.about-section { padding: 6rem 0; background: var(--light); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  height: 480px;
  box-shadow: var(--shadow-lg);
}

.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: var(--dark);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 700;
}
.about-badge-float .big { font-size: 2rem; line-height: 1; display: block; }
.about-badge-float .small { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; }

.about-text h2 { margin-bottom: .75rem; }
.about-text > p { color: var(--muted); margin-bottom: 1.5rem; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.feature-icon {
  width: 40px; height: 40px;
  background: rgba(240,165,0,.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: .9rem;
  flex-shrink: 0;
}

.feature-item h4 { font-size: .9rem; margin-bottom: .2rem; color: var(--primary); }
.feature-item p { font-size: .82rem; color: var(--muted); }

/* ---------- STATS SECTION ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  padding: 4rem 0;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { padding: 1rem; }
.stat-item .stat-icon { font-size: 2rem; color: var(--accent); margin-bottom: .75rem; }
.stat-item .stat-num { font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-item .stat-label { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .4rem; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- WHY CHOOSE US ---------- */
.why-section { padding: 6rem 0; background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { background: var(--primary); color: var(--white); transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.why-icon {
  width: 70px; height: 70px;
  background: var(--light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}
.why-card:hover .why-icon { background: rgba(255,255,255,.15); color: var(--accent); }
.why-card h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--primary); transition: var(--transition); }
.why-card:hover h4 { color: var(--white); }
.why-card p { font-size: .85rem; color: var(--muted); transition: var(--transition); }
.why-card:hover p { color: rgba(255,255,255,.8); }

/* ---------- GALLERY PREVIEW ---------- */
.gallery-section { padding: 6rem 0; background: var(--light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,34,81,.5);
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a7a 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(240,165,0,.06);
  top: -200px; right: -100px;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,.8); max-width: 580px; margin: 0 auto 2rem; font-size: 1.05rem; position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- CONTACT FORM ---------- */
.contact-section { padding: 6rem 0; background: var(--light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { }
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 2rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: .9rem; color: var(--primary); margin-bottom: .15rem; }
.contact-item-text span, .contact-item-text a { font-size: .88rem; color: var(--muted); }
.contact-item-text a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--primary); margin-bottom: .4rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,34,81,.08);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit { width: 100%; padding: .9rem; font-size: 1rem; border-radius: 50px; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: .9rem;
  font-weight: 500;
}
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.alert-error   { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--primary));
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/company-flyer.jpg') center/cover no-repeat;
  opacity: .07;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 550px; margin: 0 auto 1.25rem; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ---------- SERVICE PAGE LAYOUT ---------- */
.service-page { padding: 5rem 0; }

.service-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.service-content h2 { margin: 2rem 0 1rem; font-size: 1.4rem; }
.service-content h3 { margin: 1.5rem 0 .75rem; font-size: 1.15rem; color: var(--primary-light); }
.service-content p { color: var(--muted); margin-bottom: 1rem; }

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.service-list li {
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text);
  font-size: .92rem;
}
.service-list li i { color: var(--accent); }

.service-sidebar { }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-card-header {
  background: var(--primary);
  color: var(--white);
  padding: 1.1rem 1.5rem;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.sidebar-card-header i { color: var(--accent); }
.sidebar-card-body { padding: 1.25rem 1.5rem; }

.service-nav-list li {
  border-bottom: 1px solid var(--border);
}
.service-nav-list li:last-child { border: none; }
.service-nav-list li a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 0;
  font-size: .88rem;
  color: var(--text);
  transition: var(--transition);
}
.service-nav-list li a:hover { color: var(--primary); padding-left: .4rem; }
.service-nav-list li a.active { color: var(--primary); font-weight: 600; }
.service-nav-list li a i { color: var(--accent); width: 18px; }

.contact-sidebar {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: var(--white);
  text-align: center;
}
.contact-sidebar i { font-size: 2.5rem; color: var(--accent); margin-bottom: .75rem; }
.contact-sidebar h4 { margin-bottom: .5rem; color: var(--white); }
.contact-sidebar p { font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 1.25rem; }
.contact-sidebar .btn { width: 100%; justify-content: center; }

/* ---------- ABOUT PAGE ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card-body { padding: 1.25rem; }
.team-card h4 { margin-bottom: .2rem; font-size: 1rem; }
.team-card span { font-size: .82rem; color: var(--accent); font-weight: 500; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.value-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--accent);
  background: var(--white);
  box-shadow: var(--shadow);
}
.value-card h4 { color: var(--primary); margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.value-card h4 i { color: var(--accent); }
.value-card p { font-size: .88rem; color: var(--muted); }

/* ---------- GALLERY PAGE ---------- */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-full-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 240px;
  cursor: pointer;
}
.gallery-full-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-full-item:hover img { transform: scale(1.06); }
.gallery-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,34,81,.55);
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.gallery-full-item:hover .gallery-full-overlay { opacity: 1; }
.gallery-full-overlay i { color: var(--white); font-size: 2rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none; border: none;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(0,0,0,.4); border: none;
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(0,0,0,.7); }
.lightbox-caption {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.85); font-size: .9rem; text-align: center;
  background: rgba(0,0,0,.5); padding: .3rem .9rem; border-radius: 50px;
  white-space: nowrap; max-width: 90vw; overflow: hidden; text-overflow: ellipsis;
}

/* ---------- FOOTER ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,.8); }

.footer-top { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .75rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--accent);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-logo .logo-main { color: var(--white); }

.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }

.social-links {
  display: flex;
  gap: .6rem;
}
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--accent); color: var(--dark); transform: translateY(-2px); }

.footer-links li { margin-bottom: .5rem; }
.footer-links li a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-links li a:hover { color: var(--accent); padding-left: .3rem; }
.footer-links li a i { color: var(--accent); font-size: .75rem; }

.footer-contact { display: flex; flex-direction: column; gap: .9rem; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.footer-contact li i { color: var(--accent); margin-top: .15rem; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-contact li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: .5rem;
}

/* ---------- FLOATING ELEMENTS ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.5);
  z-index: 900;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.6); }

.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .9rem;
  box-shadow: var(--shadow);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--accent); color: var(--dark); }

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.py-6 { padding: 6rem 0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
.about-grid { grid-template-columns: 1fr; }
  .about-img { height: 320px; }
  .about-badge-float { right: .5rem; bottom: -1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-page-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
    transition: right .35s ease;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { padding: .8rem .5rem; border-radius: 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-menu > li > a.btn-nav-cta { margin: 1rem 0 0; border-radius: 50px !important; width: 100%; justify-content: center; }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: var(--light);
    border-radius: var(--radius);
    margin: .25rem 0 .5rem;
    padding: .25rem 0;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu li a { padding: .55rem 1rem; }

  .hero { min-height: 70vh; }
  .hero-stats { gap: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid, .gallery-full-grid { grid-template-columns: 1fr; }
  .stats-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
