/* =====================================================
   AA COMPUTER SOLUTIONS
===================================================== */

:root {
  --primary: #123fd6;
  --primary-dark: #082ba8;
  --navy: #03143c;
  --navy-light: #0a245b;
  --orange: #ff5a12;
  --orange-dark: #e64a05;
  --white: #ffffff;
  --text: #162033;
  --muted: #667085;
  --light: #f5f8ff;
  --border: #e5e9f1;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

a {
  text-decoration: none;
}

/* Topbar */

.topbar {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(90deg, #020d2d, #061c4d 55%, #020d2d);
  font-size: 13px;
  font-weight: 600;
}

.topbar a,
.topbar span {
  color: var(--white);
}

.topbar i {
  margin-right: 7px;
}

.topbar-right > a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar-right > a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.topbar-right > a i {
  margin: 0;
}

/* Navbar */

.topbar,
.main-navbar {
  width: 100%;
}

.topbar .container-fluid,
.main-navbar .container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

.navbar-brand {
  margin-left: 0;
}

.main-navbar .navbar-collapse {
  width: 100%;
}
.main-navbar {
  min-height: 82px;
  padding: 8px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 5px 20px rgba(3, 20, 60, 0.09);
}

.navbar-brand {
  width: 280px;
  margin-right: 35px;
}

.navbar-brand img {
  width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.main-navbar .navbar-nav {
  gap: 5px;
}

.main-navbar .nav-link {
  position: relative;
  padding: 30px 14px !important;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--primary);
}

.main-navbar .nav-link.active::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  height: 3px;
  border-radius: 10px;
  background: var(--primary);
}

.dropdown-menu {
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 35px rgba(3, 20, 60, 0.15);
}

.dropdown-item {
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.dropdown-item:hover {
  color: var(--primary);
  background: #eef4ff;
}

.btn-orange {
  min-width: 128px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #ff6a1a, var(--orange));
  box-shadow: 0 8px 18px rgba(255, 90, 18, 0.26);
  font-size: 14px;
  font-weight: 800;
}


.btn-orange:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

/* Starter page content */

.page-hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8faff, #eef4ff);
}

.page-hero .eyebrow {
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.page-hero h1 {
  max-width: 850px;
  margin-inline: auto;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
}

.page-hero h1 span {
  color: var(--primary);
}

.page-hero p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.content-section {
  padding: 80px 0;
}

/* Footer */

.site-footer {
  color: rgba(255,255,255,0.82);
  background: linear-gradient(135deg, #03143c, #071f55);
}

.footer-logo {
  width: 270px;
  height: 70px;
  padding: 8px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
  background: var(--white);
}

.footer-about {
  max-width: 390px;
  line-height: 1.8;
}

.site-footer h5 {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 12px;
  color: var(--white);
  font-size: 18px;
}

.site-footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 10px;
  background: var(--orange);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  transition: 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  color: var(--white);
  background: var(--primary);
}

.footer-links,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 11px;
}

.footer-links a {
  color: rgba(255,255,255,0.78);
  transition: 0.2s ease;
}

.footer-links a:hover {
  padding-left: 4px;
  color: var(--white);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-list li + li {
  margin-top: 16px;
}

.contact-list i {
  width: 18px;
  margin-top: 4px;
  color: #4ca4ff;
}

.contact-list a {
  color: rgba(255,255,255,0.82);
}

.contact-list a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.15);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.78);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Floating buttons */

.floating-whatsapp,
.floating-call,
#backToTop {
  position: fixed;
  z-index: 1100;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}

.floating-whatsapp {
  right: 24px;
  bottom: 86px;
  background: #25d366;
  font-size: 25px;
}

.floating-call {
  left: 20px;
  bottom: 20px;
  background: var(--primary);
  font-size: 20px;
}

#backToTop {
  right: 24px;
  bottom: 24px;
  display: none;
  background: var(--orange);
  font-size: 17px;
}

#backToTop.show {
  display: inline-flex;
}

/* =====================================================
   HOMEPAGE DESIGN
===================================================== */

.home-page {
  overflow: hidden;
  background: #ffffff;
}

.home-full-container {
  width: 100%;
  padding-left: 14px;
  padding-right: 14px;
}

.home-content-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
}

/* Hero */

.home-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #ffffff;
  background-image: url("../images/banner/home-hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 255, 255, 0.98) 31%,
    rgba(255, 255, 255, 0.83) 47%,
    rgba(255, 255, 255, 0.12) 69%,
    rgba(255, 255, 255, 0) 100%
  );
}

.home-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 34px;
  padding-right: 34px;
}

.home-hero__content {
  width: 100%;
  max-width: 620px;
  padding: 68px 0 118px;
}

.home-hero__eyebrow {
  margin: 0 0 23px;
  color: #123fd6;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.home-hero__eyebrow span {
  display: inline-block;
  padding: 0 3px;
}

