:root {
  --blue: #0a86d1;
  --dark: #081525;
  --text: #102033;
  --muted: #5d6b7c;
  --soft: #eef7ff;
  --line: #dbe7f1;
  --card: #fff;
  --green: #12b76a;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1200px, 92%);
  margin: auto;
}
.topbar {
  background: #06101d;
  color: #dbeafe;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}
.nav-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.logo img {
  width: 180px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Tablet */
@media (max-width: 900px) {
  .logo img {
    width: 170px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .logo img {
    width: 170px;
  }

  .nav-inner {
    min-height: 70px;
  }
}

.footer .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.footer .logo img {
  width: 180px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* mobile */
@media (max-width: 560px) {
  .footer .logo {
    padding: 10px 14px;
  }

  .footer .logo img {
    width: 150px;
  }
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 14px;
}
.menu a:hover {
  color: var(--blue);
}
.dropdown {
  position: relative;
}
.drop-panel {
  display: none;
  position: absolute;
  top: 32px;
  left: -120px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(2, 8, 23, 0.14);
  border-radius: 18px;
  padding: 20px;
  min-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dropdown:hover .drop-panel {
  display: grid;
}
.drop-panel a {
  padding: 9px 10px;
  border-radius: 10px;
  color: #24364b;
}
.drop-panel a:hover {
  background: #eef7ff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  background: var(--blue);
  color: #fff;
  border: 0;
}
.btn.light {
  background: #fff;
  color: var(--blue);
  border: 1px solid #bfe4ff;
}
.hero {
  background:
    radial-gradient(circle at right, #d6f5ff, transparent 36%),
    linear-gradient(135deg, #f4fbff, #eaf6ff);
  padding: 64px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: #dff3ff;
  color: #075985;
  border-radius: 99px;
  padding: 7px 12px;
  font-weight: 800;
  font-size: 13px;
}
h1 {
  font-size: 48px;
  line-height: 1.05;
  margin: 16px 0 14px;
  color: #071526;
}
h2 {
  font-size: 32px;
  margin: 0 0 12px;
}
p {
  line-height: 1.75;
  color: var(--muted);
}
.hero p {
  font-size: 17px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0;
}
.trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust span,
.pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 13px;
}
.callback {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(10, 134, 209, 0.15);
  border: 1px solid #dbeafe;
}
.callback input,
.callback select,
.callback textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px;
  margin: 8px 0;
}
.callback button {
  width: 100%;
  margin-top: 8px;
}
.section {
  padding: 64px 0;
}
.section.soft {
  background: #f3f8fd;
}
.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.grid {
  display: grid;
  gap: 18px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}
.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.card p {
  margin: 0;
}
.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #e0f2fe;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}
.areas-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-link {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  color: #174466;
}
.area-link:hover {
  border-color: #0ea5e9;
  color: #0a86d1;
}
.process {
  counter-reset: step;
}
.process .card {
  position: relative;
}
.process .card:before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  background: #0a86d1;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 12px;
}
.cta {
  background: linear-gradient(135deg, #075985, #0ea5e9);
  color: #fff;
  padding: 40px 0;
}
.cta p,
.cta h2 {
  color: #fff;
}
.footer {
  background: #06101d;
  color: #d7e7f7;
  padding: 54px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 34px;
}
.footer h3,
.footer h4 {
  color: #fff;
  margin-top: 0;
}
.footer p,
.footer li {
  color: #b9c9da;
}
.footer ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.footer li {
  margin: 10px 0;
}
.footer a {
  color: #d7e7f7;
}
.footer a:hover {
  color: #38bdf8;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
}
.contact-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 16px;
}
.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 30;
}
.floating a {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
  font-size: 13px;
}
.whatsapp {
  background: var(--green);
}
.breadcrumb {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 10px;
}
.page-hero {
  background: #f0f8ff;
  padding: 54px 0;
  border-bottom: 1px solid #dbeafe;
}
.content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
.content ul {
  line-height: 2;
  color: #455468;
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table td,
.table th {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}
.faq summary {
  font-weight: 900;
  cursor: pointer;
}
@media (max-width: 900px) {
  .hero-grid,
  .content {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .grid-4,
  .areas-preview,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu {
    display: none;
  }
  h1 {
    font-size: 36px;
  }
  .drop-panel {
    display: none !important;
  }
}
@media (max-width: 560px) {
  .grid-3,
  .grid-4,
  .areas-preview,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .topbar .container {
    display: block;
  }
  .hero {
    padding: 42px 0;
  }
  h1 {
    font-size: 32px;
  }
}

/* ================= Laptora UI Redesign Enhancements ================= */
:root {
  --nav-height: 74px;
  --shadow-soft: 0 18px 50px rgba(8, 21, 37, 0.1);
  --shadow-hover: 0 24px 70px rgba(8, 21, 37, 0.16);
}

.nav-inner {
  position: relative;
}
.logo {
  flex-shrink: 0;
}
.menu {
  gap: 8px;
}
.menu > a,
.dropdown-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.menu > a:hover,
.dropdown:hover > .dropdown-link,
.dropdown:focus-within > .dropdown-link {
  color: var(--blue);
  background: var(--soft);
}
.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.submenu-toggle {
  display: none;
}
.drop-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);

  min-width: 650px;
  background: #fff;

  border: none;
  border-radius: 0 0 20px 20px;

  padding: 24px;
  gap: 12px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

/* IMPORTANT */
.drop-panel::before {
  content: "";
  position: absolute;

  top: -12px;
  left: 0;
  right: 0;

  height: 12px;

  background: transparent;
}

.dropdown:hover .drop-panel,
.dropdown:focus-within .drop-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(-50%);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 99px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
  border-color: #bfe4ff;
}
.service-card .service-img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  background: #eaf6ff;
  display: block;
}
.service-card h3,
.service-card p {
  padding-left: 20px;
  padding-right: 20px;
}
.service-card h3 {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.3;
}
.service-card p {
  margin-top: 0;
}
.service-card p:last-child {
  margin-top: auto !important;
  padding-bottom: 20px;
  padding-top: 16px;
}
.service-card .btn.light {
  width: 100%;
}
.grid-4 {
  align-items: stretch;
}

.floating {
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 8px;
}
.floating a {
  min-width: 112px;
  gap: 7px;
  padding: 12px 16px;
  box-shadow: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.floating a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.18);
}

.card,
.area-link,
.btn,
.callback,
.faq details {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .nav-inner {
    gap: 12px;
  }
  .menu {
    gap: 3px;
    font-size: 13px;
  }
  .menu > a,
  .dropdown-link {
    padding: 0 9px;
  }
  .nav-inner > .btn {
    padding: 11px 14px;
  }
}

@media (max-width: 900px) {
  .nav-inner {
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
    padding: 12px 0;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav-inner > .btn {
    order: 3;
    width: 100%;
    margin-top: 8px;
  }
  .menu {
    display: grid;
    order: 2;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    grid-template-columns: 1fr;
    gap: 6px;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 18px;
    transition:
      max-height 0.28s ease,
      opacity 0.22s ease,
      padding 0.22s ease,
      border-color 0.22s ease;
  }
  .menu.is-open {
    max-height: 82vh;
    overflow-y: auto;
    opacity: 1;
    padding: 10px;
    border-color: var(--line);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
  }
  .menu > a,
  .dropdown-link {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
    padding: 12px 14px;
    min-height: 46px;
  }
  .dropdown {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
  }
  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 46px;
    border: 0;
    background: #eef7ff;
    color: var(--blue);
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition:
      transform 0.2s ease,
      background 0.2s ease;
  }
  .dropdown.is-open .submenu-toggle {
    transform: rotate(180deg);
  }
  .drop-panel {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
    transform: none !important;
    display: grid !important;
    grid-template-columns: 1fr;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    margin: 0;
    padding: 0 8px;
    border: 0;
    box-shadow: none;
    background: #f7fbff;
    border-radius: 14px;
    transition:
      max-height 0.25s ease,
      opacity 0.2s ease,
      padding 0.2s ease;
  }
  .drop-panel::before {
    display: none;
  }
  .dropdown:hover .drop-panel {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .dropdown.is-open .drop-panel {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 8px;
    margin: 4px 0 8px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .topbar {
    text-align: center;
  }
  .nav-inner > .btn {
    display: none;
  }
  .section {
    padding: 44px 0;
  }
  .service-card .service-img {
    height: 180px;
  }
  .floating {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: center;
    border-radius: 22px;
  }
  .floating a {
    flex: 1;
    min-width: 0;
    padding: 12px 10px;
  }
  body {
    padding-bottom: 78px;
  }
}
/* Mobile Card Full Width Fix */
@media (max-width: 768px) {
  .grid-4,
  .grid-3,
  .areas-preview,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    width: 100%;
  }

  /* Mobile menu scroll fix */
  .menu.is-open {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /* submenu scroll fix */
  .dropdown.is-open .drop-panel {
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  /* better submenu spacing */
  .drop-panel a {
    padding: 12px;
    font-size: 14px;
  }

  /* floating buttons */
  .floating {
    left: 10px;
    right: 10px;
    width: auto;
  }

  .floating a {
    flex: 1;
  }
}
.service-highlights {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.highlight-wrapper {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
}

.highlight-item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid #e9eef5;
  transition: all 0.3s ease;
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-item:hover {
  background: #f8fbff;
  transform: translateY(-5px);
}

.highlight-item img {
  width: 55px;
  height: 55px;
  margin-bottom: 15px;
}

.highlight-item h3 {
  font-size: 20px;
  color: #0b1e3c;
  margin-bottom: 8px;
  font-weight: 700;
}

.highlight-item p {
  font-size: 14px;
  color: #5f6c80;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .highlight-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .highlight-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-item {
    border-bottom: 1px solid #e9eef5;
  }
}

@media (max-width: 480px) {
  .highlight-wrapper {
    grid-template-columns: 1fr;
  }

  .service-highlights {
    margin-top: 20px;
  }
}
/* ===== Laptop Repair Page Premium Redesign ===== */
.service-hero {
  padding: 76px 0;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(10, 134, 209, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #f7fbff, #eaf6ff);
  border-bottom: 1px solid #dbeafe;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.service-hero h1 {
  font-size: 52px;
  line-height: 1.04;
  margin: 14px 0 16px;
}
.service-hero p {
  font-size: 18px;
  max-width: 680px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}
.trust-badges span {
  background: #fff;
  border: 1px solid #cfe8fb;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
  color: #174466;
  font-size: 14px;
}
.service-hero-card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(10, 134, 209, 0.15);
}
.service-hero-card img {
  width: 100%;
  border-radius: 22px;
  background: #eef7ff;
}
.quick-card {
  margin-top: 16px;
  padding: 18px;
  background: #f7fbff;
  border: 1px solid #dbeafe;
  border-radius: 20px;
}
.quick-card h3 {
  margin: 0 0 6px;
}
.quick-card .btn {
  margin-top: 12px;
  width: 100%;
}
.service-strip {
  margin-top: -34px;
  position: relative;
  z-index: 5;
}
.service-strip-grid {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(8, 21, 37, 0.09);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.service-strip-grid div {
  padding: 22px;
  border-right: 1px solid #e4eef8;
}
.service-strip-grid div:last-child {
  border-right: 0;
}
.service-strip-grid strong {
  display: block;
  color: #081525;
  font-size: 17px;
  margin-bottom: 6px;
}
.service-strip-grid span {
  display: block;
  color: #5d6b7c;
  font-size: 14px;
}
.section-tag {
  display: inline-block;
  background: #dff3ff;
  color: #075985;
  border-radius: 99px;
  padding: 8px 14px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 12px;
}
.repair-card .icon {
  font-size: 24px;
}
.two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.check-list li {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 13px 15px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #174466;
}
.check-list li:before {
  content: "✓";
  color: #12b76a;
  font-weight: 900;
  margin-right: 8px;
}
.estimate-card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 45px rgba(8, 21, 37, 0.08);
}
.estimate-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e4eef8;
  color: #5d6b7c;
}
.estimate-row b {
  color: #081525;
}
.estimate-card .btn {
  width: 100%;
  margin-top: 18px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-item {
  background: #fff;
  border: 1px solid #dbeafe;
  padding: 28px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(8, 21, 37, 0.06);
}
.process-item span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #0a86d1;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.brand-grid a {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  font-weight: 900;
  color: #174466;
  box-shadow: 0 10px 26px rgba(8, 21, 37, 0.05);
}
.brand-grid a:hover {
  color: #0a86d1;
  border-color: #0a86d1;
  transform: translateY(-3px);
}
@media (max-width: 900px) {
  .service-hero-grid,
  .two-column {
    grid-template-columns: 1fr;
  }
  .service-hero h1 {
    font-size: 38px;
  }
  .service-strip {
    margin-top: 20px;
  }
  .service-strip-grid,
  .process-grid,
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .service-hero {
    padding: 48px 0;
  }
  .service-hero h1 {
    font-size: 32px;
  }
  .service-strip-grid,
  .process-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }
  .service-strip-grid div {
    border-right: 0;
    border-bottom: 1px solid #e4eef8;
  }
}

/* ===== Laptora Premium Page Content System ===== */
.service-hero {
  padding: 76px 0;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(10, 134, 209, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #f7fbff, #eaf6ff);
  border-bottom: 1px solid #dbeafe;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.service-hero h1 {
  font-size: 52px;
  line-height: 1.04;
  margin: 14px 0 16px;
}
.service-hero p {
  font-size: 18px;
  max-width: 680px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}
.trust-badges span {
  background: #fff;
  border: 1px solid #cfe8fb;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
  color: #174466;
  font-size: 14px;
}
.service-hero-card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(10, 134, 209, 0.15);
}
.service-hero-card img {
  width: 100%;
  border-radius: 22px;
  background: #eef7ff;
}
.quick-card {
  margin-top: 16px;
  padding: 18px;
  background: #f7fbff;
  border: 1px solid #dbeafe;
  border-radius: 20px;
}
.quick-card h3 {
  margin: 0 0 6px;
}
.quick-card .btn {
  margin-top: 12px;
  width: 100%;
}
.service-strip {
  margin-top: -34px;
  position: relative;
  z-index: 5;
}
.service-strip-grid {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(8, 21, 37, 0.09);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.service-strip-grid div {
  padding: 22px;
  border-right: 1px solid #e4eef8;
}
.service-strip-grid div:last-child {
  border-right: 0;
}
.service-strip-grid strong {
  display: block;
  color: #081525;
  font-size: 17px;
  margin-bottom: 6px;
}
.service-strip-grid span {
  display: block;
  color: #5d6b7c;
  font-size: 14px;
}
.section-tag {
  display: inline-block;
  background: #dff3ff;
  color: #075985;
  border-radius: 99px;
  padding: 8px 14px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 12px;
}
.repair-card .icon {
  font-size: 24px;
}
.two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.check-list li {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 13px 15px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #174466;
}
.check-list li:before {
  content: "✓";
  color: #12b76a;
  font-weight: 900;
  margin-right: 8px;
}
.estimate-card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 45px rgba(8, 21, 37, 0.08);
}
.estimate-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e4eef8;
  color: #5d6b7c;
}
.estimate-row b {
  color: #081525;
}
.estimate-card .btn {
  width: 100%;
  margin-top: 18px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-item {
  background: #fff;
  border: 1px solid #dbeafe;
  padding: 28px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(8, 21, 37, 0.06);
}
.process-item span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #0a86d1;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.brand-grid a {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  font-weight: 900;
  color: #174466;
  box-shadow: 0 10px 26px rgba(8, 21, 37, 0.05);
}
.brand-grid a:hover {
  color: #0a86d1;
  border-color: #0a86d1;
  transform: translateY(-3px);
}
@media (max-width: 900px) {
  .service-hero-grid,
  .two-column {
    grid-template-columns: 1fr;
  }
  .service-hero h1 {
    font-size: 38px;
  }
  .service-strip {
    margin-top: 20px;
  }
  .service-strip-grid,
  .process-grid,
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .service-hero {
    padding: 48px 0;
  }
  .service-hero h1 {
    font-size: 32px;
  }
  .service-strip-grid,
  .process-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }
  .service-strip-grid div {
    border-right: 0;
    border-bottom: 1px solid #e4eef8;
  }
}

