/* ===== LAPTOP REPAIR IN NYC — MAIN STYLES ===== */

:root {
  --navy: #0d1b2a;
  --navy-mid: #1b2f45;
  --navy-light: #253d56;
  --steel: #2c6e93;
  --steel-light: #3a8bb5;
  --accent: #e8a020;
  --accent-light: #f0b840;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --gray-100: #eef0f4;
  --gray-200: #d8dce5;
  --gray-400: #9aa3b2;
  --gray-600: #5a6475;
  --gray-800: #2e3340;
  --text: #1a202c;
  --text-muted: #6b7280;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(13,27,42,0.08);
  --shadow-md: 0 6px 24px rgba(13,27,42,0.12);
  --shadow-lg: 0 16px 48px rgba(13,27,42,0.18);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--gray-600); margin-bottom: 1rem; }
a { color: var(--steel); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--steel-light); }
strong { color: var(--gray-800); }

.text-white h1, .text-white h2, .text-white h3,
.text-white h4, .text-white p { color: var(--white) !important; }
.text-accent { color: var(--accent) !important; }
.text-muted-custom { color: var(--text-muted); }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ─── HEADER / NAV ─── */
#main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
#main-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.25); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 24px;
  max-width: 1280px; margin: 0 auto;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.2rem; color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px; background: var(--steel);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.nav-logo span.accent { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82); font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--accent); color: var(--navy) !important; font-weight: 700;
  padding: 9px 20px !important; border-radius: 8px !important;
}
.nav-cta:hover { background: var(--accent-light) !important; color: var(--navy) !important; }

.nav-dropdown { position: relative; }
.dropdown-menu-custom {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 220px;
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.nav-dropdown:hover .dropdown-menu-custom { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu-custom a {
  display: block; color: var(--gray-800) !important; padding: 10px 14px;
  border-radius: 6px; font-size: 0.88rem; background: none !important;
}
.dropdown-menu-custom a:hover { background: var(--gray-100) !important; color: var(--navy) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ─── HERO ─── */
.hero-section {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a52 100%);
  position: relative; overflow: hidden; padding-top: 70px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(44,110,147,0.25) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(232,160,32,0.1) 0%, transparent 40%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.3);
  color: var(--accent); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
}
.hero-title { color: var(--white); margin-bottom: 20px; }
.hero-title span { color: var(--accent); }
.hero-desc { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--accent); display: block; line-height: 1;
}
.hero-stat .label { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-top: 4px; }
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.08);
}
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; bottom: -16px; left: -20px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge .icon { font-size: 1.8rem; }
.hero-badge strong { display: block; color: var(--navy); font-size: 0.95rem; }
.hero-badge span { color: var(--text-muted); font-size: 0.78rem; }
.hero-badge2 {
  position: absolute; top: 20px; right: -16px;
  background: var(--navy); border-radius: var(--radius);
  padding: 12px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-badge2 .stars { color: var(--accent); font-size: 0.85rem; }
.hero-badge2 span { color: rgba(255,255,255,0.7); font-size: 0.78rem; }
.hero-badge2 strong { color: var(--white); font-size: 0.88rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--navy); font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius); border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.95rem;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary:hover { background: var(--accent-light); color: var(--navy); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,160,32,0.35); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius); border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer; font-family: var(--font-body); font-size: 0.95rem;
  transition: all var(--transition); text-decoration: none;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--steel); font-weight: 600;
  padding: 12px 24px; border-radius: var(--radius); border: 2px solid var(--steel);
  cursor: pointer; font-family: var(--font-body); font-size: 0.9rem;
  transition: all var(--transition); text-decoration: none;
}
.btn-outline:hover { background: var(--steel); color: var(--white); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white); font-weight: 600;
  padding: 12px 24px; border-radius: var(--radius); border: none;
  cursor: pointer; font-family: var(--font-body); font-size: 0.9rem;
  transition: all var(--transition); text-decoration: none;
}
.btn-dark:hover { background: var(--navy-mid); color: var(--white); }

/* ─── SECTION HEADERS ─── */
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-title span { color: var(--steel); }
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; }
.section-head-center { text-align: center; }
.section-head-center .section-desc { margin: 0 auto; }

