/* =============================================
   VARIABLES
============================================= */
:root {
  --primary: #1d65d1;
  --primary-dark: #164fa6;
  --yellow: #fff730;
  --navy: #0b1e33;
  --navy-2: #0f2a45;
  --text-dark: #0b1e33;
  --text-muted: #5b6b79;
  --light-gray: #eef3fb;
  --border-color: #e2e8f0;
  --blue: #1e5fe0;
  --blue-dark: #144fc7;
  --light-bg: #eef3fc;
  --border-soft: #e6eaf2;
  --star-gold: #ffb400;
  --radius: 14px;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-dark); }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

.section-pad { padding: 80px 0; }
.bg-light-gray { background-color: var(--light-gray); }

.section-heading { max-width: 620px; margin: 0 auto 45px; }
.section-eyebrow-pill {
  display: inline-block;
  background: var(--light-gray);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}
.about-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin: 16px 0 20px;
}

/* Reusable pill button with yellow circle icon */
.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 6px 6px 6px 26px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
}
.btn-primary-pill:hover { background: var(--primary-dark); color: #fff; }
.icon-circle {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.icon-circle-sm { width: 30px; height: 30px; min-width: 30px; font-size: 14px; }

.checklist { list-style: none; padding: 0; margin: 0 0 20px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--text-dark);
}
.checklist-sm li { font-weight: 500; font-size: 14px; margin-bottom: 10px; }
.check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 5px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* =============================================
   TOP BAR
============================================= */
.topbar { background-color: var(--primary); color: #fff; font-size: 15px; }
.topbar-social { display: flex; gap: 18px; }
.topbar-social a { color: #fff; font-size: 15px; opacity: .95; }
.topbar-social a:hover { opacity: 1; }
.topbar-cart { color: #fff; font-weight: 500; display: flex; align-items: center; gap: 8px; }

/* =============================================
   NAVBAR
============================================= */
.main-navbar{
  padding: 05px 20px;
}
.main-navbar img { width: 180px; }

.main-menu { gap: 4px; }
.main-menu .nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  padding: 8px 14px !important;
}
.main-menu .nav-link.active { color: var(--primary); text-decoration: underline; text-underline-offset: 6px; }
.main-menu .nav-link:hover { color: var(--primary); }

/* =============================================
   HERO
============================================= */
.hero-section {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6,20,36,.92) 20%, rgba(6,20,36,.55) 100%);
  z-index: 1;
}
.hero-section .container { z-index: 2; padding-top: 10px; padding-bottom: 20px; }

.hero-title {
  color: #fff;
  font-weight: 800;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero-highlight {
  background: var(--primary);
  padding: 2px 16px;
  border-radius: 8px;
  display: inline-block;
}
.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  margin-bottom: 32px;
}

.hero-photo-wrap { position: relative; margin-bottom: 30px; }
.hero-photo {
  width: 100%;
  border-radius: var(--radius);
}
.hero-badge {
  position: absolute;
  bottom: -60px;
  left: 24px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  box-shadow: 0 14px 30px rgba(11,30,51,.25);
}
.hero-badge-num { font-size: 26px; font-weight: 800; width: 100%; }
.hero-badge span:not(.hero-badge-num) { font-size: 14px; flex: 1; }

.hero-info-row { margin-top: 0px; }
.hero-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(11,30,51,.12);
}
.hero-info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.hero-info-card h6 { font-weight: 700; margin-bottom: 4px; font-size: 16px; }
.hero-info-card a { color: var(--primary); font-size: 14px; line-height: 1.5; }

/* =============================================
   ABOUT
============================================= */
.about-desc { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.about-img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/2.6; object-fit: cover; margin-top: 20px; }

.stats-row { margin-top: 8px; }
.stat-box {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: left;
}
.stat-box h3 { font-size: 26px; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.stat-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 0; }

/* =============================================
   SERVICES
============================================= */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 22px rgba(11,30,51,.06);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(11,30,51,.12); }
.service-img { background: var(--light-gray); }
.service-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-body { padding: 20px; }
.service-body h6 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}
.service-body h6 i { color: var(--primary); font-size: 15px; }
.service-body p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 0; line-height: 1.6; }

/* =============================================
   TROUBLE BANNER
============================================= */
.trouble-section {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 50px 0;
}
.trouble-section img {
  margin-top: 20px;
}
.trouble-section h2 { color: #fff; font-weight: 700; font-size: 32px; margin-bottom: 18px; }
.trouble-section > .container > .row > div > p { color: rgba(255,255,255,.7); margin-bottom: 26px; }
.trouble-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.trouble-tags span {
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 13.5px;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
}
.trouble-img { max-height: 420px; object-fit: contain; }

/* =============================================
   MACBOOK REPAIR
============================================= */
.repair-img { border-radius: var(--radius); width: 100%; }

/* =============================================
   BENEFITS
============================================= */
.benefits-section { padding-top: 80px; }
.benefits-photo-wrap { position: relative; }
.benefits-photo { width: 100%; height: 420px; object-fit: cover; }
.benefits-card-panel {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(11,30,51,.12);
  padding: 40px;
  margin-top: -110px;
  position: relative;
  z-index: 3;
  margin-bottom: 20px;
}
.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.benefit-item h6 { font-weight: 700; font-size: 16px; margin-bottom: 10px; }
.benefit-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }

/* =============================================
   PRODUCTS
============================================= */
.product-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
}
.product-thumb { position: relative; }
.product-thumb img { width: 100%; aspect-ratio: 4/3.6; object-fit: cover; }
.product-thumb-icon { position: absolute; top: 14px; right: 14px; }
.product-body { padding: 20px; }
.product-body h6 { font-weight: 700; font-size: 17px; margin-bottom: 0; }
.product-price { color: var(--primary); font-weight: 600; font-size: 14px; }
.product-body .checklist { margin: 14px 0 18px; }

/* =============================================
   HOW IT WORKS
============================================= */
.how-img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.step-timeline { position: relative; padding-left: 6px; border-left: 3px solid var(--primary); }
.step-item {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 22px;
  margin-left: 20px;
  box-shadow: 0 10px 24px rgba(11,30,51,.07);
}
.step-item:last-child { margin-bottom: 0; }
.step-num {
  background: var(--navy);
  color: #fff;
  min-width: 62px;
  height: 62px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}
.step-item h6 { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.step-item p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 0; line-height: 1.6; }
.step-item p a { color: var(--primary); font-weight: 600; }

/* =============================================
   REVIEWS
============================================= */
.review-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 26px;
  height: 100%;
}
.review-card .stars { color: var(--star-gold); font-size: 14px; margin-bottom: 14px; }
.review-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.review-author span { font-weight: 700; font-size: 14px; }

/* =============================================
   CONTACT
============================================= */
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 100%; }
.map-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
}
.contact-form-wrap h5 { font-weight: 700; margin-bottom: 22px; }
.contact-form-wrap .form-label { font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.contact-form-wrap .form-control {
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 11px 16px;
  font-size: 14px;
}
.contact-form-wrap .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,101,209,.15);
}
.form-msg { margin: 14px 0 0; font-size: 13.5px; color: var(--primary); font-weight: 600; }

