/* ============================================
   Chgracom Nigeria Limited — Main Stylesheet
   Brand Color: #F5821F | Dark: #1a1a2e | Light: #fff8f3
   Fonts: Playfair Display + Poppins
   ============================================ */

/* === CSS VARIABLES === */
:root {
  --orange:       #F5821F;
  --orange-dark:  #d96d10;
  --orange-light: #fde3c6;
  --dark:         #1a1a2e;
  --dark-mid:     #2c2c4a;
  --light-bg:     #fff8f3;
  --light-gray:   #f5f5f5;
  --text:         #333344;
  --text-light:   #6b6b80;
  --white:        #ffffff;
  --border:       #e8e0d8;
  --shadow:       0 4px 24px rgba(26,26,46,0.10);
  --shadow-lg:    0 12px 48px rgba(26,26,46,0.16);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   all 0.3s ease;
  --font-body:    'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* === 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(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === UTILITY === */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }

.section-label {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.section-header { margin-bottom: 50px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245,130,31,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,130,31,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* === TOPBAR === */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-contact a, .topbar-social a { color: rgba(255,255,255,0.75); }
.topbar-contact a:hover { color: var(--orange); }
.topbar-contact i { color: var(--orange); margin-right: 5px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 0.72rem;
}
.topbar-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* === HEADER === */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.site-logo img { height: 56px; width: auto; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav ul li a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav ul li a i { font-size: 0.8rem; color: var(--orange); }
.main-nav ul li a:hover { color: var(--orange); background: var(--orange-light); }
.main-nav ul li.active a {
  color: var(--orange);
  background: var(--orange-light);
  font-weight: 600;
}
.nav-cta-btn {
  margin-left: 16px;
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 4px 15px rgba(245,130,31,0.3);
}
.nav-cta-btn:hover { background: var(--orange-dark) !important; transform: translateY(-2px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  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); }

/* ============================================
   HOME PAGE — HERO
   ============================================ */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 50%, #2a1a0e 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5821F' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-shape {
  position: absolute;
  right: -100px; top: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,130,31,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-shape2 {
  position: absolute;
  left: -150px; bottom: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,130,31,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 20px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,130,31,0.15);
  border: 1px solid rgba(245,130,31,0.3);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease;
}
.hero-title span { color: var(--orange); }
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease;
}
.hero-visual {
  animation: fadeInRight 0.9s ease;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.hero-stat-card:hover {
  background: rgba(245,130,31,0.15);
  border-color: rgba(245,130,31,0.3);
  transform: translateY(-4px);
}
.hero-stat-card .stat-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 10px;
}
.hero-stat-card .stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
.hero-stat-card .stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-top: 4px;
}

/* === WHY CHOOSE US (HOME) === */
.why-section { background: var(--light-bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.why-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.why-card .card-icon {
  width: 72px; height: 72px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--orange);
  transition: var(--transition);
}
.why-card:hover .card-icon { background: var(--orange); color: var(--white); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* === SERVICES PREVIEW (HOME) === */
.services-preview { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-top {
  background: linear-gradient(135deg, var(--dark), var(--dark-mid));
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-card-top::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: rgba(245,130,31,0.12);
  border-radius: 50%;
}
.service-card-top .svc-icon {
  font-size: 3rem;
  color: var(--orange);
  margin-bottom: 0;
}
.service-card-body { padding: 28px; }
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; }
.service-card-body a {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-body a:hover { gap: 10px; }

/* === STATS COUNTER === */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F5821F' fill-opacity='0.05'%3E%3Cpath d='M0 0h20v20H0zm20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.stat-item { text-align: center; padding: 20px; }
.stat-item .stat-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 14px;
}
.stat-item .counter {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
.stat-item .stat-plus { color: var(--orange); }
.stat-item p {
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  font-size: 0.9rem;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -80px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 2; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 60%, #2a1a0e 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F5821F' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-banner-inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 14px;
}
.page-banner p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

/* About Story */
.about-story { background: var(--white); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-image-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(245,130,31,0.4);
}
.about-image-badge .badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.about-image-badge p { font-size: 0.8rem; margin-top: 4px; opacity: 0.9; }

.about-content .lead {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
  border-left: 4px solid var(--orange);
  padding-left: 20px;
}
.about-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-checklist { margin: 24px 0 30px; display: flex; flex-direction: column; gap: 12px; }
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 0.95rem;
}
.about-checklist li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

/* Mission / Vision / Commitment */
.mvc-section { background: var(--light-bg); }
.mvc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.mvc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.mvc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}
.mvc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mvc-card .mvc-icon {
  width: 80px; height: 80px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--orange);
  transition: var(--transition);
}
.mvc-card:hover .mvc-icon { background: var(--orange); color: var(--white); }
.mvc-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 14px;
}
.mvc-card p { color: var(--text-light); line-height: 1.8; font-size: 0.95rem; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero { background: var(--light-bg); padding: 80px 0; }
.service-category { padding: 80px 0; }
.service-category:nth-child(even) { background: var(--light-bg); }
.service-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.svc-cat-icon {
  width: 70px; height: 70px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--white);
  flex-shrink: 0;
}
.svc-cat-title h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
}
.svc-cat-title p { color: var(--text-light); font-size: 0.95rem; }