/* ─── SERVICE CARDS ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); padding: 32px;
  transition: all 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(--steel), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; background: linear-gradient(135deg, var(--steel), var(--navy));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white); margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; margin-bottom: 18px; }
.service-link { color: var(--steel); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { color: var(--accent); }

/* ─── TOOLS / DIAGNOSTIC CARDS ─── */
.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.tool-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); padding: 32px; position: relative;
}
.tool-card h3 { font-size: 1.1rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.tool-card h3 i { color: var(--steel); font-size: 1.2rem; }
.tool-card p { font-size: 0.87rem; margin-bottom: 20px; }
.tool-question { font-weight: 600; color: var(--navy); margin-bottom: 14px; font-size: 0.92rem; }
.tool-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.tool-option {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px;
  cursor: pointer; transition: all var(--transition); font-size: 0.88rem;
}
.tool-option:hover, .tool-option.selected {
  border-color: var(--steel); background: rgba(44,110,147,0.06); color: var(--navy);
}
.tool-option input[type="radio"] { accent-color: var(--steel); }
.tool-result {
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  padding: 16px 20px; margin-top: 12px; font-size: 0.88rem; line-height: 1.6;
  display: none;
}
.tool-result.show { display: block; }
.tool-result .result-label { font-weight: 700; color: var(--accent); display: block; margin-bottom: 6px; }
.tool-btn {
  background: var(--steel); color: var(--white); border: none; border-radius: 8px;
  padding: 10px 22px; font-size: 0.88rem; font-weight: 600; cursor: pointer;
  font-family: var(--font-body); transition: all var(--transition); margin-top: 8px;
}
.tool-btn:hover { background: var(--navy); }

/* ─── TROUBLESHOOTER ─── */
.troubleshooter {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 48px; margin-top: 48px; position: relative; overflow: hidden;
}
.troubleshooter::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; background: radial-gradient(circle, rgba(44,110,147,0.3), transparent 70%);
  border-radius: 50%;
}
.symptom-chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.symptom-chip {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50px;
  padding: 10px 20px; cursor: pointer; font-size: 0.88rem;
  transition: all var(--transition);
}
.symptom-chip:hover, .symptom-chip.active {
  background: var(--steel); border-color: var(--steel); color: var(--white);
}
.diagnostic-result {
  background: rgba(255,255,255,0.06); border-radius: var(--radius);
  padding: 28px; border: 1px solid rgba(255,255,255,0.1);
  display: none; margin-top: 16px;
}
.diagnostic-result.show { display: block; }
.diagnostic-result h4 { color: var(--accent); margin-bottom: 14px; font-size: 1rem; }
.diagnostic-step {
  display: flex; gap: 14px; margin-bottom: 12px; align-items: flex-start;
}
.step-num {
  min-width: 28px; height: 28px; background: var(--steel); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; flex-shrink: 0;
}
.step-text { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.6; padding-top: 4px; }

/* ─── REVIEWS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); padding: 28px;
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-100); }
.review-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; line-height: 1.65; margin-bottom: 18px; font-style: italic; color: var(--gray-600); }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-initials {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--steel), var(--navy));
  color: var(--white); font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.reviewer-location { font-size: 0.78rem; color: var(--text-muted); }

/* ─── TEAM ─── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-img { width: 100%; height: 240px; object-fit: cover; object-position: top; }
.team-info { padding: 24px; }
.team-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-role { color: var(--steel); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; display: block; }
.team-info p { font-size: 0.85rem; margin-bottom: 10px; }
.team-exp { display: inline-block; background: var(--gray-100); color: var(--gray-600); padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; }

/* ─── ARTICLES ─── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.article-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-img { width: 100%; height: 200px; object-fit: cover; }
.article-body { padding: 24px; }
.article-tag { display: inline-block; background: rgba(44,110,147,0.1); color: var(--steel); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; margin-bottom: 12px; }
.article-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.article-card p { font-size: 0.85rem; margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-muted); }
.article-meta i { font-size: 0.7rem; }

/* ─── BEFORE/AFTER SLIDER ─── */
.ba-section { background: var(--navy); padding: 90px 0; }
.ba-container { position: relative; width: 100%; max-width: 700px; margin: 48px auto 0; border-radius: var(--radius-lg); overflow: hidden; cursor: col-resize; user-select: none; }
.ba-before, .ba-after { position: absolute; top: 0; bottom: 0; overflow: hidden; }
.ba-after { left: 0; right: 0; }
.ba-before { right: 50%; border-right: 3px solid var(--accent); }
.ba-before img, .ba-after img { position: absolute; top: 0; left: 0; width: 700px; max-width: none; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute; bottom: 14px; padding: 6px 14px;
  background: rgba(0,0,0,0.7); color: var(--white); font-size: 0.8rem; font-weight: 600; border-radius: 50px;
}
.ba-before .ba-label { right: 12px; }
.ba-after .ba-label { left: 12px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; width: 3px; background: var(--accent); left: 50%;
  transform: translateX(-50%); pointer-events: none;
}
.ba-handle-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1rem; box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  pointer-events: none;
}