/* ===== Phase 2 SEO + Logo + Page Content Improvements ===== */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo img {
  width: 180px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.service-hero {
  padding: 76px 0;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(10, 134, 209, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #f7fbff, #eaf6ff);
  border-bottom: 1px solid #dbeafe;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.service-hero h1 {
  font-size: 52px;
  line-height: 1.04;
  margin: 14px 0 16px;
}
.service-hero p {
  font-size: 18px;
  max-width: 680px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}
.trust-badges span {
  background: #fff;
  border: 1px solid #cfe8fb;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
  color: #174466;
  font-size: 14px;
}
.service-hero-card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(10, 134, 209, 0.15);
}
.service-hero-card img {
  width: 100%;
  border-radius: 22px;
  background: #eef7ff;
}
.quick-card {
  margin-top: 16px;
  padding: 18px;
  background: #f7fbff;
  border: 1px solid #dbeafe;
  border-radius: 20px;
}
.quick-card h3 {
  margin: 0 0 6px;
}
.quick-card .btn {
  margin-top: 12px;
  width: 100%;
}
.service-strip {
  margin-top: -34px;
  position: relative;
  z-index: 5;
}
.service-strip-grid {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(8, 21, 37, 0.09);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.service-strip-grid div {
  padding: 22px;
  border-right: 1px solid #e4eef8;
}
.service-strip-grid div:last-child {
  border-right: 0;
}
.service-strip-grid strong {
  display: block;
  color: #081525;
  font-size: 17px;
  margin-bottom: 6px;
}
.service-strip-grid span {
  display: block;
  color: #5d6b7c;
  font-size: 14px;
}
.section-tag {
  display: inline-block;
  background: #dff3ff;
  color: #075985;
  border-radius: 99px;
  padding: 8px 14px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 12px;
}
.two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.check-list li {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 13px 15px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #174466;
}
.check-list li:before {
  content: "✓";
  color: #12b76a;
  font-weight: 900;
  margin-right: 8px;
}
.estimate-card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 45px rgba(8, 21, 37, 0.08);
}
.estimate-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e4eef8;
  color: #5d6b7c;
}
.estimate-row b {
  color: #081525;
}
.estimate-card .btn {
  width: 100%;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .service-hero-grid,
  .two-column {
    grid-template-columns: 1fr;
  }
  .service-hero h1 {
    font-size: 38px;
  }
  .service-strip {
    margin-top: 20px;
  }
  .service-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .logo img {
    width: 160px;
  }
  .service-hero {
    padding: 48px 0;
  }
  .service-hero h1 {
    font-size: 32px;
  }
  .service-strip-grid {
    grid-template-columns: 1fr;
  }
  .service-strip-grid div {
    border-right: 0;
    border-bottom: 1px solid #e4eef8;
  }
}

