:root {
  --primary: #0d3b8e;
  --primary-dark: #08285f;
  --accent: #e1251b;
  --white: #ffffff;
  --light: #f5f8fc;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #dbe4f0;
  --shadow: 0 14px 34px rgba(13, 59, 142, 0.12);
  --radius: 18px;
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(94%, var(--max-width));
  margin: 0 auto;
}

/* top bar */
.topbar {
  background: var(--primary);
  color: var(--white);
  font-size: 0.95rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  flex-wrap: wrap;
}

.socials {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.socials a {
  color: var(--white);
  font-size: 1.35rem;
  transition: 0.2s ease;
}

.socials a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.topbar-contact {
  color: var(--white);
  font-weight: 700;
}

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

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #edf2f7;
  backdrop-filter: blur(10px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 92px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}

.logo-img {
  width: auto;
  height: 80px;
  object-fit: contain;
}

.logo-mark {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #2a65d8);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

.logo-text small {
  color: var(--muted);
  font-weight: 700;
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
  justify-content: flex-end;
  min-width: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.95rem;
  font-weight: 800;
  color: var(--text);
  font-size: 0.86rem;
}

.nav-links a {
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.dropbtn.active {
  color: var(--primary);
}

/* dropdown */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: 0.2s ease;
  padding: 0;
}

.dropbtn:hover {
  color: var(--primary);
}

.dropbtn i {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.dropdown.open .dropbtn i {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 300px;
  background: #3f6db7;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 999;
}

.dropdown-content a {
  color: white;
  display: block;
  padding: 1.05rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover,
.dropdown-content a.active {
  background: #2f5ca6;
}

.dropdown.open .dropdown-content {
  display: block;
}

/* buttons */
.nav-cta,
.page-actions,
.contact-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.nav-cta {
  justify-self: end;
  flex-direction: row;
  gap: 0.65rem;
  flex-wrap: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(225, 37, 27, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #c31f17;
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-dark);
}

.full-width {
  width: 100%;
}

/* mobile buttons */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-menu-top {
  display: none;
}

.mobile-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* hero */
.hero {
  color: var(--white);
}

.hero-home {
  position: relative;
  min-height: 950px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(rgba(7, 28, 77, 0.78), rgba(7, 28, 77, 0.78)),
    url("../images/tempx-tech.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 2rem;
  align-items: center;
  min-height: 100vh;
  padding: 8rem 0;
}

.eyebrow,
.section-tag {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.section-tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  background: rgba(225, 37, 27, 0.08);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero p,
.page-hero p {
  font-size: 1.1rem;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.93);
  margin-bottom: 1.5rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}

/* shared cards */
.highlight-card,
.contact-card,
.service-card,
.info-card,
.area-box,
.review-card,
.text-card,
.contact-info,
.form-wrap,
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.highlight-card {
  color: var(--text);
  padding: 1rem;
}

.highlight-card strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.contact-card {
  padding: 1.6rem;
  color: var(--text);
}

.contact-card h3,
.contact-info h3,
.form-wrap h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.quick-contact {
  display: grid;
  gap: 0.9rem;
  margin: 1.2rem 0;
}

.quick-contact a,
.quick-contact div,
.info-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

/* sections */
section {
  padding: 5.2rem 0;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.section-heading span {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--primary-dark);
  margin: 0.65rem 0 0.9rem;
}

.section-heading p,
.muted-text,
.form-note {
  color: var(--muted);
}

.section-heading p {
  font-size: 1.05rem;
}

/* stats */
.stats {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  padding-top: 5rem;
}

.stats-grid,
.services-grid,
.info-grid,
.areas-grid,
.reviews-grid,
.footer-grid,
.project-grid {
  display: grid;
  gap: 1.35rem;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
}

.stat-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  text-align: center;
}

.stat-box h3 {
  color: var(--primary);
  font-size: 2rem;
}

.stat-box p {
  color: var(--muted);
  font-weight: 600;
}

/* services */
.services {
  background: var(--light);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.info-card,
.review-card,
.text-card,
.project-card {
  padding: 1.5rem;
}

.service-card {
  transition: 0.25s ease;
}

.service-card:hover,
.why-card:hover {
  transform: translateY(-6px);
}

.service-card .icon,
.info-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(13, 59, 142, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.service-card h3,
.info-card h3,
.review-card h3,
.text-card h3,
.project-card h3,
.footer-brand h3,
.footer-col h4 {
  color: #ff2b2b;
  margin-bottom: 0.6rem;
}

.service-card p,
.info-card p,
.review-card p,
.text-card p,
.project-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.service-card ul,
.text-card ul {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 600;
}

.service-card li::before,
.text-card li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  margin-right: 0.55rem;
}

.service-card-blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.service-card-blue h3,
.service-card-blue p {
  color: var(--white);
}

.service-card-blue .icon {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

/* page heroes */
.page-hero {
  background: linear-gradient(135deg, rgba(8, 40, 95, 0.96), rgba(63, 109, 183, 0.9));
  color: var(--white);
  padding: 4.5rem 0;
}

.page-hero.compact {
  padding: 3.5rem 0;
}

.about-hero,
.projects-hero,
.contact-hero {
  min-height: 460px;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 28, 77, 0.88), rgba(35, 0, 55, 0.88)),
    url("../images/red-blue.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.about-hero .container,
.projects-hero .container,
.contact-hero .container {
  position: relative;
  z-index: 2;
}

.areas-hero,
.reviews-hero,
.service-page-hero,
.gradient-section {
  background:
    linear-gradient(rgba(7, 28, 77, 0.90), rgba(35, 0, 55, 0.90)),
    url("../images/red-blue.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.gradient-section .section-heading span,
.gradient-section .section-heading h2,
.gradient-section .section-heading p {
  color: white;
}

.gradient-section .service-card,
.gradient-section .why-card,
.gradient-section .info-card,
.gradient-section .area-box,
.gradient-section .review-card {
  background: white;
  color: #0f172a;
}

.gradient-section .service-card h3,
.gradient-section .service-card p,
.gradient-section .why-card h3,
.gradient-section .why-card p,
.gradient-section .info-card h3,
.gradient-section .info-card p,
.gradient-section .review-card h3,
.gradient-section .review-card p {
  color: #0f172a;
}

/* page layout */
.page-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.page-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.info-grid {
  grid-template-columns: repeat(3, 1fr);
}

.areas-grid {
  grid-template-columns: repeat(4, 1fr);
}

.area-box {
  padding: 1rem 1.2rem;
  text-align: center;
  font-weight: 700;
  color: var(--primary-dark);
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-stars {
  color: #f4b400;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.review-card strong {
  color: var(--primary-dark);
}

.contact-info,
.form-wrap {
  padding: 1.6rem;
}

.info-list {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0;
}

/* forms */
form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  background: #fbfdff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* projects */
.project-grid {
  grid-template-columns: repeat(2, 1fr);
}

.project-card {
  min-height: 220px;
}

.project-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.project-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.project-large {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 620px;
}

.project-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
  color: white;
}

.project-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-small {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-small img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-info {
  padding: 1.2rem;
}

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

.bottom-projects img,
.bottom-project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.bottom-project-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.bottom-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
}

.bottom-overlay h3 {
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
}

.bottom-overlay p {
  font-size: 0.95rem;
  margin: 0;
}

/* homepage project section */
.home-projects {
  background: var(--white);
}

.home-project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.home-project-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.home-project-card.large {
  grid-row: span 2;
}

.home-project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.home-project-card.large img {
  height: 560px;
}

.home-project-card div {
  padding: 1.2rem;
}

.home-project-card h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.home-project-card p {
  color: var(--muted);
}

.center-button {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* why section */
.why-section {
  background:
    linear-gradient(
      rgba(7, 28, 77, 0.92),
      rgba(35, 0, 55, 0.92)
    ),
    url("../images/red-blue.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
}

.why-section .section-heading span,
.why-section .section-heading h2,
.why-section .section-heading p {
  color: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 2rem;
  transition: 0.25s ease;
}

.why-card i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(13, 59, 142, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  color: var(--primary-dark);
  margin-bottom: 0.7rem;
}

.why-card p {
  color: var(--muted);
}

/* cta */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.cta-content,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.cta-content p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.92);
}

/* footer */
footer {
  background: #091a37;
  color: rgba(255, 255, 255, 0.88);
  padding: 4rem 0 1.4rem;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  margin-bottom: 2rem;
}

.footer-col ul {
  display: grid;
  gap: 0.6rem;
}

.footer-license {
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1rem;
  font-size: 0.95rem;
}

/* tablets */
@media (max-width: 1180px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-menu {
    gap: 0.65rem;
  }

  .nav-links {
    gap: 0.65rem;
    font-size: 0.8rem;
  }

  .nav-cta {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .nav-cta .btn {
    padding: 0.62rem 0.8rem;
    font-size: 0.78rem;
  }

  .logo-mark {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
  }

  .logo-title {
    font-size: 1.02rem;
  }
}

/* mobile menu */
@media (max-width: 980px) {
  .hero-grid,
  .page-grid,
  .contact-grid,
  .stats-grid,
  .services-grid,
  .info-grid,
  .areas-grid,
  .reviews-grid,
  .footer-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    grid-template-columns: auto auto;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #3f6db7;
    padding: 1rem 1.2rem 1.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    z-index: 1200;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-links a,
  .dropbtn {
    color: white;
    width: 100%;
    text-align: left;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.85rem;
  }

  .nav-links a.active,
  .nav-links a:hover,
  .dropbtn.active,
  .dropbtn:hover {
    color: white;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    display: none;
    min-width: 100%;
    margin-top: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: none;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    padding: 1rem 1rem 1rem 1.2rem;
    font-size: 0.96rem;
  }

  .nav-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0.8rem;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .project-layout,
  .bottom-projects,
  .home-project-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .home-project-card.large {
    grid-row: auto;
  }

  .home-project-card.large img,
  .home-project-card img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-contact {
    font-size: 0.9rem;
  }

  .form-row,
  .stats-grid,
  .services-grid,
  .info-grid,
  .areas-grid,
  .reviews-grid,
  .footer-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 680px;
    padding: 4.4rem 0 4rem;
  }

  .logo-img {
    width: 58px;
  }

  .logo-mark {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .logo-title {
    font-size: 0.98rem;
  }

  .logo-text small {
    font-size: 0.82rem;
  }
}

/* NexGen-style top banner */
.topbar {
  background:
    linear-gradient(
      115deg,
      rgba(7, 28, 77, 0.96) 0%,
      rgba(7, 28, 77, 0.96) 58%,
      rgba(225, 37, 27, 0.96) 58%,
      rgba(225, 37, 27, 0.96) 100%
    ),
    url("../images/red-blue.png");

  background-size: cover;
  background-position: center;
  color: white;
}

.topbar-inner {
  min-height: 95px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.socials {
  justify-self: start;
}

.socials a {
  font-size: 2rem;
}

.topbar::after {
  content: "TEMPX";
  color: rgba(255, 255, 255, 0.22);
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.topbar {
  position: relative;
  overflow: hidden;
}

.topbar-contact {
  justify-self: end;
  font-size: 1.4rem;
  font-weight: 900;
}

.topbar-contact::before {
  content: "Call Us Today!";
  display: block;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 900px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.8rem;
  }

  .socials,
  .topbar-contact {
    justify-self: center;
  }

  .topbar::after {
    display: none;
  }
}

.reviews-section {
    padding: 100px 0;
    background:
    linear-gradient(
        rgba(7, 28, 77, 0.92),
        rgba(50, 0, 70, 0.92)
    ),
    url("../images/red-blue.png");

    background-size: cover;
    background-position: center;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #ff2b2b;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title h2 {
    color: white;
    font-size: 3rem;
    margin-top: 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.18);
}

.review-stars {
    color: #ff2b2b;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.review-card p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.review-user h4 {
    color: #071c4d;
    margin-bottom: 5px;
}

.review-user span {
    color: #777;
}

.review-card img {
    width: 100%;
    border-radius: 18px;
    margin: 20px 0;
}