.home-hero__title {
  margin: 0;
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-size: clamp(45px, 4.2vw, 67px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.home-hero__title span {
  display: block;
  margin-top: 5px;
  color: #123fd6;
}

.home-hero__description {
  max-width: 590px;
  margin: 25px 0 0;
  color: #202633;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
}

.home-hero__buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 31px;
}

.home-btn {
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-btn:hover {
  transform: translateY(-2px);
}

.home-btn--primary {
  min-width: 150px;
  color: #ffffff;
  background: linear-gradient(135deg, #143ee3, #0d2dbc);
  box-shadow: 0 9px 22px rgba(18, 63, 214, 0.24);
}

.home-btn--primary:hover {
  color: #ffffff;
  box-shadow: 0 12px 27px rgba(18, 63, 214, 0.32);
}

.home-btn--outline {
  min-width: 145px;
  color: #061946;
  border-color: #09286d;
  background: rgba(255, 255, 255, 0.93);
}

.home-btn--outline:hover {
  color: #123fd6;
  background: #ffffff;
}

/* Trust strip */

.home-trust-section {
  position: relative;
  z-index: 4;
  margin-top: -66px;
}

.home-trust-strip {
  min-height: 102px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 13px 20px;
  border-radius: 12px 12px 0 0;
  color: #ffffff;
  background: linear-gradient(90deg, #020f38, #031a50 50%, #020f38);
  box-shadow: 0 12px 27px rgba(3, 20, 60, 0.16);
}

.home-trust-item {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 8px 28px;
}

.home-trust-item + .home-trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.home-trust-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1595ff;
  border-radius: 50%;
  color: #1595ff;
  font-size: 25px;
}

.home-trust-content h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.home-trust-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 500;
}

/* Common section heading */

.home-section {
  padding: 42px 0 0;
}

.home-section-heading {
  margin-bottom: 26px;
  text-align: center;
}

.home-section-heading p {
  margin: 0 0 7px;
  color: #123fd6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.home-section-heading h2 {
  margin: 0;
  color: #071b4b;
  font-size: 31px;
  line-height: 1.25;
}

/* Services */

.home-services-section {
  padding-bottom: 38px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-service-card {
  min-height: 275px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 28px 17px 24px;
  border: 1px solid #e0e5ee;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(3, 20, 60, 0.04);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-service-card:hover {
  transform: translateY(-5px);
  border-color: #bfd0ff;
  box-shadow: 0 15px 32px rgba(3, 20, 60, 0.10);
}

.home-service-icon {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #123fd6;
  font-size: 44px;
}

.home-service-card h3 {
  margin: 17px 0 12px;
  color: #101010;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.home-service-card p {
  min-height: 54px;
  margin: 0;
  color: #303744;
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-line;
}

.home-service-card a {
  margin-top: auto;
  color: #123fd6;
  font-size: 14px;
  font-weight: 800;
}

.home-service-card a i {
  margin-left: 8px;
  font-size: 12px;
}

/* Counter strip */

.home-counter-section {
  padding: 0 0 38px;
}

.home-counter-strip {
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 18px 28px;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(90deg, #020f38, #031a50 50%, #020f38);
  box-shadow: 0 12px 27px rgba(3, 20, 60, 0.13);
}

.home-counter-item {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px 24px;
}

.home-counter-item + .home-counter-item {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.home-counter-icon {
  color: #1595ff;
  font-size: 49px;
}

.home-counter-item strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.home-counter-item span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

/* Why choose us */

.home-why-section {
  padding-top: 0;
  padding-bottom: 38px;
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 25px;
}

.home-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.home-why-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #123fd6;
  border-radius: 12px;
  color: #123fd6;
  font-size: 22px;
}

.home-why-item h3 {
  margin: 1px 0 6px;
  color: #071b4b;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.home-why-item p {
  margin: 0;
  color: #3c4658;
  font-size: 12px;
  line-height: 1.6;
}

/* Reviews */

.home-reviews-section {
  padding-top: 0;
  padding-bottom: 24px;
}

.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-review-card {
  min-height: 195px;
  padding: 20px 22px;
  border: 1px solid #e0e5ee;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(3, 20, 60, 0.04);
}

.home-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.home-review-person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.home-review-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #123fd6, #071b4b);
  font-size: 22px;
}

.home-review-person h3 {
  margin: 0 0 4px;
  color: #071b4b;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.home-review-person span {
  color: #4d586a;
  font-size: 12px;
}

.home-review-stars {
  display: flex;
  gap: 2px;
  color: #ffad00;
  font-size: 12px;
}

.home-review-card > p {
  margin: 20px 0 0 65px;
  color: #233047;
  font-size: 13px;
  line-height: 1.75;
}

/* Brands */

.home-brands-section {
  padding: 0 0 19px;
}

.home-brands-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  gap: 25px;
  text-align: center;
}

.home-brand {
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.home-brand--dell,
.home-brand--hp,
.home-brand--asus,
.home-brand--epson {
  color: #123fd6;
}

.home-brand--lenovo,
.home-brand--canon {
  color: #ee1b24;
}

.home-brand--acer {
  color: #4caa22;
  font-style: italic;
}

.home-brand--apple {
  color: #000000;
  font-size: 33px;
}

.home-brand--hp {
  font-style: italic;
  text-transform: lowercase;
}

/* CTA */

.home-cta-section {
  padding-bottom: 0;
}

.home-cta-strip {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 13px 75px;
  border-radius: 12px 12px 0 0;
  color: #ffffff;
  background: linear-gradient(90deg, #123fd6, #061a71 65%, #123fd6);
}

.home-cta-content {
  display: flex;
  align-items: center;
  gap: 22px;
}

.home-cta-icon {
  color: #ffffff;
  font-size: 42px;
}

.home-cta-content h2 {
  margin: 0 0 4px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.home-cta-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.home-cta-button {
  min-width: 200px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a1a, #ff5a12);
  box-shadow: 0 8px 18px rgba(255, 90, 18, 0.26);
  font-size: 17px;
  font-weight: 800;
}

.home-cta-button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #ff5a12, #e64a05);
}

/* =====================================================
   FINAL HEADER SPACING CORRECTION
   Existing topbar and navbar design remains unchanged.
===================================================== */

.topbar {
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.topbar .container-fluid {
  min-height: 44px;
  margin: 0 !important;
}

.main-navbar {
  min-height: 72px !important;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.main-navbar .container-fluid {
  min-height: 72px;
  margin: 0 !important;
}

.navbar-brand {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.main-navbar .navbar-collapse {
  min-height: 72px;
}

.main-navbar .navbar-nav {
  min-height: 72px;
}

.main-navbar .nav-link {
  min-height: 72px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: flex;
  align-items: center;
}

.main-navbar .nav-link.active::before {
  bottom: 10px;
}


/* =====================================================
   FINAL HOMEPAGE SECTION SPACING
===================================================== */

.home-why-section {
  padding-bottom: 70px;
}

.home-reviews-section {
  padding-top: 12px;
  padding-bottom: 48px;
}

.home-brands-section {
  padding-top: 12px;
  padding-bottom: 30px;
}

/* =====================================================
   ABOUT PAGE ONLY
   All selectors are scoped with .about-page
===================================================== */

.about-page {
  overflow: hidden;
  background: #ffffff;
}

.about-page .about-page-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
}


/* About page banner */

.about-page .about-page-banner {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #03143c;
  background-image: url("../images/banner/about-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.about-page .about-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 20, 60, 0.98) 0%,
    rgba(3, 20, 60, 0.90) 50%,
    rgba(3, 20, 60, 0.52) 100%
  );
}

.about-page .about-page-banner__content {
  position: relative;
  z-index: 2;
  padding: 44px 0;
  color: #ffffff;
}

.about-page .about-page-banner__content h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  font-weight: 800;
}

.about-page .about-page-breadcrumb {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.about-page .about-page-breadcrumb li,
.about-page .about-page-breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
}

.about-page .about-page-breadcrumb i {
  font-size: 10px;
}


/* Common about page styles */

.about-page .about-page-section {
  padding: 58px 0;
}

.about-page .about-page-heading {
  margin-bottom: 30px;
  text-align: center;
}

.about-page .about-page-heading p,
.about-page .about-page-label {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.about-page .about-page-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 800;
}


/* Who we are */

.about-page .about-page-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  gap: 36px;
  align-items: stretch;
}

.about-page .about-page-intro__image {
  min-height: 420px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(3, 20, 60, 0.10);
}

.about-page .about-page-intro__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.about-page .about-page-intro__content {
  padding: 4px 0;
}

.about-page .about-page-intro__content h2 {
  margin: 0 0 15px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.about-page .about-page-description {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.8;
}

.about-page .about-page-description + .about-page-description {
  margin-top: 10px;
}

.about-page .about-page-checklist {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.about-page .about-page-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #182235;
  font-size: 14px;
}

.about-page .about-page-checklist li + li {
  margin-top: 12px;
}

.about-page .about-page-checklist i {
  color: var(--primary);
  font-size: 16px;
}

.about-page .about-page-purpose {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-page .about-page-purpose__card {
  min-height: 132px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(3, 20, 60, 0.04);
}

.about-page .about-page-purpose__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary);
  background: #eef3ff;
  font-size: 28px;
}

.about-page .about-page-purpose__card h3 {
  margin: 0 0 8px;
  color: var(--primary);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.about-page .about-page-purpose__card p {
  margin: 0;
  color: #334155;
  font-size: 13px;
  line-height: 1.7;
}


/* Team */

.about-page .about-page-team {
  padding-top: 20px;
}

.about-page .about-page-team__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about-page .about-page-team__card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(3, 20, 60, 0.05);
}

.about-page .about-page-team__image {
  height: 235px;
  overflow: hidden;
  background: #f2f4f8;
}

.about-page .about-page-team__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.about-page .about-page-team__content {
  min-height: 180px;
  padding: 20px;
  text-align: center;
}

.about-page .about-page-team__content h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.about-page .about-page-team__content span {
  display: block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.about-page .about-page-team__content p {
  margin: 14px 0 0;
  color: #334155;
  font-size: 13px;
  line-height: 1.65;
}


/* Journey */

.about-page .about-page-journey {
  padding-top: 14px;
}

.about-page .about-page-journey__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(3, 20, 60, 0.05);
}

.about-page .about-page-journey__item {
  min-height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 12px 18px;
  text-align: center;
}

.about-page .about-page-journey__item + .about-page-journey__item {
  border-left: 1px solid var(--border);
}

.about-page .about-page-journey__icon {
  margin-bottom: 9px;
  color: var(--primary);
  font-size: 32px;
}

.about-page .about-page-journey__item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 23px;
  line-height: 1;
}

.about-page .about-page-journey__item span {
  color: #263246;
  font-size: 12px;
  line-height: 1.5;
}


/* CTA */

.about-page .about-page-cta {
  padding-bottom: 0;
}

.about-page .about-page-cta__box {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 55px;
  border-radius: 12px 12px 0 0;
  color: #ffffff;
  background: linear-gradient(90deg, #123fd6, #061a71 70%, #123fd6);
}

.about-page .about-page-cta__content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.about-page .about-page-cta__icon {
  color: #ffffff;
  font-size: 40px;
}

.about-page .about-page-cta__content h2 {
  margin: 0 0 4px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.about-page .about-page-cta__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.about-page .about-page-cta__button {
  min-width: 190px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.about-page .about-page-cta__button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
}

/* =====================================================
   RENTAL PAGE ONLY
===================================================== */

.rental-page {
  overflow: hidden;
  background: #ffffff;
}

.rental-page .rental-page-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
}


/* Banner */

.rental-page .rental-page-banner {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #03143c;
  background-image: url("../images/banner/rental-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.rental-page .rental-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 20, 60, 0.98) 0%,
    rgba(3, 20, 60, 0.92) 48%,
    rgba(3, 20, 60, 0.42) 100%
  );
}

.rental-page .rental-page-banner__content {
  position: relative;
  z-index: 2;
  padding: 55px 0;
  color: #ffffff;
}

.rental-page .rental-page-banner__content h1 {
  margin: 0 0 15px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 800;
}

.rental-page .rental-page-breadcrumb {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.rental-page .rental-page-breadcrumb li,
.rental-page .rental-page-breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}

.rental-page .rental-page-breadcrumb i {
  font-size: 10px;
}


/* Common */

.rental-page .rental-page-section {
  padding: 58px 0;
}

.rental-page .rental-page-heading {
  max-width: 840px;
  margin: 0 auto 32px;
  text-align: center;
}

.rental-page .rental-page-heading p,
.rental-page .rental-page-label {
  margin: 0 0 9px;
  color: #123fd6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.rental-page .rental-page-heading h2 {
  margin: 0;
  color: #03143c;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
}

.rental-page .rental-page-heading span {
  display: block;
  margin-top: 14px;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}


/* Plans */

.rental-page .rental-page-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.rental-page .rental-page-plan-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #e5e9f1;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8faff, #ffffff);
  box-shadow: 0 9px 25px rgba(3, 20, 60, 0.05);
}

.rental-page .rental-page-plan-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #123fd6;
  background: #edf3ff;
  font-size: 27px;
}

.rental-page .rental-page-plan-card h3 {
  margin: 19px 0 18px;
  color: #123fd6;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.rental-page .rental-page-plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rental-page .rental-page-plan-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e293b;
  font-size: 14px;
}

.rental-page .rental-page-plan-card li + li {
  margin-top: 17px;
}

.rental-page .rental-page-plan-card li i {
  color: #123fd6;
  font-size: 14px;
}

.rental-page .rental-page-plan-card > a {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #ffffff;
  background: linear-gradient(135deg, #143ee3, #0d2dbc);
  font-size: 14px;
  font-weight: 800;
}


/* Features */

.rental-page .rental-page-features {
  padding-top: 20px;
  background: #fbfcff;
}

.rental-page .rental-page-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.rental-page .rental-page-feature-card {
  min-height: 210px;
  padding: 26px 22px;
  border: 1px solid #e5e9f1;
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(3, 20, 60, 0.04);
}

.rental-page .rental-page-feature-card__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #123fd6;
  background: #eef3ff;
  font-size: 25px;
}

.rental-page .rental-page-feature-card h3 {
  margin: 0 0 10px;
  color: #03143c;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.rental-page .rental-page-feature-card p {
  margin: 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.7;
}


/* Why choose */

.rental-page .rental-page-why {
  padding-top: 42px;
}

.rental-page .rental-page-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.8fr);
  gap: 30px;
  align-items: stretch;
}

