.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
  font-family: "Poppins", sans-serif;
}

body.custom-body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;
}

:root {
  --primary-color: #1b4b61;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

header.header-top {
  position: fixed !important;
  z-index: 10010;
  width: 100vw;
  max-width: 100%;
  left: 0px;
  top: 0px;
  bottom: auto;
  background: #fff;
}

.top-bar {
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.top-bar .phone {
  font-weight: 700;
  display: flex;
  gap: 8px;
  padding: 0.35rem 0;
}

.top-bar .phone a {
  color: var(--primary-color);
}

.top-bar .phone a:hover {
  color: black;
}

.navbar-custom {
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  z-index: 20;
  position: relative;
}

.navbar-custom-color {
  background-color: var(--primary-color);
}

.navbar-custom .logo img {
  height: auto;
  width: 100px;
  object-fit: contain;
}

.navbar-custom .nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  font-weight: 700;
  font-size: 14px;
  color: white;
  align-items: center;
}

.navbar-custom .nav-links li {
  cursor: pointer;
  position: relative;
}

.navbar-custom .nav-links li a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* .navbar-custom .nav-links li a:hover,
.navbar-custom .nav-links li a:focus {
  text-decoration: underline;
} */

.navbar-custom .nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-color);
  border-radius: 0 0 0.375rem 0.375rem;
  min-width: 160px;
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
  z-index: 1000;
}

.navbar-custom .nav-links li:hover>.dropdown-menu,
.navbar-custom .nav-links li:focus-within>.dropdown-menu {
  display: flex;
}

