/* ============================================================
   SummitCore Technology Group - Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Custom Properties ── */
:root {
  --primary:       #0f2d52;
  --primary-light: #1a4a7a;
  --accent:        #2b7de9;
  --accent-hover:  #1a6dd4;
  --cta:           #3b82f6;
  --cta-hover:     #2563eb;
  --text-dark:     #1a1a2e;
  --text-gray:     #4a5568;
  --text-light:    #718096;
  --bg-light:      #e8edf4;
  --bg-white:      #ffffff;
  --border:        #e2e8f0;
  --shadow:        0 4px 6px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-lg:     0 10px 25px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --radius:        8px;
  --radius-lg:     12px;
  --transition:    0.25s ease;
  --max-width:     1200px;
}

/* ── Dark Mode Toggle Button ── */
.footer-logo-row { display: flex; align-items: center; gap: 1rem; }
.dark-mode-toggle-footer { display: none; }
.nav-toggle-item { display: none; }

.dark-mode-toggle {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.8);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.dark-mode-toggle:hover {
  border-color: white;
  color: white;
}

/* ── Dark Mode Overrides ── */
body.dark-mode {
  --bg-white:  #111827;
  --bg-light:  #172033;
  --text-dark: #f1f5f9;
  --text-gray: #94a3b8;
  --text-light: #64748b;
  --border:    #374151;
}
body.dark-mode .site-header {
  background: #111d28;
  border-color: rgba(255,255,255,0.06);
}
body.dark-mode .dropdown-menu {
  background: #1a2535;
  border-color: rgba(255,255,255,0.08);
}
body.dark-mode .dropdown-item:hover { background: rgba(255,255,255,0.08); }
body.dark-mode .service-card,
body.dark-mode .testimonial-card,
body.dark-mode .contact-form,
body.dark-mode .service-detail-card,
body.dark-mode .value-card,
body.dark-mode .contact-info-card { background: #1f2937; border-color: #374151; }
body.dark-mode .contact-info-card { background: #1e3a5f; }
body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea { background: #1f2937; border-color: #374151; color: #f1f5f9; }
body.dark-mode .dark-mode-toggle { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }
body.dark-mode .process-step .step-number { background: #111827; }
body.dark-mode .section { background: #111827; }
body.dark-mode .section-alt { background: #172033; }
body.dark-mode .why-numbered-section { background: #172033; }

/* ── Top Bar ── */
.top-bar {
  background: var(--accent);
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.14rem 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.top-bar-item i { font-size: 0.78rem; opacity: 0.85; }
.top-bar-item a { color: white; font-weight: 700; transition: opacity var(--transition); }
.top-bar-item a:hover { opacity: 0.8; }
.top-bar-divider { opacity: 0.35; }

@media (max-width: 768px) {
  .top-bar .container { flex-wrap: nowrap; gap: 0.5rem; font-size: 0.65rem; justify-content: center; }
  .top-bar-item i { display: none; }
  .top-bar-label { display: none; }
  .top-bar .container > :nth-child(4),
  .top-bar .container > :nth-child(5) { display: none; }
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-white);
  -webkit-text-size-adjust: 100%; /* prevent iOS font size inflation */
  text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Mobile performance: lazy-load off-screen sections ── */
.section, .section-alt, .why-numbered-section, .ai-article, .blog-article {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ── Mobile tap targets: ensure min 44px touch area ── */
@media (max-width: 768px) {
  .btn, .nav-link, .dropdown-item, .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .footer-links a { display: flex; }
}

/* ── Typography ── */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p  { color: var(--text-gray); line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.section-title  { margin-bottom: 0.85rem; }
.section-sub    { font-size: 1.05rem; color: var(--text-gray); max-width: 600px; }

.section-header            { margin-bottom: 3rem; }
.section-header.centered   { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── Layout ── */
.container   { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: 5rem 0; background: #e8edf4; }
.section-alt { background: #1e2a38; }
.section-alt h2,
.section-alt h3,
.section-alt h4,
.section-alt h5 { color: white; }
.section-alt p { color: rgba(255,255,255,0.72); }
.section-alt .section-label { color: #5db8ff; }
.section-alt .section-sub { color: rgba(255,255,255,0.72); }
.section-alt .service-detail-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.section-alt .service-detail-card:hover { background: rgba(255,255,255,0.1); }
.section-alt .service-detail-card h3 { color: white; }
.section-alt .service-detail-card p { color: rgba(255,255,255,0.72); }
.section-alt .service-features li { color: rgba(255,255,255,0.72); border-color: rgba(255,255,255,0.1); }
.section-alt .service-features li i { color: #5db8ff; }
.section-alt .step-number { background: #1e2a38; border-color: #5db8ff; color: #5db8ff; }
.section-alt .process-steps::before { background: rgba(255,255,255,0.15); }
.section-alt .value-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.section-alt .value-icon { background: rgba(43,125,233,0.25); color: #5db8ff; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: white; border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover); border-color: var(--accent-hover);
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(43,125,233,0.35);
}
.btn-cta {
  background: var(--cta); color: white; border-color: var(--cta);
}
.btn-cta:hover {
  background: var(--cta-hover); border-color: var(--cta-hover);
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,150,10,0.35);
}
.btn-outline {
  background: transparent; color: white; border-color: rgba(255,255,255,0.65);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-outline-dark {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: white; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #1e2a38;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-wrapper {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; gap: 2rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.logo-icon { width: 40px; height: 36px; }
.logo-text  { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name  { font-size: 1.1rem; font-weight: 800; color: white; letter-spacing: -0.02em; }
.logo-tag   { font-size: 0.62rem; color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: 0.04em; }

/* Nav links */
.nav-menu { display: flex; align-items: center; gap: 0.2rem; }
.nav-link {
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.45rem 0.55rem; font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.8); border-radius: var(--radius);
  transition: all var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: white; background: rgba(255,255,255,0.1); }
.nav-link i.fa-chevron-down { font-size: 0.65rem; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 230px; background: #243448; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  padding: 0.5rem; padding-top: 1rem; z-index: 200;
}
.dropdown:hover .dropdown-menu,
.dropdown.open  .dropdown-menu { display: block; }
.dropdown-item {
  display: block; padding: 0.6rem 0.9rem; font-size: 0.88rem;
  color: rgba(255,255,255,0.8); border-radius: var(--radius); transition: all var(--transition);
}
.dropdown-item:hover { color: white; background: rgba(255,255,255,0.1); }

.nav-right {
  display: flex; align-items: center; gap: 0.2rem; flex-shrink: 0;
}
.nav-cta { margin-left: 0.5rem; padding: 0.5rem 1.05rem; }
.cta-short { display: none; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0.5rem; border: none; background: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,0.85); transition: all var(--transition); border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a7a 55%, #0d3a6e 100%);
  color: white; padding: 6.5rem 0 5rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(43,125,233,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 730px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9); padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 0.04em;
}
.hero h1       { color: white; margin-bottom: 1.25rem; }
.hero h1 span  { color: #5db8ff; }
.hero-desc {
  font-size: 1.15rem; color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem; max-width: 580px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 4.5rem;
  padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap;
}
.hero-stat-value { font-size: 2rem; font-weight: 800; color: white; }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }

.service-card {
  background: #e8edf4; border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-3px);
}
.service-icon {
  width: 52px; height: 52px; background: rgba(43,125,233,0.1);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; color: var(--accent); flex-shrink: 0;
}
.service-card h3 { font-size: 1.05rem; }
.service-card p  { font-size: 0.88rem; line-height: 1.6; }
.service-card .learn-more {
  margin-top: auto; padding-top: 0.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--accent);
  display: flex; align-items: center; gap: 0.35rem; transition: gap var(--transition);
}
.service-card:hover .learn-more { gap: 0.6rem; }

/* ============================================================
   WHY SUMMITCORE
   ============================================================ */
.why-card { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-icon {
  width: 50px; height: 50px; background: var(--accent); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.25rem; flex-shrink: 0;
}
.why-content h3 { margin-bottom: 0.4rem; }
.why-content p  { font-size: 0.9rem; }

/* ============================================================
   WHY SUMMITCORE -NUMBERED TWO-COLUMN
   ============================================================ */
.why-numbered-section {
  background: #e8edf4;
  padding: 5rem 0;
}
.why-numbered-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.why-numbered-left h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.why-numbered-left p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
}
.why-numbered-items {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 1.25rem;
}
.why-numbered-items::before {
  content: '';
  position: absolute;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
  width: 3px;
  height: 55%;
  background: #2b7de9;
  border-radius: 2px;
}
.why-numbered-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0 2rem 1.25rem;
}
.why-numbered-divider { display: none; }
.why-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
  letter-spacing: -0.03em;
}
.why-num-content h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.why-num-content p {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .why-numbered-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .why-num { font-size: 2rem; width: 52px; }
  .why-numbered-item { gap: 1.25rem; }
}

/* ============================================================
   COVERAGE SECTION
   ============================================================ */
.coverage {
  background: var(--primary); color: white; text-align: center;
}
.coverage .section-label { color: #5db8ff; }
.coverage h2 { color: white; }
.coverage > .container > .section-header > p { color: rgba(255,255,255,0.75); }

.coverage-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 820px; margin: 2.5rem auto 0;
}
.coverage-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg); padding: 2rem;
}
.coverage-card-icon { font-size: 2rem; color: #5db8ff; margin-bottom: 1rem; }
.coverage-card h3   { color: white; margin-bottom: 0.75rem; }
.area-tags  { display: flex; flex-wrap: wrap; gap: 0.45rem; justify-content: center; }
.area-tag {
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.82); padding: 0.25rem 0.75rem;
  border-radius: 100px; font-size: 0.78rem;
}

/* ============================================================
   HOW WE WORK
   ============================================================ */
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 29px; left: 12%; right: 12%;
  height: 2px; background: rgba(43,125,233,0.3); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 60px; height: 60px; background: #e8edf4;
  border: 2px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: var(--accent);
  margin: 0 auto 1.25rem;
}
.process-step h4 { margin-bottom: 0.4rem; }
.process-step p  { font-size: 0.87rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card {
  background: #e8edf4; border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column;
}
.stars         { color: var(--cta); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text {
  font-style: italic; color: var(--text-gray);
  margin-bottom: 1.25rem; line-height: 1.7; font-size: 0.92rem;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.88rem; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.author-role { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #1a6dd4 100%);
  color: white; text-align: center; padding: 5.5rem 0;
}
.cta-banner h2 { color: white; margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-actions   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   IT CHALLENGES SECTION
   ============================================================ */
.challenges-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 3rem;
  margin-bottom: 3rem;
}

.challenge-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.challenge-item:hover { background: var(--bg-light); }

.challenge-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.challenge-icon i { color: var(--accent); font-size: 0.7rem; }

.challenge-item p {
  font-size: 0.97rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

.challenges-cta-block {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.challenges-cta-block p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

.challenges-cta-block strong { color: var(--accent); }

@media (max-width: 680px) {
  .challenges-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .challenges-cta-block p { font-size: 1rem; }
}

/* ── Leadership section responsive ── */
@media (max-width: 768px) {
  #leadership .container > div[style*="grid-template-columns:1fr 2fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  #leadership div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(3,1fr) !important;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0a1628; color: rgba(255,255,255,0.7); padding: 4.5rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-name { color: white; }
.footer-brand .logo-tag  { color: rgba(255,255,255,0.45); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.87rem; margin-top: 1rem; line-height: 1.7; }

.footer-col h4 {
  color: white; font-size: 0.82rem; margin-bottom: 1.25rem;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.58); font-size: 0.87rem; transition: color var(--transition); }
.footer-links a:hover { color: white; }

.footer-contact-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.87rem; margin-bottom: 0.75rem; color: rgba(255,255,255,0.6);
}
.footer-contact-item i { color: var(--accent); margin-top: 0.15rem; flex-shrink: 0; width: 14px; }

.footer-bottom {
  padding: 1.5rem 0; display: flex; justify-content: space-between;
  align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.38);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.38); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

.footer-social {
  display: flex; gap: 0.6rem; margin-top: 1.25rem; flex-wrap: wrap;
}
.footer-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65);
  font-size: 0.85rem; transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.footer-social-btn:hover {
  background: var(--accent); color: white;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a7a 100%);
  padding: 2.5rem 0; color: white;
}
.page-hero h1 { color: white; margin-bottom: 0.5rem; }
.page-hero .hero-sub { color: white; font-size: 1.15rem; font-weight: 600; margin-bottom: 0.6rem; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 0.97rem; margin-bottom: 0; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 0.6rem; }

/* ============================================================
   SERVICES PAGE -Detail Cards
   ============================================================ */
.service-detail-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-detail-icon {
  width: 64px; height: 64px; background: rgba(43,125,233,0.1);
  border-radius: var(--radius-lg); display: flex; align-items: center;
  justify-content: center; font-size: 1.75rem; color: var(--accent); margin-bottom: 1.5rem;
}
.service-detail-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-features { margin-top: 1.25rem; }
.service-features li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  padding: 0.4rem 0; font-size: 0.9rem; color: var(--text-gray);
  border-bottom: 1px solid var(--border);
}
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: var(--accent); margin-top: 0.15rem; flex-shrink: 0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.value-card {
  text-align: center; padding: 2rem;
  background: white; border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.value-icon {
  width: 60px; height: 60px; background: rgba(43,125,233,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--accent); margin: 0 auto 1rem;
}
.team-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; text-align: center;
}
.team-avatar {
  height: 160px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: rgba(255,255,255,0.3);
}
.team-info { padding: 1.25rem; }
.team-info h4 { color: var(--text-dark); margin-bottom: 0.2rem; }
.team-info p  { font-size: 0.85rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.5rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.45rem;
}
input, select, textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 0.95rem; font-family: inherit;
  color: var(--text-dark); transition: border-color var(--transition);
  outline: none; background: white;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(43,125,233,0.1);
}
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 0.5rem; }

.contact-info-card {
  background: var(--primary); color: white;
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.contact-info-card h3 { color: white; margin-bottom: 0.5rem; }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,0.1);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: #5db8ff; font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail h4 { color: white; font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-detail p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-cta  { display: none; }
  .hamburger { display: flex; }
  .nav-right .nav-link { display: none; }
  .nav-right .dark-mode-toggle { display: none; }
  .dark-mode-toggle-footer { display: none; }
  .nav-toggle-item { display: flex !important; justify-content: flex-end; padding: 0.4rem 0.5rem 0.1rem; }
  .nav-cta  { display: flex; font-size: 0.8rem; padding: 0.45rem 0.9rem; margin-left: 0; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .nav-wrapper { justify-content: flex-start; gap: 0; }
  .nav-right { margin-left: auto; }

  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: #1e2a38; border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.75rem; gap: 0.2rem; box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  }
  .dropdown-menu {
    position: static; box-shadow: none; border: none;
    background: rgba(255,255,255,0.06); padding: 0.25rem 0 0.25rem 1rem;
    margin-top: 0.25rem;
  }
  .grid-2 .service-detail-card { order: 2; }

  .grid-2, .grid-3, .grid-4,
  .services-grid, .testimonials-grid, .coverage-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .hero-stats  { gap: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero { padding: 4.5rem 0 3.5rem; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .process-steps { grid-template-columns: 1fr; }
  .why-card { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
}