.svc-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.svc-item-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}
.svc-item-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(245,130,31,0.15);
  transform: translateY(-4px);
}
.svc-item-card i {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 12px;
}
.svc-item-card h4 { font-size: 0.92rem; color: var(--dark); font-weight: 600; }
.svc-item-card p { font-size: 0.82rem; color: var(--text-light); margin-top: 6px; line-height: 1.5; }

.service-full-desc {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border-left: 5px solid var(--orange);
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.service-full-desc h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.service-full-desc p { color: var(--text-light); line-height: 1.85; margin-bottom: 12px; }

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.92) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-content h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.portfolio-overlay-content span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 500;
}
.portfolio-overlay-content .view-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px; height: 50px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}
.portfolio-item:hover .view-btn { transform: translate(-50%, -50%) scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.lightbox img { border-radius: var(--radius); width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; color: var(--orange); }
.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 16px;
  font-size: 0.95rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.contact-info-card > p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(245,130,31,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text p:first-child {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}
.contact-detail-text p:last-child {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.5;
}
.contact-detail-text a { color: rgba(255,255,255,0.6); }
.contact-detail-text a:hover { color: var(--orange); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-form-card > p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(245,130,31,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-error { color: #e53e3e; font-size: 0.82rem; margin-top: 4px; display: none; }
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 60px;
}
.map-wrapper iframe { width: 100%; height: 400px; border: none; display: block; }

/* === SUCCESS PAGE === */
.success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
}
.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
}
.success-icon {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(34,197,94,0.35);
}
.success-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 14px;
}
.success-card p { color: var(--text-light); line-height: 1.8; margin-bottom: 10px; }
.success-card .btn { margin-top: 24px; }

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-body { background: #f0f2f5; min-height: 100vh; }
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 20px;
}
.admin-login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.admin-login-card img { height: 60px; margin: 0 auto 24px; }
.admin-login-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.admin-login-card p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 32px; }
.login-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 20px;
  text-align: left;
}