.form-error {
  background: #ffe7e7;
  border: 1px solid #ff7b7b;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #c62828;
}

.form-success {
  background: #e8fff0;
  border: 1px solid #39b86d;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #157347;
  font-weight: 500;

  opacity: 1;

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.hide-success {
  opacity: 0;

  transform: translateY(-10px);
}

.form-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-subtitle {
  margin-bottom: 25px;
  color: #666;
}

.form-group {
  margin-bottom: 18px;
}

.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 13px;
  margin-top: 6px;
}

input:invalid,
textarea:invalid,
select:invalid {
  border: 1px solid #dc3545;
}

.was-validated input:invalid + .invalid-feedback,
.was-validated textarea:invalid + .invalid-feedback,
.was-validated select:invalid + .invalid-feedback {
  display: block;
}

.form-group {
  position: relative;
  margin-bottom: 15px;
}

.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 13px;
  margin-top: 5px;
  font-weight: 500;
}

.was-validated input:invalid,
.was-validated select:invalid,
.was-validated textarea:invalid {
  border-color: #dc3545;
}

.was-validated input:invalid ~ .invalid-feedback,
.was-validated select:invalid ~ .invalid-feedback,
.was-validated textarea:invalid ~ .invalid-feedback {
  display: block;
}

.was-validated input:valid,
.was-validated select:valid,
.was-validated textarea:valid {
  border-color: #198754;
}