.navbar-custom .nav-links .dropdown-menu a {
  padding: 0.5rem 1rem;
  color: white;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.navbar-custom .nav-links .dropdown-menu a:hover,
.navbar-custom .nav-links .dropdown-menu a:focus {
  background-color: #a6acaf;
}

.navbar-custom .nav-links .dropdown-icon {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.navbar-custom .btn-offert {
  display: none;
  background-color: white;
  color: #1b3d82;
  font-weight: 700;
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.navbar-custom .btn-offert:hover {
  background-color: #f3f4f6;
}

/* Content */

#content {
  margin-top: 149px;
}

@media (min-width: 768px) {
  .navbar-custom .nav-links {
    display: flex;
  }

  .navbar-custom .btn-offert {
    display: inline-block;
  }
}

/* Hero with video background */
.hero-section {
  position: relative;
  color: white;
  padding: 5rem 1.5rem 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  min-height: 75vh;
}

@media (min-width: 768px) {
  .hero-section {
    flex-direction: row;
    padding: 5rem 4rem 5rem 4rem;
  }
}

@media (max-width: 500px) {
  .hero-section {
    padding: 3rem .25rem;
  }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.45);
}

.hero-content {
  position: relative;
  z-index: 10;
  /* width: 54%; */
}

.hero-left h1 {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-left h1 {
    font-size: 60px;
  }
}

.hero-left p {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 1.5rem;
  /* max-width: 320px; */
}

@media (min-width: 768px) {
  .hero-left p {
    font-size: 16px;
  }
}

.review-box {
  display: flex;
  background-color: white;
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  color: #111827;
  font-size: 14px;
  font-weight: 400;
  max-width: 100%;
  overflow: hidden;
  padding: 5px 0;
}

.review-section {
  flex: 1;
  /* padding: 0.75rem 1rem; */
  border-right: 1px solid #d1d5db;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-section-2 {
  flex-direction: row !important;
  align-items: center;
  gap: 0.5re;
}

.review-section:last-child {
  border-right: none;
}

.review-section .label {
  font-size: 14px;
  margin-bottom: 0.25rem;
  color: #6b7280;
}

.review-section .value {
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.review-section .value img {
  height: auto;
  width: 22px;
}

.review-section .value span {
  font-weight: 700;
}

.review-section .value .subtext {
  font-weight: 400;
  font-size: 14px;
}

.review-section .trust-bar {
  display: flex;
  gap: 0.25rem;
  margin-right: 0.5rem;
}

.trust-bar-segment {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  background-color: #00c800;
}

.review-section .trust-text {
  font-weight: 700;
  font-size: 14px;
  margin-right: 0.5rem;
}

.review-section .reco-logo {
  height: 20px;
  width: 50px;
  object-fit: contain;
  margin-right: 0.25rem;
}

.review-section .info-icon {
  color: #9ca3af;
  font-size: 14px;
}

.hero-right {
  margin-top: 2.5rem;
  /* max-width: 400px; */
  color: white;
  position: relative;
  z-index: 10;
}

/* @media (min-width: 768px) {
  .hero-right {
    margin-top: 0;
    margin-left: 3rem;
  }
} */

.hero-right h2 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-control-custom {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 14px;
  color: #111827;
  background-color: #eeeeee;
}

.form-control-custom::placeholder {
  color: #6b7280;
}

.form-control-custom:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(27, 61, 130, 0.5);
}

.btn-submit {
  background-color: var(--primary-color);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.btn-submit:hover {
  background-color: white;
  color: black;
}

/* service */
.services-section {
  padding: 5rem 1.5rem;
  background: #f0f5ff;
}

/* .services-section__content {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
} */

.services-section__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 3rem;
}

.services-section__left h2 {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #1f2937;
  margin-bottom: 1rem;
}

.services-section__left p {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.services-section__left button {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1e3a8a;
  background: transparent;
  border: 1px solid #1e3a8a;
  border-radius: 0.375rem;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: max-content;
}

.services-section__left button:hover {
  background-color: var(--primary-color);
  color: white;
}

.services-section__cards {
  gap: 2rem;
}

.services-section__card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  height: 100%;
}

.services-section__card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.services-section__card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.services-section__card-content h3 {
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.services-section__card-content p {
  width: 100%;
  font-size: 0.75rem;
  color: #4b5563;
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.4;
  max-height: 90px;
  min-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.services-section__card-content button {
  font-weight: 600;
  font-size: 0.75rem;
  color: white;
  background-color: var(--primary-color);
  border: none;
  border-radius: 0.375rem;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
  border: 1px solid var(--primary-color);
}

.services-section__card-content button:hover {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.flyttservice-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /* gap: 3rem; */
  justify-content: space-between;
  padding: 3.5rem 0;
}

.flyttservice-image {
  flex: 1 1 300px;
  max-width: 600px;
  border-radius: 1.5rem;
  overflow: hidden;
}

.flyttservice-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
  object-fit: cover;
}

/* Services Page Starts */
/* Responsive grid for services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.services-section__card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.services-section__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.services-section__card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.services-section__card-content {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-section__card-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.services-section__card-content p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
}

.services-section__card-content a.btn {
  align-self: flex-start;
  padding: 8px 14px;
  background: #0096cb;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s ease;
}

.services-section__card-content a.btn:hover {
  background: #007aa4;
}

/* Responsive breakpoints */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Services Page Ends*/

/* Transports Page Starts */
.transport-vehicles {
  padding: clamp(24px, 5vw, 48px) 0;
  background: #fff;
  color: #0b0d12;
}

.vehicles__title {
  text-align: center;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 8px;
}

.vehicles__intro {
  text-align: center;
  font-size: 15px;
  color: #5b6572;
  margin-bottom: 24px;
}

/* Responsive grid: 3 cols desktop, 2 tablet, 1 mobile */
.vehicles-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .vehicles-grid {
    grid-template-columns: 1fr;
  }
}

/* Vehicle card */
.vehicle-card {
  background: #f9fafb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding-bottom: 14px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.vehicle-card img {
  width: 100%;
  /* height: 180px; */
  object-fit: cover;
}

.vehicle-card h3 {
  margin: 14px 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.vehicle-card__note {
  font-size: 14px;
  color: #444e5a;
  margin: 0;
}

/* Transports Page Ends */

/* Services Details Start */
:root {
  --text: #191b1f;
  --muted: #5b6572;
  --divider: #e7e7e9;
  --max: 1400px;
  --gap: 56px;
}

.wrap {
  width: min(var(--max), 92%);
  margin-inline: auto;
  padding-block: clamp(28px, 6vw, 72px);
}

/* GRID */
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  align-items: start;
}

/* Cards */
.feature {
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto auto;
  column-gap: 22px;
  row-gap: 14px;
  padding-right: clamp(0px, 2vw, 8px);
  position: relative;
}

/* Vertical dividers (desktop only) */
@media (min-width: 992px) {
  .feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: calc(-1 * var(--gap) / 2);
    width: 1px;
    height: 100%;
    background: var(--divider);
  }
}