/* ─── FAQ ─── */
.faq-list { margin-top: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden; transition: all var(--transition);
}
.faq-item:hover { border-color: var(--steel-light); }
.faq-item.open { border-color: var(--steel); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; font-weight: 600; color: var(--navy);
  font-size: 0.95rem; gap: 16px; background: var(--white);
}
.faq-q i { color: var(--steel); transition: transform var(--transition); font-size: 0.85rem; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: all 0.35s ease; }
.faq-item.open .faq-a { padding: 0 22px 18px; max-height: 300px; }
.faq-a p { font-size: 0.88rem; margin: 0; color: var(--gray-600); }

/* ─── CONTACT SECTION ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-icon { width: 46px; height: 46px; background: rgba(44,110,147,0.1); color: var(--steel); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.contact-detail span { font-size: 0.88rem; color: var(--text-muted); }
.hours-list { background: var(--off-white); border-radius: var(--radius); padding: 20px 24px; margin-top: 24px; }
.hours-list h4 { font-size: 0.9rem; margin-bottom: 14px; color: var(--navy); }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 7px 0; border-bottom: 1px solid var(--gray-200); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--gray-600); font-weight: 500; }
.hours-row .time { color: var(--navy); font-weight: 600; }

/* ─── FORM ─── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  background: var(--white); transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--steel); box-shadow: 0 0 0 3px rgba(44,110,147,0.12); }
.form-control.error { border-color: var(--danger); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-error { font-size: 0.78rem; color: var(--danger); margin-top: 4px; display: none; }
.form-error.show { display: block; }
.captcha-row { display: flex; align-items: center; gap: 12px; background: var(--off-white); border: 1px solid var(--gray-200); border-radius: 8px; padding: 14px 18px; margin-bottom: 20px; }
.captcha-checkbox { width: 22px; height: 22px; cursor: pointer; accent-color: var(--steel); }
.captcha-label { font-size: 0.88rem; color: var(--gray-600); user-select: none; }
.recaptcha-logo { margin-left: auto; text-align: right; }
.recaptcha-logo span { display: block; font-size: 0.65rem; color: var(--gray-400); }

/* ─── MAP ─── */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 260px; background: var(--gray-100); margin-top: 28px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 16px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7);
  font-size: 0.9rem; transition: all var(--transition);
}
.social-btn:hover { background: var(--steel); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.87rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--accent); }

/* ─── INNER PAGE HERO ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 120px 0 70px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(44,110,147,0.2), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--accent); }
.breadcrumb i { font-size: 0.65rem; }

/* ─── SERVICE PAGE ─── */
.service-detail { padding: 80px 0; }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.service-detail-body h2 { font-size: 1.6rem; margin-bottom: 16px; margin-top: 32px; }
.service-detail-body h2:first-child { margin-top: 0; }
.service-detail-body p { font-size: 0.95rem; line-height: 1.75; }
.service-detail-body ul { margin: 0 0 20px 20px; }
.service-detail-body ul li { margin-bottom: 8px; color: var(--gray-600); font-size: 0.95rem; }
.service-sidebar { position: sticky; top: 90px; }
.sidebar-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; border: 1px solid var(--gray-200); }
.sidebar-card h4 { font-size: 1rem; margin-bottom: 16px; }
.sidebar-list { list-style: none; }
.sidebar-list li { padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.88rem; display: flex; align-items: center; gap: 10px; color: var(--gray-600); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li i { color: var(--steel); width: 16px; }

/* ─── ARTICLE PAGE ─── */
.article-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; padding: 70px 0; align-items: start; }
.article-content h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.article-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.article-content p { font-size: 0.97rem; line-height: 1.8; margin-bottom: 18px; }
.article-content img { width: 100%; border-radius: var(--radius); margin: 24px 0; }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; }
.article-content li { margin-bottom: 10px; color: var(--gray-600); font-size: 0.95rem; line-height: 1.65; }
.article-meta-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
.article-meta-header .author-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.article-meta-header .author-info strong { display: block; font-size: 0.9rem; color: var(--navy); }
.article-meta-header .author-info span { font-size: 0.8rem; color: var(--text-muted); }
.article-sidebar { position: sticky; top: 90px; }
.highlight-box { background: rgba(44,110,147,0.06); border-left: 3px solid var(--steel); padding: 18px 20px; border-radius: 0 8px 8px 0; margin: 24px 0; }
.highlight-box p { margin: 0; font-size: 0.9rem; color: var(--navy); }