.form-error {
  background: #ffecec;
  color: #d8000c;
  border: 1px solid #ffb3b3;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* ===== Callback Form Redesign ===== */

.callback-wrapper {
  display: flex;
  justify-content: flex-end;
}

.callback {
  width: 100%;
  max-width: 450px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(10, 134, 209, 0.12);
}

.form-title {
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 20px;
  font-weight: 800;
  color: #081525;
}

.form-group {
  margin-bottom: 14px;
}

.callback input,
.callback select,
.callback textarea {
  width: 100%;

  height: 52px;

  padding: 14px 16px;

  border: 1px solid #dbe7f1;

  border-radius: 12px;

  font-size: 14px;

  background: #fff;

  margin: 0;

  outline: none;

  transition: 0.25s;
}

.callback textarea {
  height: 80px;
  resize: none;
}

.callback input:focus,
.callback select:focus,
.callback textarea:focus {
  border-color: #0a86d1;

  box-shadow: 0 0 0 4px rgba(10, 134, 209, 0.12);
}

/* REMOVE ALWAYS RED BORDER */

.callback input:invalid,
.callback textarea:invalid,
.callback select:invalid {
  border-color: #dbe7f1;
  box-shadow: none;
}

/* show red only after validation */

.was-validated input:invalid,
.was-validated textarea:invalid,
.was-validated select:invalid {
  border-color: #ef4444;
}

.was-validated input:valid,
.was-validated textarea:valid,
.was-validated select:valid {
  border-color: #16a34a;
}

.invalid-feedback {
  display: none;

  font-size: 12px;

  margin-top: 6px;

  color: #ef4444;
}

.was-validated .form-group input:invalid ~ .invalid-feedback,
.was-validated .form-group textarea:invalid ~ .invalid-feedback,
.was-validated .form-group select:invalid ~ .invalid-feedback {
  display: block;
}

.callback .btn {
  height: 54px;

  font-size: 15px;

  font-weight: 700;

  margin-top: 8px;
}

/* responsive */

@media (max-width: 900px) {
  .callback-wrapper {
    justify-content: center;
  }

  .callback {
    max-width: 100%;
  }
}

/* CONTACT PAGE PREMIUM */

.contact-premium-wrap{

display:grid;

grid-template-columns:420px minmax(520px,700px);

justify-content:space-between;

gap:50px;

margin-top:45px;

align-items:start;

}

.contact-premium-card{

background:#fff;

padding:42px;

border-radius:28px;

box-shadow:0 18px 55px rgba(0,0,0,.06);

border:1px solid #dce8f3;

min-height:620px;

}

.contact-premium-badge{

display:inline-block;

padding:8px 15px;

border-radius:999px;

background:#eaf6ff;

color:#0a86d1;

font-size:13px;

font-weight:700;

margin-bottom:18px;

}

.contact-premium-card h2{

font-size:42px;

margin:0 0 20px;

line-height:1.1;

}

.contact-premium-card p{

font-size:17px;

line-height:1.9;

}

.contact-detail-box{

margin-top:45px;

display:flex;

flex-direction:column;

gap:22px;

}

.contact-detail-item{

display:flex;

gap:18px;

align-items:center;

padding:18px;

background:#f8fbff;

border-radius:18px;

}

.contact-detail-item span{

width:55px;

height:55px;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

background:#fff;

border-radius:50%;

}

.contact-detail-item strong{

display:block;

margin-bottom:4px;

}

.contact-premium-wrap .callback{

max-width:100%;

width:100%;

padding:38px;

min-height:620px;

}

.contact-premium-wrap .form-title{

font-size:32px;

margin-bottom:28px;

}

.contact-premium-wrap .callback input,
.contact-premium-wrap .callback select,
.contact-premium-wrap .callback textarea{

height:58px;

font-size:15px;

}

.contact-premium-wrap .callback textarea{

height:150px;

}

@media(max-width:1000px){

.contact-premium-wrap{

grid-template-columns:1fr;

}

.contact-premium-card{

min-height:auto;

}

.contact-premium-wrap .callback{

min-height:auto;

}

}

@media(max-width:768px){

.contact-premium-card h2{

font-size:34px;

}

.contact-premium-card{

padding:28px;

}

.contact-premium-wrap .callback{

padding:26px;

}

}

/* =====================================================
   Laptora Corporate Contact Page
   Add this file after style.css
===================================================== */

.contact-corporate-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(10, 134, 209, 0.18), transparent 30%),
    linear-gradient(135deg, #f7fbff 0%, #eaf6ff 55%, #ffffff 100%);
  padding: 64px 0 72px;
  border-bottom: 1px solid #dbeafe;
}