/* Icon */
.feature__icon {
  grid-row: 1 / span 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 52px;
  /* big like screenshot */
  color: #2b2b2b;
}

/* Heading */
.feature__title {
  margin: 0;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.25;
}

/* Text */
.feature__text {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
  max-width: 60ch;
}

/* Responsive: 2 columns on tablets, 1 on phones */
@media (max-width: 991px) {
  :root {
    --gap: 36px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature::after {
    display: none;
  }

  /* no vertical lines on small screens */
}

@media (max-width: 640px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* Services Details Ends */


/* Gallery Starts */
.gallery {
  padding: clamp(24px, 5vw, 56px) 0;
}

.gallery__title {
  margin: 0 0 20px;
  font-weight: 800;
  font-size: clamp(20px, 3vw, 28px);
  text-align: center;
}

.gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  line-height: 0;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .3s ease, filter .3s ease;
  display: block;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Gallery Ends */

/* Contact Starts */
/* container helper (remove if you already have one) */
.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* Top pale banner */
.contact-hero {
  background: #eef5ff;
  padding: clamp(28px, 5vw, 56px) 0;
  text-align: center;
}

.contact-hero h2 {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: clamp(22px, 3.4vw, 36px);
}

.contact-hero p {
  margin: 0;
  color: #516173;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.65;
}

/* Two main cards */
.contact-cards {
  padding: clamp(28px, 6vw, 64px) 0;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  /* divider in the middle */
  align-items: center;
  gap: clamp(16px, 4vw, 40px);
}

.card h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 700;
  text-align: center;
}

.big-link {
  display: inline-block;
  text-align: center;
  font-size: clamp(20px, 3.2vw, 36px);
  font-weight: 800;
  color: #1e3a8a;
  /* deep blue like reference */
  text-decoration: none;
}

.big-link:hover {
  text-decoration: underline;
}

/* Vertical divider */
.divider {
  width: 1px;
  height: 100%;
  background: #e7e7ea;
}

/* Horizontal rule */
.rule {
  border: 0;
  border-top: 1px solid #e7e7ea;
  margin: clamp(22px, 4vw, 40px) 0;
}

/* Address + hours row */
.details {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 4vw, 40px);
  text-align: center;
}

.detail h4 {
  margin: 0 0 8px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
}

.detail p {
  margin: 0;
  color: #516173;
  font-size: clamp(14px, 1.4vw, 16px);
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .divider {
    display: none;
  }

  .details {
    grid-template-columns: 1fr;
  }
}

/* Contact Form */
/* Section */
.contact-form {
  padding: clamp(24px, 6vw, 72px) 0;
  background: #fff;
  color: #0b0d12;
}

.form-title {
  margin: 0 0 22px;
  font: 800 clamp(22px, 3.4vw, 40px)/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Layout */
.form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  gap: 22px;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 40px);
}

/* Inputs */
.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  color: #262626;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-size: 16px;
  border: 0;
  border-bottom: 2px solid #171717;
  padding: 10px 0 12px;
  outline: none;
  background: transparent;
  transition: border-color .2s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Focus state */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #0b1f51;
}