/* =============================================
   BLOG
============================================= */
.blog-card { background: var(--light-gray); border-radius: var(--radius); overflow: hidden; }
.blog-card img { width: 100%; object-fit: cover; }
.blog-card-lg img { aspect-ratio: 16/10; }
.blog-card-sm { display: flex; align-items: stretch; }
.blog-card-sm img { width: 42%; aspect-ratio: 1/1; }
.blog-card-sm .blog-body { flex: 1; }
.blog-body { padding: 24px; }
.blog-body h5 { font-weight: 700; font-size: 18px; margin-bottom: 10px; color: var(--text-dark); }
.blog-body p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }


 /* ============ HERO ============ */
  .about-hero-section{
    background: var(--navy);
    padding: 70px 0 60px;
    text-align: center;
    color: #fff;
  }
  .about-hero-section h1{
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--star-gold);
  }
  .about-hero-section p{
    font-size: 16px;
    color: #c7cee6;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
  }
  .btn-book{
    background: var(--blue);
    color: #fff;
    border-radius: 30px;
    padding: 12px 26px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
  }
  .btn-book:hover{ color:#fff; background: var(--blue-dark); }
  .btn-book .icon-circle{
    background: var(--yellow);
    color: var(--navy);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
  }
  .hero-image-wrap{
    max-width: 1170px;
    margin: 45px auto 0;
    border-radius: 14px;
    overflow: hidden;
  }
  .hero-image-wrap img{
    width: 100%;
    display: block;
    height: 360px;
    object-fit: cover;
  }

  /* ============ MISSION SECTION ============ */
  .about-mission-section{
    background: #fff;
    padding: 90px 0;
  }
  .badge-pill{
    display: inline-block;
    background: var(--light-bg);
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
  }
  .about-mission-section h2{
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 22px;
    line-height: 1.25;
  }
  .about-mission-section p{
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 20px;
  }
  .mission-img{
    border-radius: 14px;
    width: 100%;
    height: 420px;
    object-fit: cover;
  }

  /* ============ TIMELINE SECTION ============ */
  .about-timeline-section{
    background: var(--light-bg);
    padding: 90px 0;
    text-align: center;
  }
  .about-timeline-section h2{
    font-size: 34px;
    color: var(--navy);
    margin-bottom: 60px;
  }
  .about-timeline-wrap{
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
  }
  .about-timeline-line{
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #c3cde3;
    transform: translateX(-50%);
  }
  .about-timeline-row{
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    min-height: 120px;
  }
  .about-timeline-card{
    background: #fff;
    border-radius: 12px;
    padding: 24px 26px;
    text-align: left;
    width: 44%;
    box-shadow: 0 6px 20px rgba(20,40,100,.06);
  }
  .about-timeline-card .year{
    color: var(--blue);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
  }
  .about-timeline-card h5{
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 10px;
  }
  .about-timeline-card p{
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }
  .about-timeline-row.left{ justify-content: flex-start; }
  .about-timeline-row.right{ justify-content: flex-end; }
  .about-timeline-dot{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    z-index: 2;
    border: 4px solid var(--light-bg);
  }

   /* ============ VALUES SECTION ============ */
  .about-values-section{
    background: var(--navy);
    padding: 90px 0 60px;
    text-align: center;
    color: #fff;
  }
  .about-values-section h2{
    font-size: 34px;
    margin-bottom: 50px;
    color: var(--light-gray);
  }
  .about-value-card{
    background: #101c54;
    border-radius: 14px;
    padding: 34px 24px;
    height: 100%;
  }
  .about-value-card .icon-wrap{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 22px;
    margin: 0 auto 20px;
  }
  .about-value-card h5{
    font-size: 17px;
    margin-bottom: 14px;
    color: #fff;
  }
  .about-value-card p{
    color: #b7bfdc;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
  }
  .about-values-gallery{
    margin-top: 60px;
  }
  .about-values-gallery img{
    width: 100%;
    height: 260px;
    object-fit: cover;
  }

   /* ============ CONTACT SECTION ============ */
  .about-contact-section{
    background: var(--light-bg);
    padding: 90px 0;
  }
  .about-contact-section .section-head{
    text-align: center;
    margin-bottom: 50px;
  }
  .about-contact-section h2{
    font-size: 34px;
    color: var(--navy);
  }
  .about-contact-info-card{
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    height: 100%;
  }
  .about-contact-info-card .icon-box{
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  .about-contact-info-card h6{
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 15px;
  }
  .about-contact-info-card p, .about-contact-info-card a{
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
  }

  .about-map-box{
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    background: #d9e3f5;
  }
  .about-map-box iframe{
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
  }

  .about-form-card{
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
  }
  .about-form-card h5{
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 22px;
  }
  .about-form-card label{
    font-size: 13px;
    color: #35406b;
    font-weight: 500;
    margin-bottom: 6px;
  }
  .about-form-card .form-control{
    border-radius: 8px;
    border: 1px solid var(--border-soft);
    padding: 12px 14px;
    font-size: 14px;
    background: #f7f9fd;
  }
  .about-form-card .form-control:focus{
    box-shadow: none;
    border-color: var(--blue);
  }
  .about-btn-submit{
    background: var(--blue);
    color: #fff;
    border-radius: 30px;
    padding: 12px 26px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    border: none;
  }
  .about-btn-submit:hover{ background: var(--blue-dark); }
  .about-btn-submit .icon-circle{
    background: var(--yellow);
    color: var(--navy);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }

/* =============================================
   REPAIR SERVICE PAGES (iMac / iPad / iPhone)
============================================= */
.repair-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 70px 0;
}
.repair-hero h1 { color: #fff; font-weight: 800; font-size: 38px; margin-bottom: 18px; }
.repair-hero p { color: rgba(255,255,255,.75); font-size: 15.5px; margin-bottom: 26px; line-height: 1.7; }
.repair-hero-img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 5px solid rgba(255,255,255,.15); }

/* Checklist panel with dark header (iMac services columns) */
.checklist-panel {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 22px rgba(11,30,51,.06);
}
.checklist-panel-header {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 16px;
}
.checklist-panel-body { padding: 24px; }
.checklist-panel-body .checklist li { font-weight: 500; font-size: 14.5px; }

/* Center mockup column */
.mockup-col { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 22px; text-align: center; }
.mockup-col img { border-radius: var(--radius); width: 100%; max-width: 320px; }

/* Photo banner with overlapping content card */
.photo-cta-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.photo-cta-wrap img { width: 100%; height: 420px; object-fit: cover; }
.photo-cta-card {
  position: absolute;
  left: 40px;
  bottom: 40px;
  right: 40px;
  max-width: 620px;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 20px 44px rgba(11,30,51,.25);
}
.photo-cta-card h3 { font-weight: 700; font-size: 24px; color: var(--primary); margin-bottom: 14px; }
.photo-cta-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.7; margin-bottom: 22px; }