.contact-corporate-hero::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -160px;
  top: -170px;
  border-radius: 50%;
  background: rgba(10, 134, 209, 0.12);
}

.contact-corporate-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: center;
  margin-top: 22px;
}

.corp-label,
.corp-section-title span,
.corp-form-header span,
.corp-map-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: #dff3ff;
  color: #075985;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-grid h1 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  margin: 18px 0 18px;
  color: #071526;
}

.corp-lead {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.85;
  color: #506174;
}

.corp-action-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.corp-outline {
  background: #ffffff !important;
  color: #0a86d1 !important;
  border: 1px solid #bfe4ff !important;
}

.corp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
  margin-top: 34px;
}

.corp-trust-card {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(8, 21, 37, 0.06);
}

.corp-trust-card strong {
  display: block;
  font-size: 24px;
  color: #081525;
  margin-bottom: 5px;
}

.corp-trust-card span {
  color: #5d6b7c;
  font-weight: 700;
}

.corp-support-panel {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(10, 134, 209, 0.14);
}

.corp-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e4eef8;
}

.corp-panel-head span {
  color: #64748b;
  font-weight: 800;
}

.corp-panel-head strong {
  background: #e8fff1;
  color: #0f8a46;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
}

.corp-contact-list {
  display: grid;
  gap: 14px;
}