.rental-page .rental-page-why__content {
  padding: 30px;
  border: 1px solid #e5e9f1;
  border-radius: 16px;
  background: #ffffff;
}

.rental-page .rental-page-why__content h2 {
  margin: 0;
  color: #03143c;
  font-family: "Manrope", sans-serif;
  font-size: 31px;
  font-weight: 800;
}

.rental-page .rental-page-why__lists {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
}

.rental-page .rental-page-why__lists ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rental-page .rental-page-why__lists li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e293b;
  font-size: 14px;
}

.rental-page .rental-page-why__lists li + li {
  margin-top: 15px;
}

.rental-page .rental-page-why__lists i {
  color: #123fd6;
  font-size: 15px;
}

.rental-page .rental-page-contact-card {
  min-height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #03143c, #071f55);
}

.rental-page .rental-page-contact-card__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 28px;
}

.rental-page .rental-page-contact-card h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.rental-page .rental-page-contact-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.rental-page .rental-page-contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #ffffff;
  font-size: 25px;
  font-weight: 800;
}


/* CTA */

.rental-page .rental-page-cta {
  padding-bottom: 0;
}

.rental-page .rental-page-cta__box {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 55px;
  border-radius: 12px 12px 0 0;
  color: #ffffff;
  background: linear-gradient(90deg, #123fd6, #061a71 70%, #123fd6);
}

.rental-page .rental-page-cta__content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rental-page .rental-page-cta__icon {
  color: #ffffff;
  font-size: 40px;
}

.rental-page .rental-page-cta__content h2 {
  margin: 0 0 4px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.rental-page .rental-page-cta__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.rental-page .rental-page-cta__button {
  min-width: 190px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a1a, #ff5a12);
  font-size: 14px;
  font-weight: 800;
}

/* =====================================================
   AMC & IT SOLUTIONS PAGE ONLY
===================================================== */

.amc-page {
  overflow: hidden;
  background: #ffffff;
}

.amc-page .amc-page-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
}


/* Banner */

.amc-page .amc-page-banner {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #03143c;
  background-image: url("../images/banner/amc-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.amc-page .amc-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 20, 60, 0.98) 0%,
    rgba(3, 20, 60, 0.92) 48%,
    rgba(3, 20, 60, 0.40) 100%
  );
}

.amc-page .amc-page-banner__content {
  position: relative;
  z-index: 2;
  padding: 55px 0;
  color: #ffffff;
}

.amc-page .amc-page-banner__content h1 {
  margin: 0 0 15px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 800;
}

.amc-page .amc-page-breadcrumb {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.amc-page .amc-page-breadcrumb li,
.amc-page .amc-page-breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}

.amc-page .amc-page-breadcrumb i {
  font-size: 10px;
}


/* Common */

.amc-page .amc-page-section {
  padding: 58px 0;
}

.amc-page .amc-page-label,
.amc-page .amc-page-heading p {
  margin: 0 0 9px;
  color: #123fd6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.amc-page .amc-page-heading {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.amc-page .amc-page-heading h2 {
  margin: 0;
  color: #03143c;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
}


/* Intro and plans */

.amc-page .amc-page-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.55fr);
  gap: 34px;
  align-items: start;
}

