/* ============================================================
   AFRICA PORTAL IT SOLUTIONS — Main Stylesheet
   Corporate Authority Theme
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #003D7A;
  --primary-dark: #002a56;
  --accent: #0066CC;
  --accent-light: #4dabf7;
  --accent-hover: #0052a3;
  --text-dark: #1A1A1A;
  --text-body: #555;
  --text-light: #888;
  --bg-white: #ffffff;
  --bg-light: #f8f9fb;
  --bg-lighter: #f0f2f5;
  --border-light: #e8eaed;
  --success: #00cc88;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.3s ease;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Utility Classes ---- */
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.bg-light { background: var(--bg-light); }
.bg-primary { background: var(--primary); }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: ''; width: 30px; height: 1.5px; background: var(--accent);
}
.section-title {
  font-size: 42px; font-weight: 800; color: var(--primary);
  margin-bottom: 16px; line-height: 1.2;
}
.section-subtitle {
  font-size: 17px; color: var(--text-light); max-width: 620px;
  margin: 0 auto; line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--radius-sm); font-size: 15px;
  font-weight: 600; cursor: pointer; border: none; transition: var(--transition);
  text-decoration: none; line-height: 1.4;
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,102,204,0.35);
}
.btn-secondary {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  border-color: #fff; background: rgba(255,255,255,0.08);
}
.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent); color: #fff;
}
.btn-white {
  background: #fff; color: var(--primary);
}
.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--primary-dark); color: rgba(255,255,255,0.8);
  font-size: 13px; padding: 10px 0;
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.top-bar-left { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--accent-light); font-size: 12px; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-right a {
  color: rgba(255,255,255,0.7); font-size: 13px;
  display: flex; align-items: center; gap: 6px;
}
.top-bar-right a:hover { color: #fff; }
.top-bar-right a i { color: var(--accent-light); font-size: 12px; }
.top-bar-social { display: flex; gap: 12px; margin-left: 12px; padding-left: 12px; border-left: 1px solid rgba(255,255,255,0.15); }
.top-bar-social a { font-size: 14px; color: rgba(255,255,255,0.5); }
.top-bar-social a:hover { color: var(--accent-light); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; padding-bottom: 10px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-img { height: 52px; width: auto; object-fit: contain; }
.logo-text-group { line-height: 1.2; }
.logo-name {
  font-size: 18px; font-weight: 800; color: var(--primary);
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 10px; font-weight: 500; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 1.8px;
}

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--text-dark); font-size: 14px; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-sm);
  position: relative;
}
.nav-links a:hover { color: var(--accent); background: rgba(0,102,204,0.04); }
.nav-links a.active { color: var(--accent); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 10px; margin-left: 4px;
}
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  border-radius: var(--radius-sm); font-size: 14px; color: var(--text-body);
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--accent); }
.dropdown-menu a i { width: 18px; text-align: center; color: var(--accent); font-size: 14px; }