.corp-contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: #f8fbff;
  border: 1px solid #e2edf7;
  border-radius: 18px;
  transition: 0.22s ease;
}

.corp-contact-item:hover {
  transform: translateY(-3px);
  background: #eef7ff;
  border-color: #bfe4ff;
}

.corp-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: #ffffff;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(8, 21, 37, 0.06);
}

.corp-contact-item strong {
  display: block;
  color: #081525;
  margin-bottom: 3px;
}

.corp-contact-item p {
  margin: 0;
  line-height: 1.4;
}

.contact-corporate-main {
  background: #ffffff;
  padding: 72px 0;
}

.corp-main-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: start;
}

.corp-section-title h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  color: #081525;
  margin: 16px 0;
}

.corp-section-title p {
  font-size: 17px;
}

.corp-feature-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.corp-feature {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid #e2edf7;
}

.corp-feature > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #0a86d1;
  color: #fff;
  font-weight: 900;
}

.corp-feature h3 {
  margin: 0 0 6px;
  color: #081525;
}

.corp-feature p {
  margin: 0;
  line-height: 1.6;
}

.corp-service-areas {
  margin-top: 26px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #075985, #0a86d1);
  color: #fff;
}

.corp-service-areas h3 {
  color: #fff;
  margin: 0 0 16px;
}