.amc-page .amc-page-intro__content h2 {
  margin: 0 0 15px;
  color: #03143c;
  font-family: "Manrope", sans-serif;
  font-size: 33px;
  font-weight: 800;
  line-height: 1.3;
}

.amc-page .amc-page-intro__content > p:last-of-type {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.amc-page .amc-page-checks {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 26px;
}

.amc-page .amc-page-checks ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.amc-page .amc-page-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e293b;
  font-size: 14px;
}

.amc-page .amc-page-checks li + li {
  margin-top: 17px;
}

.amc-page .amc-page-checks i {
  color: #123fd6;
}

.amc-page .amc-page-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.amc-page .amc-page-plan-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border: 1px solid #e5e9f1;
  border-radius: 15px;
  background: linear-gradient(180deg, #f8faff, #ffffff);
  box-shadow: 0 9px 25px rgba(3, 20, 60, 0.05);
}

.amc-page .amc-page-plan-card > p {
  margin: 0 0 7px;
  color: #123fd6;
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.amc-page .amc-page-plan-card > span {
  color: #475569;
  font-size: 13px;
}

.amc-page .amc-page-plan-price {
  margin: 20px 0;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.amc-page .amc-page-plan-price strong {
  color: #123fd6;
  font-size: 38px;
  line-height: 1;
}

.amc-page .amc-page-plan-price small {
  color: #111827;
  font-size: 14px;
  font-weight: 700;
}

.amc-page .amc-page-plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.amc-page .amc-page-plan-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e293b;
  font-size: 13px;
}

.amc-page .amc-page-plan-card li + li {
  margin-top: 14px;
}

.amc-page .amc-page-plan-card li i {
  color: #123fd6;
}

.amc-page .amc-page-plan-card > a {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #ffffff;
  background: linear-gradient(135deg, #143ee3, #0d2dbc);
  font-size: 14px;
  font-weight: 800;
}


/* Services */

.amc-page .amc-page-services {
  padding-top: 10px;
}

.amc-page .amc-page-services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.amc-page .amc-page-service-card {
  min-height: 220px;
  padding: 26px 20px;
  border: 1px solid #e5e9f1;
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(3, 20, 60, 0.04);
}

.amc-page .amc-page-service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #123fd6;
  background: #eef3ff;
  font-size: 27px;
}

.amc-page .amc-page-service-card h3 {
  margin: 0 0 10px;
  color: #03143c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.amc-page .amc-page-service-card p {
  margin: 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.7;
}


/* Benefits */

.amc-page .amc-page-benefits {
  padding-top: 24px;
}

.amc-page .amc-page-benefits__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.amc-page .amc-page-benefits__image {
  min-height: 330px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(3, 20, 60, 0.10);
}

.amc-page .amc-page-benefits__image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
}

.amc-page .amc-page-benefits__content h2 {
  margin: 0 0 15px;
  color: #03143c;
  font-family: "Manrope", sans-serif;
  font-size: 33px;
  font-weight: 800;
  line-height: 1.3;
}

.amc-page .amc-page-benefits__content > p:last-of-type {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.amc-page .amc-page-benefits__content ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.amc-page .amc-page-benefits__content li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e293b;
  font-size: 14px;
}

.amc-page .amc-page-benefits__content li + li {
  margin-top: 14px;
}

.amc-page .amc-page-benefits__content i {
  color: #123fd6;
}


/* CTA */

.amc-page .amc-page-cta {
  padding-bottom: 0;
}