/* Common-issue small grid items */
.issue-grid-item {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  height: 100%;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

/* Split dark banner (text + button left, image right) */
.split-dark-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius);
  overflow: hidden;
}
.split-dark-banner .banner-text { padding: 46px; }
.split-dark-banner h2 { color: #fff; font-weight: 700; font-size: 28px; margin-bottom: 14px; }
.split-dark-banner p { color: rgba(255,255,255,.7); font-size: 15px; margin-bottom: 24px; line-height: 1.7; }
.split-dark-banner img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }

/* Service card with dark header (iPad services) */
.service-card-dark {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 22px rgba(11,30,51,.06);
}
.service-card-dark-header {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 16px;
  letter-spacing: .3px;
}
.service-card-dark-body { padding: 22px; }
.service-card-dark-body p { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin-bottom: 18px; min-height: 84px; }
.service-card-dark-body img { width: 100%; aspect-ratio: 4/2.6; object-fit: cover; border-radius: 10px; margin-bottom: 18px; }

/* Feature mini card (iPhone "why choose us" secondary section) */
.feature-mini-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  box-shadow: 0 6px 16px rgba(11,30,51,.06);
}
.feature-mini-card img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.feature-mini-card span { font-weight: 600; font-size: 14px; color: var(--text-dark); line-height: 1.4; }
.gray-feature-panel { background: var(--light-gray); border-radius: var(--radius); padding: 40px; }

/* Full-bleed photo banner with dark-gradient text overlay */
.photo-cta-full { position: relative; }
.photo-cta-full > img { width: 100%; height: 460px; object-fit: cover; display: block; }
.photo-cta-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,30,51,.88) 30%, rgba(11,30,51,.05) 75%);
}
.photo-cta-full-text {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8% 0 6%;
  max-width: 620px;
  z-index: 2;
}
.photo-cta-full-text h2 { color: #fff; font-weight: 700; font-size: 30px; margin-bottom: 16px; }
.photo-cta-full-text p { color: rgba(255,255,255,.75); font-size: 15px; margin-bottom: 24px; line-height: 1.7; }

/* Overlapping issue-list card on a full-bleed photo */
.issue-overlay-wrap { position: relative; }
.issue-overlay-wrap > img { width: 100%; height: 360px; object-fit: cover; }
.issue-overlay-card {
  position: relative;
  max-width: 900px;
  margin: -90px auto 0;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 20px 44px rgba(11,30,51,.18);
}
.issue-overlay-card h2 { text-align: center; color: var(--primary); font-weight: 700; margin-bottom: 26px; }

/* =============================================
   FOOTER
============================================= */
.footer { background: var(--navy); color: rgba(255,255,255,.65); padding-top: 64px; }
.footer-top { padding-bottom: 40px; }
.footer-logo img { width: 180px; margin-bottom: 20px; }
.footer p { font-size: 14px; line-height: 1.7; }
.footer-newsletter { display: flex; align-items: center; background: rgba(255,255,255,.08); border-radius: 50px; padding: 6px; margin-top: 18px; max-width: 320px; }
.footer-newsletter input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 8px 16px;
  flex: 1;
  font-size: 14px;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.5); }
.footer-newsletter button { border: none; }

.footer-title { color: #fff; font-weight: 700; margin-bottom: 22px; font-size: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 14px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--yellow); text-decoration: underline; }

.footer-bottom { padding: 24px 0; font-size: 13.5px; margin-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }

/* =============================================
   BACK TO TOP
============================================= */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(29,101,209,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s;
  z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); }


/* =============================================
   HERO INFO CARD - centered variant (corporate page)
============================================= */
.hero-info-card-center { flex-direction: column; text-align: center; align-items: center; }
.hero-info-card-center .hero-info-icon { margin-bottom: 8px; }

/* =============================================
   CORPORATE HERO
============================================= */
.corp-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 70px 0;
}
.corp-hero h1 { color: #fff; font-weight: 800; font-size: 42px; margin-bottom: 16px; }
.corp-hero p { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 28px; }
.corp-hero-img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/2.6; object-fit: cover; }

/* =============================================
   BUSINESS ACCOUNT PANEL
============================================= */
.business-account-section { padding: 80px 0; }
.business-account-panel {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius);
  padding: 50px;
}
.business-account-panel h2 { color: #fff; font-weight: 800; font-size: 32px; margin-bottom: 24px; }
.business-account-img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.business-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
}
.business-form-card h5 { font-weight: 700; margin-bottom: 22px; }
.business-form-card .form-label { font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.business-form-card .form-control {
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 11px 16px;
  font-size: 14px;
}
.business-form-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,101,209,.15);
}

/* Boxed benefit item variant (light gray card, used on corporate page) */
.benefit-item-boxed {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 26px;
}

