/* ============================================================
   EXIMX — Brand Color System
   Logo gradient: #5B4FE8 (purple-left) → #00D4FF (cyan-right)
   Dark background: #2E3440
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:      #5B4FE8;
  --cyan:        #00D4FF;
  --dark:        #1C1F2E;
  --dark-card:   #252840;
  --dark-nav:    #12141F;
  --text:        #FFFFFF;
  --text-muted:  #9AA5BE;
  --gradient:    linear-gradient(135deg, #5B4FE8 0%, #00D4FF 100%);
  --gradient-rev:linear-gradient(135deg, #00D4FF 0%, #5B4FE8 100%);
  --border:      rgba(91, 79, 232, 0.25);
  --glow:        0 0 40px rgba(91, 79, 232, 0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(91, 79, 232, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(91, 79, 232, 0.65);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
}
.btn-outline:hover {
  background: var(--cyan);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ── NAV ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(18, 20, 31, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0.5rem 1.1rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(91, 79, 232, 0.18);
}
.nav-links a.active {
  color: var(--cyan);
}

.nav-cta {
  background: var(--gradient);
  color: #fff !important;
  border-radius: 50px !important;
  padding: 0.5rem 1.4rem !important;
  box-shadow: 0 2px 12px rgba(91,79,232,0.4);
}
.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(91,79,232,0.6) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 72px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }

.slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(91, 79, 232, 0.55) 0%,
    rgba(0, 212, 255, 0.25) 60%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 8%;
  max-width: 780px;
}
.hero-content .section-label { color: var(--cyan); -webkit-text-fill-color: var(--cyan); }
.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-content p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 520px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.dot.active {
  background: var(--cyan);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px var(--cyan);
}

.slider-arrows {
  position: absolute;
  bottom: 1.6rem;
  right: 5%;
  display: flex;
  gap: 0.5rem;
}
.arrow-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.arrow-btn:hover {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark-card);
  border-bottom: 1px solid var(--border);
  padding: 2rem 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── SECTION BASE ── */
section {
  padding: 6rem 5%;
}
.section-header {
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
}
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ── ABOUT SECTION ── */
.about-section {
  background: var(--dark-card);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,79,232,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.about-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}
.about-text p:first-of-type {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.75);
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hex-bg {
  width: 100%;
  max-width: 380px;
  opacity: 0.06;
  position: absolute;
}
.about-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  backdrop-filter: blur(10px);
  box-shadow: var(--glow);
}
.about-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.about-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.about-card span {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0,212,255,0.5);
}

/* ── HERITAGE SECTION ── */
.heritage-section {
  background: var(--dark);
  position: relative;
}
.heritage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.heritage-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.heritage-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.7);
  display: block;
}
.heritage-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(91,79,232,0.6) 0%, transparent 60%);
  z-index: 1;
}
.heritage-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(18,20,31,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.heritage-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.heritage-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}
.heritage-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.highlight-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem;
}
.highlight-item .hi-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  display: block;
}
.highlight-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.highlight-item strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

/* ── TAILORED SOLUTIONS BANNER ── */
.tailored-section {
  position: relative;
  padding: 7rem 5%;
  overflow: hidden;
  text-align: center;
}
.tailored-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.08;
  z-index: 0;
}
.tailored-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.15);
  z-index: 0;
}
.tailored-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(91,79,232,0.85) 0%,
    rgba(0,212,255,0.7) 100%
  );
  z-index: 1;
}
.tailored-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.tailored-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.tailored-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* ── SERVICES SECTION ── */
.services-section {
  background: var(--dark-card);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(91,79,232,0.5);
  box-shadow: 0 20px 50px rgba(91,79,232,0.2);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(91,79,232,0.15);
  border: 1px solid rgba(91,79,232,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  transition: all 0.35s;
}
.service-card:hover .service-icon {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(91,79,232,0.4);
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.service-card:hover h3 { color: var(--cyan); }
.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 1px;
  background: var(--gradient);
  opacity: 0.3;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.3s;
}
.contact-card:hover {
  border-color: rgba(0,212,255,0.4);
}
.contact-flag {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}
.contact-card-body h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
}
.contact-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}
.contact-card-body a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.contact-card-body a:hover { opacity: 0.75; }

/* Contact form panel */
.contact-form-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}
.contact-form-panel h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-form-panel > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(91,79,232,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(154,165,190,0.5);
}
.form-group select option { background: var(--dark-card); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
  font-size: 0.95rem;
  padding: 1rem;
}

/* ── MAP SECTION ── */
.map-section {
  background: var(--dark-card);
  padding: 5rem 5%;
}
.map-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.map-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border);
  box-shadow: var(--glow);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85) saturate(0.9);
}
.map-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(18,20,31,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 500;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.map-badge::before {
  content: '📍';
}

/* ── FOOTER ── */
footer {
  background: var(--dark-nav);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-gradient-line {
  display: block;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
  margin-bottom: 2rem;
  opacity: 0.5;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark-card);
  padding: 8rem 5% 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,79,232,0.15) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--cyan); font-weight: 600; }

/* ── ABOUT PAGE ── */
.about-page-body {
  background: var(--dark);
}
.about-page-body .prose {
  max-width: 860px;
  margin: 0 auto;
}
.about-page-body .prose p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}
.about-page-body .prose p:first-child {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.8);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,0.35);
}
.value-card .vc-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.value-card p {
  color: var(--text-muted);
  font-size: 0.87rem;
}

/* ── SERVICES PAGE ── */
.services-page section {
  background: var(--dark);
}
.service-detail-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(91,79,232,0.2);
}
.service-accent-bar {
  width: 5px;
  background: var(--gradient);
}
.service-detail-body {
  padding: 2rem 2.5rem;
}
.service-detail-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service-detail-body h3 .sdi {
  font-size: 1.6rem;
}
.service-detail-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}
.service-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid,
  .heritage-inner,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
  .hero-content { padding: 0 5%; }
  .form-row { grid-template-columns: 1fr; }
  .heritage-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 4rem 5%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── CONTACT FORM MESSAGE ── */
.form-message {
  font-size: 0.9rem;
  border-radius: 8px;
  padding: 0;
  transition: padding 0.2s ease;
}
.form-message:empty { padding: 0; }
.form-message.success {
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.75rem 1rem;
}
.form-message.error {
  color: #f87171;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  padding: 0.75rem 1rem;
}

/* ── GRADIENT DIVIDER ── */
.gradient-divider {
  height: 2px;
  background: var(--gradient);
  opacity: 0.2;
  border: none;
}