.amc-page .amc-page-cta__box {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 55px;
  border-radius: 12px 12px 0 0;
  color: #ffffff;
  background: linear-gradient(90deg, #03143c, #071f55 70%, #03143c);
}

.amc-page .amc-page-cta__content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.amc-page .amc-page-cta__icon {
  color: #ffffff;
  font-size: 40px;
}

.amc-page .amc-page-cta__content h2 {
  margin: 0 0 4px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.amc-page .amc-page-cta__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.amc-page .amc-page-cta__button {
  min-width: 190px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a1a, #ff5a12);
  font-size: 14px;
  font-weight: 800;
}

/* =====================================================
   CONTACT PAGE ONLY
===================================================== */

.contact-page {
  overflow: hidden;
  background: #ffffff;
}

.contact-page .contact-page-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
}


/* Banner */

.contact-page .contact-page-banner {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #03143c;
  background-image: url("../images/banner/contact-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.contact-page .contact-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 20, 60, 0.98) 0%,
    rgba(3, 20, 60, 0.91) 48%,
    rgba(3, 20, 60, 0.38) 100%
  );
}

.contact-page .contact-page-banner__content {
  position: relative;
  z-index: 2;
  padding: 55px 0;
  color: #ffffff;
}

.contact-page .contact-page-banner__content h1 {
  margin: 0 0 15px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 800;
}

.contact-page .contact-page-breadcrumb {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.contact-page .contact-page-breadcrumb li,
.contact-page .contact-page-breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}

.contact-page .contact-page-breadcrumb i {
  font-size: 10px;
}


/* Main section */

.contact-page .contact-page-section {
  padding: 58px 0;
}

.contact-page .contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.contact-page .contact-page-heading {
  margin-bottom: 24px;
  text-align: center;
}

.contact-page .contact-page-heading--left {
  text-align: left;
}

.contact-page .contact-page-heading p,
.contact-page .contact-page-label {
  margin: 0 0 9px;
  color: #123fd6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.contact-page .contact-page-heading h2 {
  margin: 0;
  color: #03143c;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  font-weight: 800;
}

.contact-page .contact-page-heading span {
  display: block;
  margin-top: 12px;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}


/* Form */

.contact-page .contact-page-form {
  display: grid;
  gap: 14px;
}

.contact-page .contact-page-form__group {
  display: grid;
  gap: 7px;
}

.contact-page .contact-page-form__group label {
  color: #1e293b;
  font-size: 13px;
  font-weight: 700;
}

.contact-page .contact-page-form__group input,
.contact-page .contact-page-form__group textarea {
  width: 100%;
  border: 1px solid #dce3ee;
  border-radius: 9px;
  outline: 0;
  color: #172033;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-page .contact-page-form__group input {
  min-height: 50px;
  padding: 0 16px;
}

.contact-page .contact-page-form__group textarea {
  min-height: 145px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-page .contact-page-form__group input:focus,
.contact-page .contact-page-form__group textarea:focus {
  border-color: #123fd6;
  box-shadow: 0 0 0 4px rgba(18, 63, 214, 0.10);
}

.contact-page .contact-page-form__button {
  width: 100%;
  min-height: 50px;
  margin-top: 3px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #143ee3, #0d2dbc);
  box-shadow: 0 9px 22px rgba(18, 63, 214, 0.20);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
}


/* Contact details */

.contact-page .contact-page-right {
  display: grid;
  gap: 18px;
}

.contact-page .contact-page-info-card {
  padding: 28px 32px;
  border: 1px solid #e5e9f1;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(3, 20, 60, 0.05);
}

.contact-page .contact-page-info-list {
  margin-top: 22px;
  display: grid;
  gap: 20px;
}

.contact-page .contact-page-info-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.contact-page .contact-page-info-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #123fd6;
  background: #eef3ff;
  font-size: 21px;
}

.contact-page .contact-page-info-item h3 {
  margin: 0 0 4px;
  color: #03143c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.contact-page .contact-page-info-item p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.65;
}

.contact-page .contact-page-info-item p + p {
  margin-top: 2px;
}

.contact-page .contact-page-info-item a {
  color: #334155;
}

.contact-page .contact-page-info-item a:hover {
  color: #123fd6;
}


/* Map */

.contact-page .contact-page-map {
  height: 280px;
  overflow: hidden;
  border: 1px solid #e5e9f1;
  border-radius: 15px;
  background: #f5f7fb;
}

.contact-page .contact-page-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}


/* Follow us */

.contact-page .contact-page-social {
  padding-bottom: 0;
}

.contact-page .contact-page-social__box {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 48px;
  border-radius: 12px 12px 0 0;
  color: #ffffff;
  background: linear-gradient(90deg, #123fd6, #061a71 70%, #123fd6);
}

.contact-page .contact-page-social__box h2 {
  margin: 0 0 5px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.contact-page .contact-page-social__box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.contact-page .contact-page-social__links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-page .contact-page-social__links a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  font-size: 21px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.contact-page .contact-page-social__links a:hover {
  transform: translateY(-3px);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.20);
}

/* =====================================================
   LAPTOP REPAIR PAGE ONLY
===================================================== */

.laptop-repair-page {
  overflow: visible;
  background: #ffffff;
}

.laptop-repair-page .laptop-repair-page-container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 26px;
  padding-right: 26px;
}


/* Main layout */

.laptop-repair-page .laptop-repair-page-hero {
  padding: 42px 0 58px;
}

.laptop-repair-page .laptop-repair-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: start;
}


/* Banner */

.laptop-repair-page .laptop-repair-page-banner {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 22px;
  background-color: #ff6a00;
  background-image: url("../images/banner/laptop-repair-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  box-shadow: 0 14px 34px rgba(3, 20, 60, 0.10);
}

.laptop-repair-page .laptop-repair-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 98, 0, 0.94) 0%,
    rgba(255, 98, 0, 0.84) 40%,
    rgba(255, 98, 0, 0.18) 66%,
    rgba(255, 98, 0, 0.00) 100%
  );
}

.laptop-repair-page .laptop-repair-page-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  padding: 54px;
  color: #ffffff;
}

.laptop-repair-page .laptop-repair-page-banner__content > p {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.laptop-repair-page .laptop-repair-page-banner__content h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
}

.laptop-repair-page .laptop-repair-page-banner__content h1 span {
  display: block;
}

.laptop-repair-page .laptop-repair-page-banner__content h2 {
  margin: 23px 0 0;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
}

.laptop-repair-page .laptop-repair-page-banner__content a {
  min-width: 150px;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ff5a12;
  background: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.laptop-repair-page .laptop-repair-page-breadcrumb {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 14px;
}

.laptop-repair-page .laptop-repair-page-breadcrumb a {
  color: #123fd6;
}

.laptop-repair-page .laptop-repair-page-breadcrumb i {
  font-size: 9px;
}


/* Common section */

.laptop-repair-page .laptop-repair-page-section {
  padding: 54px 0 0;
}

.laptop-repair-page .laptop-repair-page-heading {
  margin-bottom: 26px;
  text-align: center;
}

.laptop-repair-page .laptop-repair-page-heading p,
.laptop-repair-page .laptop-repair-page-label {
  margin: 0 0 9px;
  color: #123fd6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.laptop-repair-page .laptop-repair-page-heading h2 {
  margin: 0;
  color: #03143c;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
}

.laptop-repair-page .laptop-repair-page-intro p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.9;
}

.laptop-repair-page .laptop-repair-page-intro p + p {
  margin-top: 12px;
}


/* Service cards */

.laptop-repair-page .laptop-repair-page-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.laptop-repair-page .laptop-repair-page-service-card {
  min-height: 210px;
  padding: 24px 19px;
  border: 1px solid #e5e9f1;
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(3, 20, 60, 0.04);
}

.laptop-repair-page .laptop-repair-page-service-card__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #123fd6;
  background: #eef3ff;
  font-size: 25px;
}

.laptop-repair-page .laptop-repair-page-service-card h3 {
  margin: 0 0 9px;
  color: #03143c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.laptop-repair-page .laptop-repair-page-service-card p {
  margin: 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.7;
}


/* Process */