/* =============================================
   CART / CHECKOUT PAGE
============================================= */
.cart-topbar { padding: 24px 0 8px; }
.breadcrumb-link { color: var(--text-muted); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb-link:hover { color: var(--primary); }
.cart-heading { font-weight: 800; font-size: 34px; margin: 6px 0 30px; display: flex; align-items: baseline; gap: 12px; }
.cart-heading span { font-size: 16px; font-weight: 500; color: var(--text-muted); }

.cart-item-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  padding: 20px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  margin-bottom: 18px;
}
.cart-item-thumb { width: 96px; height: 96px; border-radius: 10px; object-fit: cover; background: var(--light-gray); flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h6 { font-weight: 700; font-size: 17px; margin-bottom: 4px; }
.cart-item-info .variant { color: var(--text-muted); font-size: 13.5px; margin-bottom: 10px; }
.cart-item-remove {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 18px;
}
.cart-item-remove:hover { color: var(--sale-red, #e5484d); }

.tag-pill { display: inline-block; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 50px; margin-right: 6px; }
.tag-model { background: var(--light-gray); color: var(--text-dark); }
.tag-new { background: #dcfce7; color: #15803d; }
.tag-warranty { background: #dbeafe; color: var(--primary); }

.cart-item-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.qty-stepper { display: flex; align-items: center; gap: 16px; border: 1px solid var(--border-color); border-radius: 50px; padding: 6px 16px; }
.qty-stepper button { border: none; background: transparent; font-size: 16px; color: var(--text-dark); width: 20px; }
.cart-item-price { font-weight: 700; font-size: 18px; color: var(--primary); }

.discount-box {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
}
.discount-box label { font-weight: 700; display: flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--text-dark); }
.discount-box .input-group input {
  border-radius: 8px 0 0 8px;
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  background: var(--light-gray);
}
.discount-box .input-group button {
  border-radius: 0 8px 8px 0;
  background: var(--navy);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 0 24px;
}

.order-summary-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-color); }
.order-summary-header {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.order-summary-body { padding: 22px; }
.order-summary-item { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; position: relative; }
.order-summary-item .thumb-wrap { position: relative; }
.order-summary-item img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; background: var(--light-gray); }
.qty-badge {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-summary-item .name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.order-summary-item .variant { font-size: 12px; color: var(--text-muted); }
.order-summary-item .price { margin-left: auto; font-weight: 700; color: var(--primary); font-size: 14px; }

.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14.5px; color: var(--text-muted); border-top: 1px solid var(--border-color); }
.summary-row.total { font-weight: 800; font-size: 18px; color: var(--text-dark); border-top: 2px solid var(--border-color); padding-top: 16px; }
.summary-row .green { color: #15803d; font-weight: 600; }

.side-info-box { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); padding: 20px; margin-top: 18px; font-size: 14px; }
.side-info-box .title { display: flex; align-items: center; gap: 10px; font-weight: 700; margin-bottom: 8px; }
.side-info-box .title i { color: var(--primary); font-size: 18px; }

/* =============================================
   PRODUCT DETAILS PAGE
============================================= */
.pd-breadcrumb { background: var(--light-gray); padding: 14px 0; font-size: 14px; color: var(--text-muted); }
.pd-breadcrumb a { color: var(--text-muted); }
.pd-breadcrumb a:hover { color: var(--primary); }
.pd-breadcrumb .current { color: var(--text-dark); font-weight: 600; }

.pd-gallery { display: flex; gap: 14px; }
.pd-thumbs { display: flex; flex-direction: column; gap: 10px; }
.pd-thumbs img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; border: 2px solid var(--border-color); cursor: pointer; }
.pd-thumbs img.active { border-color: var(--primary); }
.pd-main-img { flex: 1; border-radius: var(--radius); overflow: hidden; }
.pd-main-img img { width: 100%; height: 420px; object-fit: cover; }

.pd-badges { display: flex; gap: 12px; margin-top: 18px; }
.pd-badge { flex: 1; background: var(--light-gray); border-radius: 10px; padding: 14px 10px; text-align: center; font-size: 12.5px; font-weight: 600; color: var(--text-dark); }
.pd-badge i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 6px; }

.fbt-box { background: var(--light-gray); border-radius: var(--radius); padding: 20px; margin-top: 20px; }
.fbt-box h6 { font-weight: 700; margin-bottom: 16px; }
.fbt-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-color); }
.fbt-item:last-of-type { border-bottom: none; }
.fbt-item img { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; }
.fbt-item .name { font-size: 13.5px; font-weight: 500; flex: 1; }
.fbt-item .price { font-weight: 700; font-size: 13.5px; color: var(--primary); }
.fbt-summary { display: flex; justify-content: space-between; padding-top: 14px; font-weight: 600; font-size: 14px; }