/* Button */
.btn-primary {
  display: inline-block;
  background: #0b1f51;
  /* deep navy like screenshot */
  color: #fff;
  border: 0;
  padding: 14px 28px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: filter .2s ease;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

/* Horizontal rule under entire form (visual spacing like ref) */
.form::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #171717;
  margin-top: clamp(16px, 4vw, 28px);
}

/* Responsive */
@media (max-width: 720px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
}

/* Contact Ends */


.flyttservice-content {
  flex: 1 1 300px;
  max-width: 640px;
  background-color: var(--primary-color);
  border-radius: 2rem;
  padding: 2.5rem 3rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flyttservice-content h1 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.flyttservice-content ul {
  list-style-type: disc;
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.flyttservice-content ul li {
  margin-bottom: 0.25rem;
}

.flyttservice-content p {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  max-width: 320px;
}

.flyttservice-content button {
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  background: transparent;
  border: 1.5px solid white;
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
  width: max-content;
  cursor: pointer;
  transition: all 0.3s ease;
}

.flyttservice-content button:hover {
  background-color: white;
  color: #1e3a8a;
}

@media (max-width: 767.98px) {
  .flyttservice-container {
    flex-direction: column;
    align-items: center;
  }

  .flyttservice-content,
  .flyttservice-image {
    max-width: 100%;
  }

  .flyttservice-content p {
    max-width: 100%;
  }
}

.faq-section {
  padding: 3rem 0;
  /* max-width: 1200px; */
  /* margin: 0 auto; */
}

.faq-header {
  max-width: 600px;
  margin-bottom: 3rem;
}

.faq-header__title {
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 0.5rem 0;
}

.faq-header__subtitle {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #4f4f4f;
  margin: 0;
}

.faq-cards {
  gap: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.faq-card {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

/* Custom border radius for each card */
.faq-card--1 {
  border-radius: 30px 100px 30px 30px;
  padding: 50px 30px 50px 30px;
}

.faq-card--2 {
  border-radius: 30px 30px 30px 100px;
  padding: 50px 30px 50px 30px;
}

.faq-card--3 {
  border-radius: 100px 30px 30px 30px;
  padding: 50px 30px 50px 30px;
}

.faq-card--4 {
  border-radius: 30px 30px 100px 30px;
  padding: 50px 30px 50px 30px;
}

.faq-card__title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.faq-card__text {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 576px) {
  .faq-header__title {
    font-size: 2.25rem;
  }

  .faq-header__subtitle {
    font-size: 0.875rem;
  }

  .faq-card__title {
    font-size: 1.125rem;
  }

  .faq-card__text {
    font-size: 0.875rem;
  }
}

.section-container {
  background-color: var(--primary-color);
  padding: 4rem 1.5rem;
  color: white;
}

.section-container.background-white {
  background-color: #fff;
  padding: 4rem 1.5rem;
  color: #4b5563;
  font-weight: normal;
}

.section-container.background-white .content h1 {
  color: #1f2937;
}

.section-container .content h1 {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.section-container .content p {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.section-container .content button {
  border: 1px solid white;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  background-color: transparent;
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.section-container .content button:hover {
  background-color: white;
  color: #1b3b82;
  cursor: pointer;
}

.section-container .image img {
  border-radius: 1.5rem;
  width: 100%;
  height: auto;

  object-fit: cover;
}

@media (min-width: 768px) {
  .section-container .content h1 {
    font-size: 3rem;
  }
}

.instagram-section {
  border-top: 1px solid #1e40af;
  /* blue-800 */
  border-bottom: 1px solid #1e40af;
  padding: 5.5rem 0;
}

.instagram-section .container>.row>.instagram-text h2 {
  font-weight: 800;
  color: #1f2937;
  /* gray-900 */
  font-size: 36px;
  /* text-lg */
  line-height: 1.25rem;
  /* leading-tight */
  margin: 0;
}

.instagram-section .container>.row>.instagram-link a {
  font-weight: 800;
  color: var(--primary-color);
  /* blue-800 */
  font-size: 36px;
  /* text-lg */
  line-height: 1.25rem;
  /* leading-tight */
  text-decoration: none;
}

/* .instagram-section .container > .row > .instagram-link a:hover {
  text-decoration: underline;
} */
/* footer */
footer {
  background-color: var(--primary-color);
}

.footer-container {
  color: white;
  padding: 4rem 0;
}

.footer-container .footer-title {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-container .footer-title span {
  color: white;
}

.footer-contact,
.footer-services {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-contact a,
.footer-services a {
  color: white;
  text-decoration: underline;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 1rem;
  max-width: max-content;
}

.footer-contact a.instagram-link {
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 0.375rem;
  width: fit-content;
  /* margin-bottom: 2.5rem; */
}

.footer-contact a.instagram-link i {
  color: var(--primary-color);
  font-size: 20px;
}

.footer-office-hours {
  font-weight: 700;
  font-size: 0.875rem;
}

.footer-office-hours p {
  margin-bottom: 0.25rem;
}

.footer-map iframe {
  border-radius: 0.375rem;
  width: 100%;
  max-width: 300px;
  height: 400px;
  border: 0;
}

.footer-bottom {
  background-color: white;
  color: var(--primary-color);
  text-align: center;
  padding: 1rem 0;
  font-size: 0.875rem;
  font-weight: 600;
}

/* .footer-bottom .heart {
  color: #dc2626;
  font-weight: 700;
} */
@media (min-width: 768px) {

  .footer-contact,
  .footer-services {
    margin-bottom: 0;
  }
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-bottom a {
  color: var(--primary-color);
}

/* FORM */
.flex-heading {
  display: flex;
  align-items: center;
  gap: 4px;
}

.progress-step-circle {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50px;
  color: white;
  font-size: 11px;
  border: 1px solid white;
}

.bg-color {
  background: #f0f5ff;
}

.progress-step-circle.bg-light {
  background-color: #e9ecef;
  color: #6c757d;
}

.invalid-feedback {
  display: none;
  color: red;
}

input.is-invalid,
select.is-invalid {
  border-color: #dc3545;
}

.form-section button {
  background: var(--primary-color);
}

.form-section button:hover {
  background: var(--primary-color);
}

.form-section button:hover {
  background: white;
  color: black;
  border-color: var(--bs-black);
}

@media (max-width: 980px) {
  .faq-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-section {
    padding: 3rem 0;
  }

  .instagram-section .container>.row>.instagram-text h2,
  .instagram-section .container>.row>.instagram-link,
  .instagram-section .container>.row>.instagram-link a {
    font-size: 20px;
    text-align: left !Important;
  }

  .instagram-section .container>.row>.instagram-link {
    margin-top: 1rem;
    text-align: left !Important;
  }
}

@media (max-width: 767px) {
  .top-bar {
    padding: 0 !important;
  }

  .top-bar .phone {
    justify-content: center !important;
  }

  .top-bar .phone:first-child {
    background-color: #2D3133;
  }

  .top-bar .phone:first-child a,
  .top-bar .phone:first-child i {
    color: #fff;
  }

  .et_pb_menu .et_mobile_nav_menu {
    float: none;
    margin: 0 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .et_pb_menu .et_mobile_menu {
    top: 100%;
    padding: 5%;
  }

  .et_pb_menu .et_mobile_menu,
  .et_pb_menu .et_mobile_menu ul {
    list-style: none !important;
    text-align: left;
  }

  .et_pb_menu .et_mobile_menu ul {
    padding: 0;
  }

  .et_pb_menu .et_pb_mobile_menu_upwards .et_mobile_menu {
    top: auto;
    bottom: 100%;
  }

  #content {
    margin-top: 180px;
  }

}

@media (max-width: 576px) {
  .navbar-custom .logo img {
    width: 80px;
  }

  .mobile_menu_bar {
    font-size: 40px;
  }

  #content {
    margin-top: 160px;
  }

  .mobile_menu_bar .fa-bars:before {
    width: 40px;
  }

  .faq-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-container {
    padding: 4rem 2rem;
  }
}