.laptop-repair-page .laptop-repair-page-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.laptop-repair-page .laptop-repair-page-process__grid article {
  min-height: 190px;
  padding: 24px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #03143c, #071f55);
}

.laptop-repair-page .laptop-repair-page-process__grid strong {
  display: block;
  margin-bottom: 18px;
  color: #4ca4ff;
  font-size: 28px;
}

.laptop-repair-page .laptop-repair-page-process__grid h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.laptop-repair-page .laptop-repair-page-process__grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.7;
}


/* Why choose */

.laptop-repair-page .laptop-repair-page-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 30px;
  padding: 32px;
  border: 1px solid #e5e9f1;
  border-radius: 15px;
  background: #f8faff;
}

.laptop-repair-page .laptop-repair-page-why__grid h2 {
  margin: 0 0 14px;
  color: #03143c;
  font-family: "Manrope", sans-serif;
  font-size: 31px;
  font-weight: 800;
}

.laptop-repair-page .laptop-repair-page-why__grid p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

.laptop-repair-page .laptop-repair-page-why__grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.laptop-repair-page .laptop-repair-page-why__grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e293b;
  font-size: 14px;
}

.laptop-repair-page .laptop-repair-page-why__grid li + li {
  margin-top: 14px;
}

.laptop-repair-page .laptop-repair-page-why__grid li i {
  color: #123fd6;
}


/* FAQ */

.laptop-repair-page .laptop-repair-page-faq .accordion-item {
  overflow: hidden;
  border: 1px solid #e5e9f1;
  border-radius: 10px;
}

.laptop-repair-page .laptop-repair-page-faq .accordion-item + .accordion-item {
  margin-top: 12px;
}

.laptop-repair-page .laptop-repair-page-faq .accordion-button {
  color: #03143c;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}

.laptop-repair-page .laptop-repair-page-faq .accordion-button:not(.collapsed) {
  color: #123fd6;
  background: #f7f9ff;
}

.laptop-repair-page .laptop-repair-page-faq .accordion-body {
  color: #475569;
  font-size: 13px;
  line-height: 1.8;
}


/* Sticky sidebar */

.laptop-repair-page .laptop-repair-page-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 84px;
  align-self: start;
  overflow: hidden;
  border: 1px solid #e1e6ef;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(3, 20, 60, 0.13);
}

.laptop-repair-page .laptop-repair-page-sidebar__benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px 12px;
  border-bottom: 1px solid #e5e9f1;
}

.laptop-repair-page .laptop-repair-page-sidebar__benefits > div {
  text-align: center;
}

.laptop-repair-page .laptop-repair-page-sidebar__benefits i {
  display: block;
  margin-bottom: 7px;
  color: #ff5a12;
  font-size: 22px;
}

.laptop-repair-page .laptop-repair-page-sidebar__benefits span {
  color: #1e293b;
  font-size: 10px;
  line-height: 1.3;
}

.laptop-repair-page .laptop-repair-page-form {
  padding: 24px;
}

.laptop-repair-page .laptop-repair-page-form h2 {
  margin: 0 0 18px;
  color: #03143c;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}

.laptop-repair-page .laptop-repair-page-form input,
.laptop-repair-page .laptop-repair-page-form select,
.laptop-repair-page .laptop-repair-page-form textarea {
  width: 100%;
  margin-bottom: 11px;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  outline: 0;
  color: #172033;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
}

.laptop-repair-page .laptop-repair-page-form input,
.laptop-repair-page .laptop-repair-page-form select {
  min-height: 46px;
  padding: 0 13px;
}

.laptop-repair-page .laptop-repair-page-form textarea {
  min-height: 95px;
  padding: 13px;
  resize: vertical;
}

.laptop-repair-page .laptop-repair-page-form button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a1a, #ff5a12);
  font-size: 14px;
  font-weight: 800;
}

.laptop-repair-page .laptop-repair-page-sidebar__trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
  border-top: 1px solid #e5e9f1;
  text-align: center;
}

.laptop-repair-page .laptop-repair-page-sidebar__trust > div + div {
  border-left: 1px solid #e5e9f1;
}

.laptop-repair-page .laptop-repair-page-sidebar__trust strong {
  display: block;
  color: #03143c;
  font-size: 24px;
}

.laptop-repair-page .laptop-repair-page-sidebar__trust span {
  color: #64748b;
  font-size: 11px;
}

.laptop-repair-page .laptop-repair-page-sidebar__support {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #03143c, #071f55);
}

.laptop-repair-page .laptop-repair-page-sidebar__support > i {
  font-size: 30px;
}

.laptop-repair-page .laptop-repair-page-sidebar__support span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

.laptop-repair-page .laptop-repair-page-sidebar__support a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}


/* Final CTA */

.laptop-repair-page .laptop-repair-page-cta {
  padding-bottom: 0;
}