.pd-brand { color: var(--text-muted); font-size: 13.5px; margin-bottom: 6px; }
.pd-title { font-weight: 800; font-size: 26px; margin-bottom: 2px; }
.pd-subtitle { color: var(--primary); font-weight: 700; font-size: 17px; margin-bottom: 10px; }
.pd-meta { font-size: 12.5px; color: var(--text-muted); margin-bottom: 10px; }
.pd-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 16px; }
.pd-rating .stars { color: var(--star-gold); }
.pd-rating .stock { background: #dcfce7; color: #15803d; font-size: 11.5px; font-weight: 600; padding: 3px 10px; border-radius: 50px; }
.pd-price { font-size: 30px; font-weight: 800; color: var(--text-dark); }
.pd-price small { font-size: 13px; font-weight: 500; color: var(--text-muted); }

.option-group { margin-bottom: 20px; }
.option-group > label { font-weight: 700; font-size: 14px; display: block; margin-bottom: 10px; }
.option-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.option-pill {
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  background: #fff;
}
.option-pill.selected { border-color: var(--primary); background: rgba(29,101,209,.06); color: var(--primary); }
.color-swatch { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--border-color); cursor: pointer; display: inline-block; }
.color-swatch.selected { outline: 2px solid var(--primary); outline-offset: 2px; }

.pd-summary-box { background: var(--light-gray); border-radius: 10px; padding: 18px; margin-bottom: 20px; }
.pd-summary-box .row-line { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.pd-summary-box .row-line:last-child { margin-bottom: 0; padding-top: 10px; border-top: 1px solid var(--border-color); font-weight: 800; font-size: 17px; color: var(--primary); }

.pd-qty-cart { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; }

.pd-meta-list { list-style: none; padding: 0; margin: 0 0 18px; }
.pd-meta-list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-muted); margin-bottom: 10px; }
.pd-meta-list li i { color: var(--primary); font-size: 15px; }

.payment-row-text { font-size: 12.5px; color: var(--text-muted); margin-bottom: 8px; }
.payment-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.payment-badges span { background: var(--light-gray); border-radius: 6px; padding: 5px 12px; font-size: 12px; font-weight: 600; color: var(--text-dark); }

.pd-tabs .nav-link { color: var(--text-dark); font-weight: 600; border: none; border-bottom: 3px solid transparent; padding: 14px 22px; }
.pd-tabs .nav-link.active { color: var(--primary); border-color: var(--primary); background: transparent; }

.pd-key-features { list-style: none; padding: 0; margin: 20px 0 0; }
.pd-key-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; margin-bottom: 14px; line-height: 1.6; }

.whats-in-box { list-style: none; padding: 0; margin: 0; }
.whats-in-box li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.whats-in-box .icon-box { width: 42px; height: 42px; min-width: 42px; border-radius: 8px; background: var(--light-gray); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.whats-in-box h6 { font-weight: 700; font-size: 14.5px; margin-bottom: 2px; }
.whats-in-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 0; }

/* =============================================
   SELL YOUR MAC PAGE
============================================= */
.sell-form-panel { background: var(--light-gray); border-radius: var(--radius); padding: 44px; }
.sell-form-panel .about-heading { font-size: 30px; }
.contact-mini-card { background: #fff; border-radius: var(--radius); padding: 28px; text-align: center; height: 100%; }
.contact-mini-card .hero-info-icon { margin: 0 auto 14px; }
.contact-mini-card h6 { font-weight: 700; margin-bottom: 8px; }
.contact-mini-card a { color: var(--primary); font-size: 14px; line-height: 1.6; }

/* =============================================
   SHOP PAGE
============================================= */
.shop-hero { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%); padding: 60px 0 50px; text-align: center; }
.shop-hero h1 { color: #fff; font-weight: 800; font-size: 40px; margin-bottom: 24px; }
.shop-search { max-width: 640px; margin: 0 auto; position: relative; }
.shop-search input {
  width: 100%;
  border-radius: 50px;
  border: none;
  padding: 15px 24px 15px 48px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 14.5px;
}
.shop-search input::placeholder { color: rgba(255,255,255,.6); }
.shop-search i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.6); }