/* ─── ABOUT PAGE ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.timeline { margin-top: 40px; position: relative; }
.timeline::before { content: ''; position: absolute; left: 18px; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item { display: flex; gap: 24px; margin-bottom: 28px; position: relative; }
.timeline-dot { width: 38px; height: 38px; background: var(--steel); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.75rem; font-weight: 700; z-index: 1; }
.timeline-content h4 { font-size: 0.95rem; margin-bottom: 4px; }
.timeline-content p { font-size: 0.85rem; margin: 0; }
.timeline-year { font-size: 0.75rem; color: var(--steel); font-weight: 700; }

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 560px; z-index: 9000;
  background: var(--navy); color: var(--white); border-radius: var(--radius-lg);
  padding: 24px 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  transform: translateY(120%); opacity: 0; transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
#cookie-banner.show { transform: translateY(0); opacity: 1; }
#cookie-banner h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
#cookie-banner p { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-accept { background: var(--accent); color: var(--navy); border: none; border-radius: 8px; padding: 10px 22px; font-weight: 700; cursor: pointer; font-size: 0.88rem; font-family: var(--font-body); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 10px 20px; cursor: pointer; font-size: 0.88rem; font-family: var(--font-body); }
.cookie-learn { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-decoration: underline; background: none; border: none; cursor: pointer; font-family: var(--font-body); }

/* ─── THANK YOU PAGE ─── */
.thankyou-section { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.thankyou-icon { font-size: 4rem; color: var(--success); margin-bottom: 24px; display: block; }

/* ─── UTILITY ─── */
.bg-navy { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.bg-white { background: var(--white); }
.divider { height: 1px; background: var(--gray-200); margin: 60px 0; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.badge-blue { background: rgba(44,110,147,0.12); color: var(--steel); }
.badge-amber { background: rgba(232,160,32,0.15); color: var(--accent); }
.img-fluid { max-width: 100%; height: auto; }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow-md); }
.mt-4 { margin-top: 32px; } .mt-6 { margin-top: 48px; } .mt-8 { margin-top: 64px; }
.mb-4 { margin-bottom: 32px; } .mb-2 { margin-bottom: 16px; }
.d-flex { display: flex; } .align-center { align-items: center; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; }
.text-center { text-align: center; }
.w-100 { width: 100%; }

/* ─── LEGAL PAGES ─── */
.legal-content { max-width: 860px; margin: 0 auto; padding: 70px 24px; }
.legal-content h1 { margin-bottom: 8px; }
.legal-content .last-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.4rem; margin: 36px 0 14px; padding-top: 8px; border-top: 1px solid var(--gray-200); }
.legal-content p, .legal-content li { font-size: 0.95rem; line-height: 1.8; color: var(--gray-600); }
.legal-content ul { margin: 0 0 20px 24px; }
.legal-content li { margin-bottom: 8px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; position: fixed;
    top: 70px; left: 0; right: 0; background: var(--navy);
    padding: 20px 24px; gap: 4px; z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.mobile-open a { padding: 12px 16px; }
  .dropdown-menu-custom { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.05); border: none; }
  .dropdown-menu-custom a { color: rgba(255,255,255,0.7) !important; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-pad { padding: 60px 0; }
  .troubleshooter { padding: 28px; }
}


.logo{
  max-width: 200px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}