/* Nav CTA */
.nav-cta {
  background: var(--accent) !important; color: #fff !important;
  padding: 10px 24px !important; border-radius: var(--radius-sm);
  font-weight: 600 !important; margin-left: 8px;
}
.nav-cta:hover { background: var(--primary) !important; }

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text-dark);
  margin: 5px auto; transition: var(--transition); border-radius: 2px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #001a3a 0%, var(--primary) 45%, #004d99 100%);
  overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background: url('../images/stock/hero-conference-event.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-gradient-orb {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  filter: blur(100px); opacity: 0.15;
}
.hero-orb-1 { background: var(--accent); top: -200px; right: -100px; }
.hero-orb-2 { background: #00cc88; bottom: -200px; left: -100px; opacity: 0.08; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; padding: 10px 22px; margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge-dot {
  width: 8px; height: 8px; background: var(--success); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,204,136,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0,204,136,0); }
}
.hero-badge span { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500; }
.hero h1 {
  font-size: 52px; font-weight: 800; color: #fff; line-height: 1.12;
  margin-bottom: 22px;
}
.hero h1 .highlight { color: var(--accent-light); }
.hero-description {
  font-size: 18px; color: rgba(200,216,232,0.9); line-height: 1.75;
  margin-bottom: 36px; max-width: 560px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-buttons .btn { padding: 16px 34px; }

/* Trust Logos row */
.hero-trust {
  margin-top: 50px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-trust p { color: rgba(255,255,255,0.4); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.hero-trust-logos { display: flex; gap: 32px; align-items: center; opacity: 0.4; }
.hero-trust-logos span { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { position: relative; z-index: 3; margin-top: -52px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); overflow: hidden;
}
.stat-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--border-light);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-light); }
.stat-icon {
  width: 48px; height: 48px; background: rgba(0,102,204,0.08);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.stat-icon i { color: var(--accent); font-size: 20px; }
.stat-number {
  font-size: 36px; font-weight: 800; color: var(--primary);
  margin-bottom: 4px; line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-light); font-weight: 500; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: #fff; border-radius: var(--radius-lg); padding: 40px 32px;
  border: 1px solid var(--border-light); transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.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, #e8f0fe, #d0e2ff);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.service-icon i { font-size: 26px; color: var(--primary); transition: var(--transition); }
.service-card:hover .service-icon i { color: #fff; }
.service-card h3 {
  font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 12px;
}
.service-card p {
  font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 20px;
}
.service-link {
  color: var(--accent); font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-link:hover { gap: 12px; color: var(--primary); }

/* ============================================================
   PRODUCTS / IDENTILAM
   ============================================================ */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-light); transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-img {
  height: 200px; background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; position: relative; overflow: hidden;
}
.product-img img {
  max-width: 85%; max-height: 170px; object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-info { padding: 20px 24px; }
.product-info h4 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.product-info p { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.product-badge {
  position: absolute; top: 12px; right: 12px; background: var(--accent);
  color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 20px;
}

/* ============================================================
   ABOUT / WHY CHOOSE US
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-content h2 {
  font-size: 38px; font-weight: 800; color: var(--primary);
  margin-bottom: 20px; line-height: 1.2;
}
.about-content > p {
  font-size: 16px; color: var(--text-body); line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.about-feature {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: var(--bg-light); border-radius: var(--radius-sm);
  transition: var(--transition);
}
.about-feature:hover { background: #e0ebff; }
.about-feature i { color: var(--accent); font-size: 18px; flex-shrink: 0; }
.about-feature span { font-size: 14px; font-weight: 600; color: var(--primary); }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.about-image-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--accent); color: #fff; padding: 20px 28px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-image-badge .num { font-size: 32px; font-weight: 800; line-height: 1; }
.about-image-badge .lbl { font-size: 12px; font-weight: 500; opacity: 0.8; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.industry-card {
  text-align: center; padding: 36px 20px;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); transition: var(--transition);
}
.industry-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.industry-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: linear-gradient(135deg, #e8f0fe, #d0e2ff);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
}
.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.industry-icon i { font-size: 24px; color: var(--primary); transition: var(--transition); }
.industry-card:hover .industry-icon i { color: #fff; }
.industry-card h4 { font-size: 15px; font-weight: 600; color: var(--primary); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 80px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner .container { position: relative; z-index: 2; text-align: center; }
.cta-banner h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 550px; margin-left: auto; margin-right: auto; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
}
.contact-info h2 {
  font-size: 34px; font-weight: 800; color: var(--primary); margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text-body); line-height: 1.7; margin-bottom: 36px;
}
.contact-detail {
  display: flex; gap: 16px; margin-bottom: 24px;
}
.contact-detail-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, #e8f0fe, #d0e2ff);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon i { color: var(--primary); font-size: 18px; }
.contact-detail h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: var(--text-body); line-height: 1.5; }

/* Contact Form */
.contact-form {
  background: #fff; padding: 40px; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
}
.contact-form h3 {
  font-size: 24px; font-weight: 700; color: var(--primary); margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px;
}
.form-group label .required { color: #e74c3c; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm); font-size: 14px; color: var(--text-dark);
  background: var(--bg-white); transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E") no-repeat right 14px center; padding-right: 36px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { font-size: 12px; color: var(--text-light); margin-top: 12px; text-align: center; }

/* Success message */
.form-success {
  display: none; text-align: center; padding: 40px;
}
.form-success.show { display: block; }
.form-success i { font-size: 48px; color: var(--success); margin-bottom: 16px; }
.form-success h3 { color: var(--primary); margin-bottom: 8px; }
.form-success p { color: var(--text-body); }

/* ============================================================
   MAP
   ============================================================ */
.map-section { background: var(--bg-light); padding: 0; }
.map-container {
  width: 100%; height: 400px; border-radius: 0; overflow: hidden;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0a1628; color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 40px; margin-bottom: 50px;
}
.footer-brand .logo-name { color: #fff; margin-bottom: 14px; font-size: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.06); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; }

.footer h4 {
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.45); font-size: 14px;
  display: flex; align-items: center; gap: 6px;
}
.footer ul a:hover { color: var(--accent-light); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px;
}
.footer-contact-item i { color: var(--accent-light); margin-top: 3px; font-size: 14px; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links a:hover { color: var(--accent-light); }

/* ============================================================
   ABOUT PAGE — PAGE HERO BANNER
   ============================================================ */
.page-hero {
  position: relative; padding: 100px 0 80px;
  background: linear-gradient(135deg, #001a3a 0%, var(--primary) 45%, #004d99 100%);
  overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: 46px; font-weight: 800; color: #fff; margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px; color: rgba(200,216,232,0.9); max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}
.page-hero .breadcrumb {
  margin-bottom: 20px; font-size: 14px; color: rgba(255,255,255,0.5);
}
.page-hero .breadcrumb a { color: var(--accent-light); }
.page-hero .breadcrumb a:hover { color: #fff; }

/* ============================================================
   ABOUT PAGE — COMPANY STORY
   ============================================================ */
.company-story { padding: 100px 0; background: var(--bg-white); }
.story-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.story-text h2 {
  font-size: 36px; font-weight: 800; color: var(--primary);
  margin-bottom: 24px; line-height: 1.2;
}
.story-text p {
  font-size: 16px; color: var(--text-body); line-height: 1.8;
  margin-bottom: 16px;
}
.company-stats-inline {
  display: flex; gap: 30px; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid var(--border-light);
}
.company-stats-inline .stat-item {
  padding: 0; border: none; text-align: left;
}
.company-stats-inline .stat-item h3 {
  font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 4px;
}
.company-stats-inline .stat-item p {
  font-size: 13px; color: var(--text-light); margin-bottom: 0;
}
.story-image { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.story-image img {
  width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   ABOUT PAGE — WHY CHOOSE US
   ============================================================ */
.why-choose-us { padding: 100px 0; background: var(--bg-light); }
.why-choose-us .section-header h2 {
  font-size: 36px; font-weight: 800; color: var(--primary); margin-bottom: 12px;
}
.why-choose-us .section-header p {
  font-size: 16px; color: var(--text-light);
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 50px;
}
.feature-card {
  background: #fff; border-radius: var(--radius-lg); padding: 36px 28px;
  border: 1px solid var(--border-light); transition: var(--transition);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: linear-gradient(135deg, #e8f0fe, #d0e2ff);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.feature-icon i { font-size: 24px; color: var(--primary); transition: var(--transition); }
.feature-card:hover .feature-icon i { color: #fff; }
.feature-card h3 {
  font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 12px;
}
.feature-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* ============================================================
   ABOUT PAGE — OUR APPROACH
   ============================================================ */
.our-approach { padding: 100px 0; background: var(--bg-white); }
.our-approach .section-header h2 {
  font-size: 36px; font-weight: 800; color: var(--primary); margin-bottom: 12px;
}
.our-approach .section-header p {
  font-size: 16px; color: var(--text-light);
}
.approach-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; margin-top: 50px; flex-wrap: wrap;
}
.step {
  text-align: center; padding: 24px; flex: 1; min-width: 180px; max-width: 220px;
  position: relative;
}
.step-number {
  font-size: 48px; font-weight: 800; color: rgba(0,102,204,0.08);
  line-height: 1; margin-bottom: -10px; position: relative; z-index: 0;
}
.step-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.step-icon i { font-size: 22px; color: #fff; }
.step h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-body); line-height: 1.6; }
.step-connector {
  display: flex; align-items: center; justify-content: center;
  padding-top: 60px; color: var(--accent); font-size: 18px; opacity: 0.4;
}

/* ============================================================
   ABOUT PAGE — IDENTILAM PARTNERSHIP
   ============================================================ */
.identilam-partnership {
  padding: 100px 0;
  background: linear-gradient(135deg, #001a3a 0%, var(--primary) 100%);
  color: #fff;
}
.partnership-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center;
}
.partnership-text h2 {
  font-size: 34px; font-weight: 800; color: #fff; margin-bottom: 20px;
}
.partnership-text p {
  font-size: 16px; color: rgba(200,216,232,0.85); line-height: 1.8;
  margin-bottom: 20px;
}
.partnership-features {
  list-style: none; padding: 0; margin: 24px 0;
}
.partnership-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.9); margin-bottom: 14px;
}
.partnership-features li i { color: var(--accent-light); font-size: 16px; }
.partnership-visual {
  display: flex; align-items: center; justify-content: center;
}
.partnership-badge {
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
}
.badge-content { text-align: center; }
.badge-content i { font-size: 48px; color: var(--accent-light); margin-bottom: 12px; display: block; }
.badge-content h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.badge-content p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.badge-content .years {
  font-size: 16px; font-weight: 700; color: var(--accent-light);
}

/* ============================================================
   ABOUT PAGE — STATS (reuse stats-bar with about-page overrides)
   ============================================================ */
.about-hero ~ .stats-bar { margin-top: 0; }
.stats-bar .stats-grid .stat {
  padding: 40px 24px; text-align: center;
}
.stats-bar .stats-grid .stat h3 {
  font-size: 36px; font-weight: 800; color: var(--primary); margin-bottom: 6px;
}
.stats-bar .stats-grid .stat p {
  font-size: 14px; color: var(--text-light);
}

/* ============================================================
   SERVICES PAGE — SERVICE SECTIONS
   ============================================================ */
.service-section { padding: 80px 0; }
.service-section.bg-light { background: var(--bg-light); }
.service-section.bg-white { background: var(--bg-white); }
.service-header {
  display: flex; align-items: center; gap: 20px; margin-bottom: 28px;
}
.service-header .service-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.service-header .service-icon i { font-size: 22px; color: #fff; }
.service-header h2 {
  font-size: 28px; font-weight: 700; color: var(--primary); margin: 0;
}
.service-content { margin-bottom: 28px; }
.service-content p {
  font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 14px;
}
.service-section .features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 0; margin-bottom: 28px;
}
.feature-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: #fff; border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}
.service-section.bg-white .feature-item { background: var(--bg-light); }
.feature-item i { color: var(--accent); font-size: 16px; flex-shrink: 0; }
.feature-item span { font-size: 14px; font-weight: 600; color: var(--primary); }
.service-cta-button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--accent); color: #fff;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  transition: var(--transition);
}
.service-cta-button:hover {
  background: var(--primary); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,102,204,0.3);
}
.cta-button-large {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: #fff; color: var(--accent);
  border-radius: var(--radius-sm); font-size: 16px; font-weight: 600;
  transition: var(--transition);
}
.cta-button-large:hover {
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ============================================================
   PRODUCTS PAGE — SPECIFIC STYLES
   ============================================================ */
.products-section { padding: 60px 0; }
.filter-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px; border: 1.5px solid var(--border-light);
  background: #fff; border-radius: 50px; font-size: 14px;
  font-weight: 500; color: var(--text-body); cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.products-section .products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.eco-badge {
  position: absolute; top: 10px; left: 10px; background: #00cc88;
  color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.badging-software-section {
  padding: 80px 0; background: var(--bg-light);
}
.software-content {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center;
}
.software-text h2 {
  font-size: 32px; font-weight: 700; color: var(--primary); margin-bottom: 16px;
}
.software-text p {
  font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 20px;
}
.software-features {
  list-style: none; padding: 0; margin: 0;
}
.software-features li {
  display: flex; align-items: center; gap: 10px; padding: 8px 0;
  font-size: 15px; color: var(--text-body);
}
.software-features li i { color: var(--accent); }
.software-image img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px;
  background: var(--accent); color: #fff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; font-size: 18px; z-index: 999;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: var(--transition); box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 30px; left: 30px; z-index: 999;
}
.whatsapp-float a {
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float a:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  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; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 40px; }
  .section-title { font-size: 34px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .partnership-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero h1 { font-size: 36px; }
  .service-section .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-section .products-grid { grid-template-columns: repeat(2, 1fr); }
  .software-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  /* Mobile Nav */
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: #fff;
    padding: 20px; box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-light);
  }
  .nav-links.open a { padding: 12px 16px; }
  .nav-links.open .nav-cta { margin: 8px 0 0; text-align: center; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 20px; opacity: 1; visibility: visible; transform: none; }

  .hero { min-height: 70vh; }
  .hero h1 { font-size: 32px; }
  .hero-description { font-size: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border-light); }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .approach-steps { flex-direction: column; align-items: center; }
  .step-connector { padding-top: 0; transform: rotate(90deg); }
  .story-image img { height: 280px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero { padding: 70px 0 50px; }
  .company-story, .why-choose-us, .our-approach, .identilam-partnership { padding: 60px 0; }
  .service-section .features-grid { grid-template-columns: 1fr 1fr; }
  .products-section .products-grid { grid-template-columns: 1fr; }
  .service-section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-padding { padding: 60px 0; }
  .hero h1 { font-size: 28px; }
  .section-title { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */
.contact-section { padding: 60px 20px; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-bottom: 60px;
}

.contact-info {
  background: #f8f9fa; padding: 40px;
  border-radius: 8px; border-left: 5px solid var(--accent);
}

.contact-info h3 {
  margin-top: 0; color: var(--dark); font-size: 22px; margin-bottom: 30px;
}

.contact-info-item {
  margin-bottom: 30px; display: flex; gap: 15px;
}

.contact-info-item i {
  font-size: 20px; color: var(--accent); min-width: 24px; margin-top: 5px;
}

.contact-info-item div h4 {
  margin: 0 0 5px 0; font-weight: 600; color: var(--dark); font-size: 16px;
}

.contact-info-item div p {
  margin: 0; color: #666; font-size: 14px; line-height: 1.6;
}

.contact-info-item a {
  color: var(--accent); text-decoration: none; transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--accent-hover); text-decoration: underline;
}

.contact-page-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: white; padding: 12px 20px;
  border-radius: 5px; text-decoration: none; margin-top: 10px;
  font-weight: 500; transition: background 0.3s ease;
}

.contact-page-whatsapp:hover { background: #20ba5a; }

.contact-form {
  background: #ffffff; padding: 40px;
  border-radius: 8px; border: 1px solid #e0e0e0;
}

.contact-form h3 {
  margin-top: 0; color: var(--dark); font-size: 22px; margin-bottom: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block; margin-bottom: 8px; font-weight: 500;
  color: var(--dark); font-size: 14px;
}

.form-group label .required { color: #dc3545; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px; border: 1px solid #ddd;
  border-radius: 5px; font-family: 'Inter', sans-serif;
  font-size: 14px; transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

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

.form-submit-btn {
  background: var(--accent); color: white; border: none;
  padding: 12px 30px; border-radius: 5px; font-weight: 600;
  cursor: pointer; transition: background 0.3s ease; font-size: 14px;
}

.form-submit-btn:hover { background: var(--accent-hover); }
.form-submit-btn:active { transform: scale(0.98); }

.form-success-message {
  display: none; background: #d4edda; color: #155724;
  padding: 15px; border-radius: 5px; margin-bottom: 20px;
  border-left: 4px solid #28a745;
}

.form-success-message.show { display: block; }

.form-privacy-note {
  font-size: 12px; color: #666; margin-top: 15px; line-height: 1.6;
}

/* Maps */
.maps-section {
  width: 100%; height: 500px; margin-bottom: 60px;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.maps-section iframe { width: 100%; height: 100%; border: none; }

/* FAQ Accordion */
.faq-section { margin-bottom: 60px; }

.faq-section h2 {
  text-align: center; margin-bottom: 40px;
  font-size: 32px; color: var(--dark);
}

.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: #ffffff; border: 1px solid #e0e0e0;
  border-radius: 8px; margin-bottom: 15px; overflow: hidden;
}

.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px; background: #f8f9fa; cursor: pointer;
  user-select: none; transition: background 0.3s ease;
  font-weight: 500; color: var(--dark);
}

.faq-question:hover { background: #e9ecef; }
.faq-question i { color: var(--accent); transition: transform 0.3s ease; }

.faq-item.active .faq-question { background: #e7f3ff; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease; background: #ffffff;
}

.faq-answer p {
  padding: 20px; margin: 0; color: #666; line-height: 1.8;
}

.faq-item.active .faq-answer { max-height: 1000px; }

/* Contact CTA Banner */
.contact-section .cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: white; padding: 50px 20px; text-align: center;
  border-radius: 8px; margin-bottom: 60px;
}

.contact-section .cta-banner h2 { margin: 0 0 20px 0; font-size: 28px; }
.contact-section .cta-banner p { margin: 0 0 20px 0; font-size: 16px; opacity: 0.9; }

.contact-section .cta-banner a {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--accent); padding: 12px 30px;
  border-radius: 5px; text-decoration: none; font-weight: 600;
  transition: transform 0.3s ease;
}

.contact-section .cta-banner a:hover { transform: scale(1.05); }

/* Product image fallback */
.product-img {
  background: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px; position: relative; overflow: hidden;
}

.product-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .maps-section { height: 350px; }
  .contact-section { padding: 40px 20px; }
  .contact-section .cta-banner h2 { font-size: 24px; }
}