.filter-card { background: var(--light-gray); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.filter-card h6 { font-weight: 700; margin-bottom: 16px; }
.filter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}
.filter-item:hover { background: rgba(29,101,209,.06); }
.filter-item .count { background: #fff; border-radius: 50px; padding: 2px 10px; font-size: 12px; font-weight: 700; color: var(--text-muted); }
.filter-item.active { background: var(--navy); color: #fff; }
.filter-item.active .count { background: var(--yellow); color: var(--navy); }
.filter-check { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 12px; color: var(--text-dark); }
.filter-check input { width: 16px; height: 16px; accent-color: var(--primary); }

/* =============================================
   STATS BAND (MacBook Air page)
============================================= */
.stats-band { background: var(--primary); padding: 34px 0; }
.stat-card-white {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  height: 100%;
}
.stat-card-white h3 { font-weight: 800; font-size: 28px; color: var(--text-dark); margin-bottom: 4px; }
.stat-card-white p { font-size: 13px; color: var(--text-muted); margin-bottom: 0; }

/* =============================================
   NUMBERED TAB LIST + FIX CONTENT CARD
============================================= */
.numbered-tab-list { display: flex; flex-direction: column; gap: 10px; }
.numbered-tab-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light-gray);
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-dark);
  cursor: pointer;
}
.numbered-tab-item .num { font-weight: 800; font-size: 13px; color: var(--text-muted); }
.numbered-tab-item.active { background: var(--navy); color: #fff; }
.numbered-tab-item.active .num { color: var(--yellow); }

.fix-content-card { background: var(--light-gray); border-radius: var(--radius); overflow: hidden; height: 100%; }
.fix-content-card .row { height: 100%; }
.fix-content-card img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.fix-content-body { padding: 30px; }
.fix-content-body h4 { font-weight: 700; font-size: 20px; margin-bottom: 6px; }
.fix-content-body .sub-link { color: var(--primary); font-size: 13px; font-weight: 600; display: block; margin-bottom: 14px; }
.fix-content-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.fix-tags { display: flex; gap: 10px; margin-bottom: 22px; }
.fix-tags span { background: #fff; border: 1px solid var(--border-color); border-radius: 50px; padding: 5px 14px; font-size: 12px; font-weight: 600; color: var(--text-dark); }

/* =============================================
   DARK FEATURE STRIP (MacBook Pro page)
============================================= */
.dark-feature-strip { background: var(--navy-2); padding: 40px 0; }
.dark-feature-item { text-align: center; color: #fff; }
.dark-feature-item i { color: var(--yellow); font-size: 26px; margin-bottom: 12px; display: block; }
.dark-feature-item h6 { color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.dark-feature-item p { color: rgba(255,255,255,.6); font-size: 12.5px; margin-bottom: 0; line-height: 1.5; }

/* Text-only service card (no image) */
.text-service-card { background: var(--light-gray); border-radius: var(--radius); padding: 26px; height: 100%; }
.text-service-card h6 { font-weight: 700; font-size: 16px; margin-bottom: 12px; line-height: 1.4; }
.text-service-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }

/* Split checklist grid with center image (specialize-in-repairs sections) */
.center-image-grid { display: flex; align-items: stretch; gap: 24px; }
.center-image-grid .grid-col { flex: 1; display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.center-image-grid .grid-img { flex: 0 0 300px; border-radius: var(--radius); overflow: hidden; }
.center-image-grid .grid-img img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   MACUSER GROUP LISTING
============================================= */
.topic-pills { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.topic-pill {
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
}
.topic-pill.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.inline-search { position: relative; max-width: 280px; margin-left: auto; }
.inline-search input {
  width: 100%;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  padding: 10px 18px 10px 40px;
  font-size: 13.5px;
  background: var(--light-gray);
}
.inline-search i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }

.community-card { background: var(--light-gray); border-radius: var(--radius); overflow: hidden; height: 100%; }
.community-thumb { position: relative; }
.community-thumb img { width: 100%; aspect-ratio: 4/2.6; object-fit: cover; }
.community-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .4px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.community-body { padding: 20px; }
.community-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.community-body h6 { font-weight: 700; font-size: 15px; line-height: 1.4; margin-bottom: 10px; }
.community-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.community-author { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text-muted); font-weight: 600; }
.community-author img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }

/* =============================================
   MACUSER GROUP DETAILS (single post)
============================================= */
.post-breadcrumb { background: var(--light-gray); padding: 14px 0; font-size: 14px; color: var(--text-muted); }
.post-breadcrumb a { color: var(--text-muted); }
.post-breadcrumb a:hover { color: var(--primary); }
.post-breadcrumb .current { color: var(--text-dark); font-weight: 600; }

.post-title { font-weight: 800; font-size: 28px; margin: 24px 0 16px; }
.post-header-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.post-author { display: flex; align-items: center; gap: 12px; }
.post-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.post-author h6 { font-weight: 700; font-size: 14.5px; margin-bottom: 2px; }
.post-author span { font-size: 12.5px; color: var(--text-muted); }
.post-meta-right { font-size: 13px; color: var(--text-muted); }

.post-hero-img { width: 100%; border-radius: var(--radius); aspect-ratio: 16/7; object-fit: cover; margin-bottom: 30px; }
.post-body h3 { font-weight: 700; font-size: 20px; margin: 28px 0 14px; }
.post-body p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.post-body ul { padding-left: 20px; margin-bottom: 20px; }
.post-body ul li { font-size: 14.5px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.6; }
.post-mid-img { width: 100%; border-radius: var(--radius); aspect-ratio: 16/8; object-fit: cover; margin: 26px 0; }

.callout-box {
  background: var(--light-gray);
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  padding: 24px 28px;
  margin: 30px 0;
}
.callout-box h6 { font-weight: 700; margin-bottom: 10px; }
.callout-box p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 0; line-height: 1.7; }

.post-actions { display: flex; gap: 12px; margin: 30px 0; }
.post-actions button, .post-actions .post-tag {
  background: var(--light-gray);
  border: none;
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.reply-card { display: flex; gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--border-color); }
.reply-card img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.reply-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.reply-header h6 { font-weight: 700; font-size: 14.5px; margin-bottom: 0; }
.reply-badge { background: rgba(29,101,209,.1); color: var(--primary); font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: 50px; }
.reply-date { font-size: 12.5px; color: var(--text-muted); }
.reply-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.reply-footer { display: flex; gap: 20px; font-size: 13px; color: var(--text-muted); }
.reply-footer a { color: var(--text-muted); }

.reply-form-box { background: var(--light-gray); border-radius: var(--radius); padding: 26px; margin-top: 30px; }
.reply-form-box h6 { font-weight: 700; margin-bottom: 16px; }
.reply-form-box textarea { border-radius: 10px; border: 1px solid var(--border-color); padding: 14px; font-size: 14px; width: 100%; margin-bottom: 16px; }

/* Breadcrumb */
#breadcrumb {
    padding: 50px 0;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #breadcrumb {
        padding: 30px 0;
    }
}
/* Breadcrumb */