.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--dark);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow-y: auto;
}
.sidebar-brand {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-brand img { height: 44px; }
.sidebar-brand p { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-top: 4px; }
.sidebar-nav { padding: 20px 0; flex: 1; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.sidebar-nav a i { width: 18px; text-align: center; color: var(--orange); }
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--white);
  background: rgba(245,130,31,0.12);
  border-right: 3px solid var(--orange);
}
.sidebar-nav .nav-divider {
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 22px 6px;
}
.sidebar-logout {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sidebar-logout a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: var(--transition);
}
.sidebar-logout a:hover { color: #ef4444; }

.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.admin-topbar {
  background: var(--white);
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-topbar h1 { font-size: 1.1rem; color: var(--dark); font-weight: 600; }
.admin-topbar-right { display: flex; align-items: center; gap: 16px; }
.admin-user {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text);
}
.admin-user-avatar {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.admin-content { padding: 30px; flex: 1; }

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 18px;
}
.admin-stat-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.admin-stat-icon.orange { background: rgba(245,130,31,0.12); color: var(--orange); }
.admin-stat-icon.blue   { background: rgba(59,130,246,0.12);  color: #3b82f6; }
.admin-stat-icon.green  { background: rgba(34,197,94,0.12);   color: #22c55e; }
.admin-stat-icon.purple { background: rgba(168,85,247,0.12);  color: #a855f7; }
.admin-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.admin-stat-label { font-size: 0.82rem; color: var(--text-light); margin-top: 2px; }

.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.admin-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card-header h3 { font-size: 1rem; color: var(--dark); font-weight: 600; }
.admin-card-body { padding: 24px; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: var(--light-bg);
  padding: 12px 14px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
  vertical-align: top;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--light-bg); }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-new { background: rgba(34,197,94,0.12); color: #16a34a; }
.badge-read { background: rgba(156,163,175,0.15); color: #6b7280; }

.upload-form { max-width: 700px; }
.upload-dropzone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--light-bg);
}
.upload-dropzone:hover, .upload-dropzone.dragover {
  border-color: var(--orange);
  background: rgba(245,130,31,0.04);
}
.upload-dropzone i { font-size: 2.5rem; color: var(--text-light); margin-bottom: 12px; }
.upload-dropzone p { color: var(--text-light); font-size: 0.9rem; }
.upload-dropzone span { color: var(--orange); font-weight: 600; }

.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text);
  transition: var(--transition);
}
.pagination a:hover { background: var(--orange-light); border-color: var(--orange); color: var(--orange); }
.pagination .current { background: var(--orange); border-color: var(--orange); color: var(--white); }

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.filter-bar input, .filter-bar select {
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
}
.filter-bar input:focus, .filter-bar select:focus { border-color: var(--orange); }

/* === FOOTER === */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-wave { display: block; line-height: 0; margin-bottom: -2px; }
.footer-wave svg { width: 100%; height: 60px; }
.footer-main { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-brand .footer-logo { height: 50px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i { color: var(--orange); font-size: 0.7rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-contact-list li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; font-size: 0.9rem; }
.footer-contact-list a { color: rgba(255,255,255,0.55); }
.footer-contact-list a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom strong { color: var(--orange); }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(245,130,31,0.4);
  z-index: 900;
  transition: var(--transition);
}
.back-to-top:hover { background: var(--orange-dark); transform: translateY(-3px); }
.back-to-top.visible { display: flex; }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.animate-fadeup { animation: fadeInUp 0.7s ease forwards; }

/* ============================================
   RESPONSIVE — TABLET & MOBILE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-inner  { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .mvc-grid    { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .admin-sidebar { width: 220px; }
  .admin-main  { margin-left: 220px; }
}

/*Added*/
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav ul {
	  display: flex;
	  align-items: center;
	  gap: 6px;
	}

@media (max-width: 768px) {
  .section  { padding: 60px 0; }
  .topbar-contact { display: none; }

  /* Mobile Nav */
  .hamburger { display: flex; }
  
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    transition: right 0.35s ease;
    z-index: 998;
    box-shadow: -4px 0 40px rgba(0,0,0,0.3);
    overflow-y: auto;	
  }
  
  
  .main-nav.open { right: 0; }
 
  .main-nav ul {
	  flex-direction: column;
	  width: 100%; gap: 0; 
	}
	
	
  
  .main-nav ul li a {
    padding: 14px 16px;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    border-radius: var(--radius);
    margin-bottom: 4px;
  }
  .main-nav ul li a:hover, .main-nav ul li.active a {
    color: var(--white);
    background: rgba(245,130,31,0.15);
  }
  
  .nav-cta-btn {
	  /*margin-left: 0;*/
	  margin-top: 20px;
	  width: 100%;
	  text-align: center;
	  justify-content: center;
	  
	  margin-left: auto;
	}

  /* Mobile overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 997;
  }
  .nav-overlay.open { display: block; }

  .hero { min-height: auto; padding: 60px 0; }
  .hero-title { font-size: 2rem; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .mvc-grid    { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; position: static; height: auto; }
  .admin-main { margin-left: 0; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 30px 20px; }
  .svc-items-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .svc-items-grid { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
}