.laptop-repair-page .laptop-repair-page-cta__box {
  min-height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 48px;
  border-radius: 12px 12px 0 0;
  color: #ffffff;
  background: linear-gradient(90deg, #123fd6, #061a71 70%, #123fd6);
}

.laptop-repair-page .laptop-repair-page-cta__box h2 {
  margin: 0 0 5px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.laptop-repair-page .laptop-repair-page-cta__box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.laptop-repair-page .laptop-repair-page-cta__box a {
  min-width: 170px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a1a, #ff5a12);
  font-size: 14px;
  font-weight: 800;
}

/* =====================================================
   SERVICE DETAIL PAGE BANNER IMAGES
   Har service page ka layout same rahega.
   Sirf page class aur banner image alag hogi.
===================================================== */

/* Laptop Repair */

.laptop-repair-page .laptop-repair-page-banner {
  background-color: #ff6200;
  background-image: url("../images/banner/laptop-repair-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}


/* Desktop Repair */

.desktop-repair-page .desktop-repair-page-banner {
  background-color: #ff6200;
  background-image: url("../images/banner/desktop-repair-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}


/* Printer Repair */

.printer-repair-page .printer-repair-page-banner {
  background-color: #ff6200;
  background-image: url("../images/banner/printer-repair-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}


/* CCTV Solutions */

.cctv-solutions-page .cctv-solutions-page-banner {
  background-color: #ff6200;
  background-image: url("../images/banner/cctv-solutions-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}


/* Networking Solutions */

.networking-page .networking-page-banner {
  background-color: #ff6200;
  background-image: url("../images/banner/networking-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}


/* Common overlay for every service banner */

.laptop-repair-page .laptop-repair-page-banner__overlay,
.desktop-repair-page .desktop-repair-page-banner__overlay,
.printer-repair-page .printer-repair-page-banner__overlay,
.cctv-solutions-page .cctv-solutions-page-banner__overlay,
.networking-page .networking-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 98, 0, 0.94) 0%,
    rgba(255, 98, 0, 0.84) 40%,
    rgba(255, 98, 0, 0.20) 66%,
    rgba(255, 98, 0, 0.00) 100%
  );
}


/* Mobile banner positioning */

@media (max-width: 575.98px) {

  .laptop-repair-page .laptop-repair-page-banner,
  .desktop-repair-page .desktop-repair-page-banner,
  .printer-repair-page .printer-repair-page-banner,
  .cctv-solutions-page .cctv-solutions-page-banner,
  .networking-page .networking-page-banner {
    background-position: 62% center;
  }

}

/* =====================================================
   COMMON SERVICE DETAIL PAGES
===================================================== */

.service-detail-page {
  overflow: visible;
  background: #ffffff;
}

.service-detail-page .service-detail-container,
.services-overview-page .services-overview-container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 26px;
  padding-right: 26px;
}

.service-detail-page .service-detail-shell {
  padding: 42px 0 58px;
}

.service-detail-page .service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: start;
}

.service-detail-page .service-detail-banner {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 22px;
  background-color: #ff6200;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  box-shadow: 0 14px 34px rgba(3, 20, 60, 0.10);
}

.service-detail-page .service-detail-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 98, 0, 0.94) 0%,
    rgba(255, 98, 0, 0.84) 40%,
    rgba(255, 98, 0, 0.20) 66%,
    rgba(255, 98, 0, 0) 100%
  );
}

.service-detail-page .service-detail-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 590px;
  padding: 54px;
  color: #ffffff;
}

.service-detail-page .service-detail-banner__content > p {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.service-detail-page .service-detail-banner__content h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.06;
}

.service-detail-page .service-detail-banner__content h1 span {
  display: block;
}

.service-detail-page .service-detail-banner__content h2 {
  margin: 22px 0 0;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.service-detail-page .service-detail-banner__content a {
  min-width: 150px;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ff5a12;
  background: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.service-detail-page .service-detail-breadcrumb {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 14px;
}

.service-detail-page .service-detail-breadcrumb a {
  color: #123fd6;
}

.service-detail-page .service-detail-breadcrumb i {
  font-size: 9px;
}

.service-detail-page .service-detail-section {
  padding: 54px 0 0;
}

.service-detail-page .service-detail-heading {
  margin-bottom: 26px;
  text-align: center;
}

.service-detail-page .service-detail-heading p,
.service-detail-page .service-detail-label {
  margin: 0 0 9px;
  color: #123fd6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.service-detail-page .service-detail-heading h2 {
  margin: 0;
  color: #03143c;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
}

.service-detail-page .service-detail-intro p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.9;
}

.service-detail-page .service-detail-intro p + p {
  margin-top: 12px;
}

.service-detail-page .service-detail-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-detail-page .service-detail-card {
  min-height: 210px;
  padding: 24px 19px;
  border: 1px solid #e5e9f1;
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(3, 20, 60, 0.04);
}

.service-detail-page .service-detail-card__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #123fd6;
  background: #eef3ff;
  font-size: 25px;
}

.service-detail-page .service-detail-card h3 {
  margin: 0 0 9px;
  color: #03143c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.service-detail-page .service-detail-card p {
  margin: 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.7;
}

.service-detail-page .service-detail-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-detail-page .service-detail-process article {
  min-height: 190px;
  padding: 24px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #03143c, #071f55);
}

.service-detail-page .service-detail-process strong {
  display: block;
  margin-bottom: 18px;
  color: #4ca4ff;
  font-size: 28px;
}

.service-detail-page .service-detail-process h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.service-detail-page .service-detail-process p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.7;
}

.service-detail-page .service-detail-why {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 30px;
  padding: 32px;
  border: 1px solid #e5e9f1;
  border-radius: 15px;
  background: #f8faff;
}

.service-detail-page .service-detail-why h2 {
  margin: 0 0 14px;
  color: #03143c;
  font-family: "Manrope", sans-serif;
  font-size: 31px;
  font-weight: 800;
}

.service-detail-page .service-detail-why p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

.service-detail-page .service-detail-why ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-page .service-detail-why li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e293b;
  font-size: 14px;
}

.service-detail-page .service-detail-why li + li {
  margin-top: 14px;
}

.service-detail-page .service-detail-why li i {
  color: #123fd6;
}

.service-detail-page .service-detail-faq .accordion-item {
  overflow: hidden;
  border: 1px solid #e5e9f1;
  border-radius: 10px;
}

.service-detail-page .service-detail-faq .accordion-item + .accordion-item {
  margin-top: 12px;
}

.service-detail-page .service-detail-faq .accordion-button {
  color: #03143c;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}

.service-detail-page .service-detail-faq .accordion-button:not(.collapsed) {
  color: #123fd6;
  background: #f7f9ff;
}

.service-detail-page .service-detail-faq .accordion-body {
  color: #475569;
  font-size: 13px;
  line-height: 1.8;
}

.service-detail-page .service-detail-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 84px;
  align-self: start;
  overflow: hidden;
  border: 1px solid #e1e6ef;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(3, 20, 60, 0.13);
}

.service-detail-page .service-detail-sidebar__benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px 12px;
  border-bottom: 1px solid #e5e9f1;
}

.service-detail-page .service-detail-sidebar__benefits > div {
  text-align: center;
}

.service-detail-page .service-detail-sidebar__benefits i {
  display: block;
  margin-bottom: 7px;
  color: #ff5a12;
  font-size: 22px;
}

.service-detail-page .service-detail-sidebar__benefits span {
  color: #1e293b;
  font-size: 10px;
  line-height: 1.3;
}

.service-detail-page .service-detail-form {
  padding: 24px;
}

.service-detail-page .service-detail-form h2 {
  margin: 0 0 18px;
  color: #03143c;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}

.service-detail-page .service-detail-form input,
.service-detail-page .service-detail-form select,
.service-detail-page .service-detail-form textarea {
  width: 100%;
  margin-bottom: 11px;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  outline: 0;
  color: #172033;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
}

.service-detail-page .service-detail-form input,
.service-detail-page .service-detail-form select {
  min-height: 46px;
  padding: 0 13px;
}

.service-detail-page .service-detail-form textarea {
  min-height: 95px;
  padding: 13px;
  resize: vertical;
}

.service-detail-page .service-detail-form button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a1a, #ff5a12);
  font-size: 14px;
  font-weight: 800;
}

.service-detail-page .service-detail-sidebar__trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
  border-top: 1px solid #e5e9f1;
  text-align: center;
}

.service-detail-page .service-detail-sidebar__trust > div + div {
  border-left: 1px solid #e5e9f1;
}

.service-detail-page .service-detail-sidebar__trust strong {
  display: block;
  color: #03143c;
  font-size: 24px;
}

.service-detail-page .service-detail-sidebar__trust span {
  color: #64748b;
  font-size: 11px;
}

.service-detail-page .service-detail-sidebar__support {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #03143c, #071f55);
}