.corp-service-areas div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.corp-service-areas span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  font-weight: 800;
  font-size: 13px;
}

.corp-form-card {
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  box-shadow: 0 24px 80px rgba(8, 21, 37, 0.11);
}

.corp-form-header {
  padding: 32px 34px;
  background:
    radial-gradient(circle at right top, rgba(255,255,255,.24), transparent 34%),
    linear-gradient(135deg, #075985, #0a86d1);
}

.corp-form-header span {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
}

.corp-form-header h2 {
  color: #ffffff;
  font-size: 34px;
  margin: 14px 0 8px;
}

.corp-form-header p {
  color: rgba(255,255,255,0.88);
  margin: 0;
}

.corp-callback-form.callback {
  max-width: none;
  width: 100%;
  padding: 34px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.corp-callback-form .two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.corp-callback-form input,
.corp-callback-form select,
.corp-callback-form textarea {
  height: 56px;
  font-size: 15px;
}

.corp-callback-form textarea {
  height: 140px;
}

.corp-form-note {
  margin: 14px 0 0;
  font-size: 13px;
  text-align: center;
  color: #64748b;
}

.corp-map-strip {
  padding: 0 0 64px;
  background: #ffffff;
}

.corp-map-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, #071526, #0b2d4b);
  box-shadow: 0 24px 70px rgba(8, 21, 37, 0.16);
}

.corp-map-card h2 {
  color: #ffffff;
  margin: 14px 0 8px;
}

.corp-map-card p {
  color: #dbeafe;
  margin: 0;
}

@media (max-width: 1000px) {
  .contact-corporate-grid,
  .corp-main-grid {
    grid-template-columns: 1fr;
  }

  .corp-support-panel {
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  .contact-corporate-hero {
    padding: 44px 0 52px;
  }

  .corp-trust-grid,
  .corp-callback-form .two-fields {
    grid-template-columns: 1fr;
  }

  .corp-map-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px;
  }

  .corp-form-header,
  .corp-callback-form.callback {
    padding: 26px;
  }

  .corp-feature {
    flex-direction: column;
  }
}


@media (max-width:900px){

   .dropdown-link{

      display:flex;
      justify-content:space-between;
   }

   .dropdown-link span.arrow{

      display:none;
   }

   

}






/* Header CTA Fix */

.laptora-actions{

    display:flex;
    align-items:center;

    gap:12px;

    flex-shrink:0;
}

.laptora-phone-cta{

    display:flex;

    align-items:center;

    gap:12px;

    background:#fff;

    border:1px solid #dbeafe;

    padding:6px 16px 6px 6px;

    border-radius:999px;

    min-height:56px;

    box-shadow:
    0 6px 18px
    rgba(10,134,209,.10);

    transition:.3s;
}

.laptora-phone-cta:hover{

    transform:
    translateY(-2px);
}

.phone-icon{

    width:42px;

    height:42px;

    min-width:42px;

    border-radius:50%;

    background:#3b82f6;

    display:flex;

    align-items:center;

    justify-content:center;
}

.phone-icon svg{

    width:18px;

    height:18px;

    fill:#fff;
}

.phone-text{

    display:flex;

    flex-direction:column;

    line-height:1.1;
}

.phone-text small{

    font-size:11px;

    color:#6b7280;

    margin-bottom:3px;
}

.phone-text strong{

    font-size:15px;

    font-weight:800;

    color:#081525;

    white-space:nowrap;
}

.laptora-book-btn{

    min-height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:0 26px;

    background:#3b82f6;

    color:#fff;

    border-radius:999px;

    font-weight:700;

    font-size:16px;

    box-shadow:
    0 10px 25px
    rgba(59,130,246,.25);

    transition:.3s;
}

.laptora-book-btn:hover{

    transform:
    translateY(-2px);
}

/* Navbar */

.nav-inner{

    min-height:74px;

    display:flex;

    align-items:center;
}

/* Tablet */

@media(max-width:1100px){

    .phone-text strong{

        font-size:14px;
    }

    .laptora-book-btn{

        padding:0 18px;
    }
}

/* Mobile */

@media(max-width:900px){

    .laptora-actions{

        width:100%;

        margin-top:12px;

        justify-content:center;
    }

    .laptora-phone-cta{

        width:100%;

        flex:none;
    }

    .laptora-book-btn{

        display:none;
    }

    .phone-text strong{

        font-size:16px;
    }
}

/* Small Mobile */

@media(max-width:480px){

    .laptora-phone-cta{

        padding:8px 14px;
    }

    .phone-text small{

        font-size:10px;
    }

    .phone-text strong{

        font-size:15px;
    }
}

.topbar-inner{

   display:flex;

   justify-content:space-between;

   align-items:center;

   gap:15px;
}

.topbar-book-link{

   color:#7dd3fc;

   font-size:13px;

   font-weight:700;

   text-decoration:none;

   transition:.3s;

   white-space:nowrap;
}

.topbar-book-link:hover{

   color:#fff;

   transform:
   translateX(3px);
}

@media(max-width:560px){

   .topbar-inner{

      flex-direction:column;

      text-align:center;

      gap:6px;
   }

}