/* Checkout Page */
#checkout_page {
    padding: 60px 0;
}
#checkout_page .btn {
    background-color: var(--blue);
    color: var(--border-soft);
    border-radius: 10px;
}
#checkout_page .btn:hover {
    background-color: var(--blue-dark);
    color: var(--border-color);
}
#checkout_page .accordion-button {
    background-color: var(--offwhite-color);
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
}
#checkout_page .accordion-button:focus {
    box-shadow: none;
}
#checkout_page .accordion-button:not(.collapsed) {
    color: var(--navy);
}
#checkout-button-addon2 {
    border-radius: 0 !important;
    border: none;
}
.checkout_online_payment_icon li {
    display: inline-block;
}
.checkout_online_payment_icon li img {
    width: 80px;
}
#checkout_page_form {
    position: sticky;
    top: 100px;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    #checkout_page {
        padding: 30px 0;
    }
    .checkout_online_payment_icon li img {
        width: 60px;
    }
}
/* Checkout Page */

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991.98px) {
  .main-navbar{
    padding: 0 10px;
  }
  .hero-title { font-size: 36px; }
  .main-menu { margin: 16px 0; gap: 0; }
  .hero-badge { position: static; margin-top: 14px; }
  .benefits-card-panel { margin-top: 20px; padding: 26px; }
}
@media (max-width: 767.98px) {
  .main-navbar{
    padding: 0 0px;
  }
  .hero-photo-wrap{margin-top: 20px;}
  .section-pad { padding: 55px 0; }
  .section-heading h2, .about-heading { font-size: 26px; }
  .hero-title { font-size: 30px; }
  .blog-card-sm { flex-direction: column; }
  .blog-card-sm img { width: 100%; aspect-ratio: 16/10; }
  .trouble-section h2 { font-size: 26px; }
  .page-hero h1, .corp-hero h1 { font-size: 30px; }

  /* Timeline collapses to a single left-aligned column on mobile */
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-left, .timeline-right { justify-content: flex-start; padding-left: 50px; }
  .timeline-card { width: 100%; }
  .timeline-dot { left: 20px; }

  .values-photo-strip { grid-template-columns: 1fr; }
  .business-account-panel { padding: 26px; }

  .repair-hero h1 { font-size: 28px; }
  .photo-cta-card { position: static; margin-top: -60px; max-width: 100%; }
  .photo-cta-wrap img { height: 280px; }
  .split-dark-banner .banner-text { padding: 30px; }
  .issue-overlay-card { margin-top: -50px; padding: 24px; }
  .issue-overlay-wrap > img { height: 240px; }

  .photo-cta-full > img { height: 380px; }
  .photo-cta-full::after { background: linear-gradient(180deg, rgba(11,30,51,.3) 0%, rgba(11,30,51,.92) 65%); }
  .photo-cta-full-text { max-width: 100%; padding: 0 24px; align-items: flex-start; text-align: left; justify-content: flex-end; padding-bottom: 30px; }
  .photo-cta-full-text h2 { font-size: 24px; }
}

/* ============ RESPONSIVE ============ */
  @media (max-width: 991px){
    .timeline-line{ left: 20px; }
    .timeline-row, .timeline-row.left, .timeline-row.right{
      justify-content: flex-start;
      padding-left: 55px;
    }
    .timeline-card{ width: 100%; }
    .timeline-dot{ left: 20px; }
    .hero-section h1{ font-size: 32px; }
    .mission-section h2{ font-size: 28px; }
  }