.service-detail-page .service-detail-sidebar__support > i {
  font-size: 30px;
}

.service-detail-page .service-detail-sidebar__support span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

.service-detail-page .service-detail-sidebar__support a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.service-detail-page .service-detail-cta {
  padding-bottom: 0;
}

.service-detail-page .service-detail-cta__box {
  min-height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 48px;
  border-radius: 12px 12px 0 0;
  color: #ffffff;
  background: linear-gradient(90deg, #123fd6, #061a71 70%, #123fd6);
}

.service-detail-page .service-detail-cta__box h2 {
  margin: 0 0 5px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.service-detail-page .service-detail-cta__box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.service-detail-page .service-detail-cta__box a {
  min-width: 170px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a1a, #ff5a12);
  font-size: 14px;
  font-weight: 800;
}


/* Services overview */

.services-overview-page {
  background: #ffffff;
}

.services-overview-page .services-overview-banner {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  background-image: url("../images/banner/services-banner.webp");
  background-size: cover;
  background-position: center right;
}

.services-overview-page .services-overview-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 20, 60, 0.98), rgba(3, 20, 60, 0.50));
}

.services-overview-page .services-overview-banner__content {
  position: relative;
  z-index: 2;
  padding: 55px 0;
  color: #ffffff;
}

.services-overview-page .services-overview-banner__content h1 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 48px;
}

.services-overview-page .services-overview-banner__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.services-overview-page .services-overview-section {
  padding: 58px 0;
}

.services-overview-page .services-overview-heading {
  margin-bottom: 30px;
  text-align: center;
}

.services-overview-page .services-overview-heading p {
  margin: 0 0 8px;
  color: #123fd6;
  font-size: 13px;
  font-weight: 800;
}

.services-overview-page .services-overview-heading h2 {
  margin: 0;
  color: #03143c;
  font-size: 34px;
}

.services-overview-page .services-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.services-overview-page .services-overview-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid #e5e9f1;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(3, 20, 60, 0.05);
}

.services-overview-page .services-overview-card__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #123fd6;
  background: #eef3ff;
  font-size: 27px;
}

.services-overview-page .services-overview-card h3 {
  margin: 18px 0 10px;
  color: #03143c;
  font-size: 18px;
}

.services-overview-page .services-overview-card p {
  margin: 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.7;
}

.services-overview-page .services-overview-card a {
  margin-top: auto;
  padding-top: 20px;
  color: #123fd6;
  font-size: 14px;
  font-weight: 800;
}

/* =====================================================
   HOME PAGE - GOOGLE REVIEWS
===================================================== */

.home-google-reviews-section {
  padding-top: 10px;
  padding-bottom: 50px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.home-google-reviews-shell {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.home-google-rating-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #e1e7f0;
  border-radius: 18px;
  background: linear-gradient(145deg, #03143c, #082763);
  box-shadow: 0 16px 38px rgba(3, 20, 60, 0.16);
}

.home-google-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-google-logo,
.home-google-review-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.home-google-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  color: #4285f4;
  background: #ffffff;
  font-size: 28px;
}

.home-google-brand span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.home-google-brand strong {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
}

.home-google-score {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.home-google-score > strong {
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
}

.home-google-stars,
.home-google-review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fbbc04;
}

.home-google-stars {
  font-size: 17px;
}

.home-google-score span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.home-google-rating-card > p {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.75;
}

.home-google-review-button {
  min-height: 48px;
  margin-top: auto;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 9px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a1a, #ff5a12);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-google-review-button:hover {
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 90, 18, 0.28);
}

.home-google-reviews-content {
  padding: 28px;
  border: 1px solid #e1e7f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(3, 20, 60, 0.07);
}

.home-google-reviews-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 23px;
}

.home-google-reviews-heading p {
  margin: 0 0 7px;
  color: #123fd6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.home-google-reviews-heading h2 {
  margin: 0;
  color: #071b4b;
  font-size: 29px;
  line-height: 1.3;
}

.home-google-verified {
  flex: 0 0 auto;
  min-height: 35px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 30px;
  color: #1769e0;
  background: #eef4ff;
  font-size: 11px;
  font-weight: 800;
}

.home-google-review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-google-review-card {
  min-height: 245px;
  padding: 20px;
  border: 1px solid #e4e9f1;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(3, 20, 60, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-google-review-card:hover {
  transform: translateY(-4px);
  border-color: #bfd0ff;
  box-shadow: 0 14px 28px rgba(3, 20, 60, 0.09);
}

.home-google-review-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.home-google-review-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.home-google-review-avatar {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #123fd6, #071b4b);
  font-size: 15px;
  font-weight: 800;
}

.home-google-review-author h3 {
  margin: 0 0 4px;
  color: #111827;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.home-google-review-author span {
  color: #7b8494;
  font-size: 11px;
}

.home-google-review-mark {
  color: #4285f4;
  font-size: 20px;
}

.home-google-review-stars {
  margin-top: 16px;
  font-size: 13px;
}

.home-google-review-card > p {
  margin: 16px 0 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.75;
}

/* =====================================================
   HOME GOOGLE REVIEWS - FINAL 3 + 1 CARD DESIGN
===================================================== */

.home-google-reviews-section {
  padding: 54px 0 58px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.home-google-reviews-simple-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.home-google-reviews-simple-head > div:first-child > p {
  margin: 0 0 7px;
  color: #123fd6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.home-google-reviews-simple-head h2 {
  margin: 0;
  color: #071b4b;
  font-size: 34px;
  line-height: 1.2;
}

.home-google-reviews-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(3, 20, 60, .06);
}

.home-google-reviews-summary .home-google-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #4285f4;
  background: #f8fbff;
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
}

.home-google-reviews-summary strong {
  display: block;
  color: #071b4b;
  font-size: 20px;
  line-height: 1;
}

.home-google-reviews-summary .home-google-stars {
  margin-top: 5px;
  display: flex;
  gap: 3px;
  color: #fbbc04;
  font-size: 12px;
}

.home-google-four-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-google-four-grid .home-google-review-card,
.home-google-gmb-card {
  min-height: 245px;
  border-radius: 15px;
}

.home-google-four-grid .home-google-review-card {
  padding: 21px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 9px 26px rgba(3, 20, 60, .06);
}

.home-google-gmb-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, #03143c 0%, #0b3aa4 100%);
  box-shadow: 0 14px 34px rgba(3, 20, 60, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-google-gmb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(3, 20, 60, .24);
}

.home-google-gmb-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #4285f4;
  background: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.home-google-gmb-copy {
  margin-top: 22px;
}

.home-google-gmb-copy > span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
}

.home-google-gmb-copy strong {
  display: block;
  margin-top: 7px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.35;
}

.home-google-gmb-copy p {
  margin: 11px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.65;
}

.home-google-gmb-arrow {
  margin-top: auto;
  color: #ffffff;
  font-size: 18px;
}


