/* Start custom CSS for html, class: .elementor-element-d0ade39 *//* ==================================================
   KGN REFRIGERATION
   SECTION 1: FINAL COMPACT HERO CSS
================================================== */


/* ==================================================
   DESIGN VARIABLES
================================================== */

:root {
  --primary: #075985;
  --primary-dark: #0c4a6e;
  --primary-soft: #e8f5fc;

  --text-dark: #0f172a;
  --text-medium: #475569;
  --text-light: #64748b;

  --white: #ffffff;
  --border: #d7e7f0;
  --hero-background: #f7fbfd;

  --shadow-small:
    0 8px 22px rgba(15, 23, 42, 0.08);

  --shadow-image:
    0 16px 38px rgba(15, 23, 42, 0.12);

  --container-width: 1100px;

  --radius-button: 8px;
  --radius-card: 12px;
  --radius-image: 18px;
}


/* ==================================================
   BASIC RESET
================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text-dark);
  background: var(--white);

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

a {
  -webkit-tap-highlight-color: transparent;
}


/* ==================================================
   HERO SECTION
================================================== */

.hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 42px 20px 46px;
  background: var(--hero-background);
  scroll-margin-top: 80px;
}


/* Very light background detail */
.hero-section::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.055);
  pointer-events: none;
}


/* Main two-column container */
.hero-container {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;

  width: min(100%, var(--container-width));
  margin-inline: auto;
  gap: 30px;
}


/* ==================================================
   LEFT CONTENT
================================================== */

.hero-content {
  width: 100%;
  max-width: 580px;
  min-width: 0;
}


/* Small label above heading */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;

  margin: 0 0 10px;
  padding: 5px 9px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: var(--primary-dark);
  background: var(--white);

  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}


/* Main heading */
.hero-content h1 {
  max-width: 600px;
  margin: 0;

  color: var(--text-dark);

  font-size: clamp(1.9rem, 8.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;

  text-wrap: balance;
}


/* Blue second line */
.hero-content h1 span {
  display: block;
  margin-top: 3px;
  color: var(--primary);
}


/* Introductory paragraph */
.hero-description {
  max-width: 570px;
  margin: 14px 0 0;

  color: var(--text-medium);

  font-size: 0.88rem;
  line-height: 1.62;
}


/* ==================================================
   SERVICE HIGHLIGHTS
================================================== */

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  margin: 17px 0 0;
  padding: 0;
  gap: 10px 18px;

  list-style: none;
}


.hero-trust-list li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 7px;

  color: var(--text-dark);

  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.4;
}


/* Highlight icon circle */
.trust-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;

  width: 22px;
  height: 22px;

  border-radius: 50%;

  color: var(--primary);
  background: var(--primary-soft);
}


.trust-icon svg {
  display: block;
  width: 13px;
  height: 13px;
}


/* ==================================================
   CTA BUTTONS
================================================== */

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;

  width: 100%;
  margin-top: 20px;
}


.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 46px;
  padding: 11px 17px;

  border: 1.5px solid transparent;
  border-radius: var(--radius-button);

  text-decoration: none;
  text-align: center;

  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1;

  cursor: pointer;

  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}


/* CTA SVG icons */
.hero-btn-icon {
  display: block;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}


/* Book Service */
.hero-btn-primary {
  color: var(--white);
  background: var(--primary);

  box-shadow:
    0 7px 16px rgba(7, 89, 133, 0.18);
}


.hero-btn-primary:hover {
  color: var(--white);
  background: var(--primary-dark);

  box-shadow:
    0 9px 20px rgba(7, 89, 133, 0.22);

  transform: translateY(-1px);
}


/* Call Now */
.hero-btn-secondary {
  border-color: var(--primary);

  color: var(--primary);
  background: var(--white);
}


.hero-btn-secondary:hover {
  border-color: var(--primary-dark);

  color: var(--white);
  background: var(--primary-dark);

  transform: translateY(-1px);
}


/* Keyboard focus */
.hero-btn:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.28);
  outline-offset: 3px;
}


/* Small instruction below buttons */
.hero-helper-text {
  max-width: 500px;
  margin: 9px 0 0;

  color: var(--text-light);

  font-size: 0.7rem;
  line-height: 1.45;
}


/* ==================================================
   RIGHT VISUAL
================================================== */

.hero-visual {
  position: relative;

  width: min(100%, 390px);
  margin-inline: auto;
}


/* Image container */
.hero-image-wrapper {
  position: relative;
  overflow: hidden;

  width: 100%;
  aspect-ratio: 1 / 1;

  border: 5px solid rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-image);

  background: var(--primary-soft);
  box-shadow: var(--shadow-image);
}


/* Hero image */
.hero-image-wrapper img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


/* ==================================================
   SERVICE CARD
================================================== */

.hero-service-card {
  position: relative;
  z-index: 2;

  width: calc(100% - 24px);
  margin: -24px auto 0;
  padding: 11px 13px;

  border: 1px solid var(--border);
  border-radius: var(--radius-card);

  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-small);

  text-align: left;
}


/* Card title row */
.hero-service-card-heading {
  display: flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 5px;
}


/* Card icon */
.hero-service-card-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;

  width: 24px;
  height: 24px;

  border-radius: 7px;

  color: var(--primary);
  background: var(--primary-soft);
}


.hero-service-card-icon svg {
  display: block;
  width: 13px;
  height: 13px;
}


/* Card title */
.hero-service-card strong {
  display: block;

  color: var(--text-dark);

  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
}


/* Appliance text */
.hero-service-card > span {
  display: block;

  color: var(--text-medium);

  font-size: 0.64rem;
  font-weight: 500;
  line-height: 1.5;
}


/* ==================================================
   VERY SMALL MOBILE
================================================== */

@media (max-width: 359px) {
  .hero-section {
    padding:
      30px
      14px
      36px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.84rem;
  }

  .hero-btn {
    min-height: 44px;
    padding-inline: 14px;
  }

  .hero-service-card {
    width: calc(100% - 14px);
  }
}


/* ==================================================
   LARGE MOBILE
================================================== */

@media (min-width: 520px) {
  .hero-section {
    padding:
      40px
      24px
      46px;
  }

  .hero-actions {
    grid-template-columns:
      repeat(2, minmax(0, 170px));

    max-width: 350px;
  }

  .hero-content h1 {
    font-size: clamp(2.25rem, 7vw, 2.9rem);
  }

  .hero-service-card {
    width: calc(100% - 34px);
  }
}


/* ==================================================
   TABLET
================================================== */

@media (min-width: 700px) and (max-width: 899px) {
  .hero-container {
    gap: 34px;
  }

  .hero-content {
    max-width: 650px;
  }

  .hero-visual {
    width: min(100%, 420px);
  }
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 900px) {
  .hero-section {
    padding:
      48px
      28px
      50px;
  }

  .hero-container {
    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(330px, 0.85fr);

    gap: 48px;
  }

  .hero-content {
    max-width: 610px;
  }

  .hero-content h1 {
    max-width: 590px;

    font-size: clamp(2.55rem, 3.5vw, 3.15rem);
    line-height: 1.06;
  }

  .hero-description {
    max-width: 560px;
    font-size: 0.9rem;
  }

  .hero-trust-list {
    max-width: 560px;
  }

  .hero-actions {
    grid-template-columns:
      repeat(2, minmax(0, 165px));

    max-width: 340px;
  }

  .hero-visual {
    width: min(100%, 380px);
    justify-self: end;
  }

  .hero-service-card {
    position: absolute;
    right: -10px;
    bottom: 18px;

    width: 250px;
    margin: 0;
    padding: 11px 13px;
  }
}


/* ==================================================
   LARGE DESKTOP
================================================== */

@media (min-width: 1200px) {
  .hero-section {
    padding-block: 54px;
  }

  .hero-container {
    gap: 58px;
  }

  .hero-content h1 {
    font-size: 3.15rem;
  }

  .hero-visual {
    width: 395px;
  }
}


/* ==================================================
   HOVER-FREE TOUCH DEVICES
================================================== */

@media (hover: none) {
  .hero-btn:hover {
    transform: none;
  }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-btn {
    transition: none;
  }

  .hero-btn:hover {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-68c7661 *//* ==================================================
   KGN REFRIGERATION
   SECTION 2: TRUST & SERVICE HIGHLIGHTS
   FINAL COMPACT CSS
================================================== */


/* ==================================================
   SECTION
================================================== */

.trust-section {
  width: 100%;
  padding: 46px 20px;
  background: #ffffff;
  scroll-margin-top: 80px;
}


.trust-container {
  width: min(100%, 1100px);
  margin-inline: auto;
}


/* ==================================================
   SECTION HEADING
================================================== */

.trust-header {
  max-width: 650px;
  margin: 0 auto 28px;
  text-align: center;
}


.trust-eyebrow {
  display: inline-flex;
  align-items: center;

  margin: 0 0 9px;
  padding: 5px 9px;

  border: 1px solid #d7e7f0;
  border-radius: 999px;

  color: #0c4a6e;
  background: #f7fbfd;

  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}


.trust-header h2 {
  max-width: 620px;
  margin: 0 auto;

  color: #0f172a;

  font-size: clamp(1.65rem, 7vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;

  text-wrap: balance;
}


.trust-intro {
  max-width: 610px;
  margin: 12px auto 0;

  color: #475569;

  font-size: 0.86rem;
  line-height: 1.62;
}


/* ==================================================
   TRUST GRID
================================================== */

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}


/* ==================================================
   TRUST CARD
================================================== */

.trust-card {
  position: relative;
  min-width: 0;
  height: 100%;

  padding: 18px;

  border: 1px solid #e2e8f0;
  border-radius: 12px;

  background: #ffffff;
  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.055);

  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}


.trust-card:hover {
  border-color: #bae6fd;

  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.08);

  transform: translateY(-2px);
}


/* ==================================================
   CARD ICON
================================================== */

.trust-card-icon {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;
  margin-bottom: 12px;

  border-radius: 10px;

  color: #075985;
  background: #e8f5fc;
}


.trust-card-icon svg {
  display: block;
  width: 19px;
  height: 19px;
}


/* ==================================================
   CARD CONTENT
================================================== */

.trust-card h3 {
  margin: 0;

  color: #0f172a;

  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.35;
}


.trust-card p {
  margin: 7px 0 0;

  color: #64748b;

  font-size: 0.78rem;
  line-height: 1.58;
}


/* ==================================================
   BOTTOM CTA
================================================== */

.trust-cta {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;

  gap: 16px;
  margin-top: 20px;
  padding: 18px;

  border: 1px solid #d7e7f0;
  border-radius: 12px;

  background: #f7fbfd;
}


.trust-cta-content h3 {
  margin: 0;

  color: #0f172a;

  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}


.trust-cta-content p {
  margin: 5px 0 0;

  color: #475569;

  font-size: 0.78rem;
  line-height: 1.55;
}


/* ==================================================
   CTA BUTTONS
================================================== */

.trust-cta-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}


.trust-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 44px;
  padding: 10px 15px;

  border: 1.5px solid transparent;
  border-radius: 8px;

  text-decoration: none;
  text-align: center;

  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1;

  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}


.trust-btn-icon {
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}


/* Primary CTA */
.trust-btn-primary {
  color: #ffffff;
  background: #075985;

  box-shadow:
    0 7px 16px rgba(7, 89, 133, 0.17);
}


.trust-btn-primary:hover {
  color: #ffffff;
  background: #0c4a6e;

  transform: translateY(-1px);
}


/* Secondary CTA */
.trust-btn-secondary {
  border-color: #075985;

  color: #075985;
  background: #ffffff;
}


.trust-btn-secondary:hover {
  border-color: #0c4a6e;

  color: #ffffff;
  background: #0c4a6e;

  transform: translateY(-1px);
}


.trust-btn:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.28);
  outline-offset: 3px;
}


/* ==================================================
   VERY SMALL MOBILE
================================================== */

@media (max-width: 359px) {
  .trust-section {
    padding:
      36px
      14px;
  }

  .trust-header h2 {
    font-size: 1.55rem;
  }

  .trust-card {
    padding: 16px;
  }

  .trust-cta {
    padding: 16px;
  }
}


/* ==================================================
   LARGE MOBILE / TABLET
================================================== */

@media (min-width: 600px) {
  .trust-section {
    padding:
      52px
      24px;
  }

  .trust-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 14px;
  }

  .trust-cta-actions {
    grid-template-columns:
      repeat(2, minmax(0, 155px));
  }
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 900px) {
  .trust-section {
    padding:
      58px
      28px;
  }

  .trust-header {
    margin-bottom: 32px;
  }

  .trust-header h2 {
    font-size: 2.35rem;
  }

  .trust-grid {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));

    gap: 16px;
  }

  .trust-card {
    padding: 19px;
  }

  .trust-cta {
    grid-template-columns:
      minmax(0, 1fr)
      auto;

    gap: 24px;
    margin-top: 22px;
    padding: 19px 20px;
  }

  .trust-cta-actions {
    grid-template-columns:
      repeat(2, minmax(0, 145px));

    width: 300px;
  }
}


/* ==================================================
   TOUCH DEVICES
================================================== */

@media (hover: none) {
  .trust-card:hover,
  .trust-btn:hover {
    transform: none;
  }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  .trust-card,
  .trust-btn {
    transition: none;
  }

  .trust-card:hover,
  .trust-btn:hover {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e4f912d *//* ==================================================
   KGN REFRIGERATION
   SECTION 3: REPAIR SERVICES
   FINAL COMPACT CSS
================================================== */


/* ==================================================
   SECTION
================================================== */

.services-section {
  width: 100%;
  padding: 46px 20px;
  scroll-margin-top: 80px;
  background: #f7fbfd;
}


.services-container {
  width: min(100%, 1100px);
  margin-inline: auto;
}


/* ==================================================
   SECTION HEADER
================================================== */

.services-header {
  max-width: 650px;
  margin: 0 auto 28px;
  text-align: center;
}


.services-eyebrow {
  display: inline-flex;
  align-items: center;

  margin: 0 0 9px;
  padding: 5px 9px;

  border: 1px solid #d7e7f0;
  border-radius: 999px;

  color: #0c4a6e;
  background: #ffffff;

  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}


.services-header h2 {
  max-width: 620px;
  margin: 0 auto;

  color: #0f172a;

  font-size: clamp(1.65rem, 7vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;

  text-wrap: balance;
}


.services-intro {
  max-width: 600px;
  margin: 12px auto 0;

  color: #475569;

  font-size: 0.86rem;
  line-height: 1.62;
}


/* ==================================================
   SERVICES GRID
================================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}


/* ==================================================
   SERVICE CARD
================================================== */

.service-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;
  height: 100%;
  padding: 18px;

  scroll-margin-top: 100px;

  border: 1px solid #e2e8f0;
  border-radius: 12px;

  background: #ffffff;
  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.055);

  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}


.service-card:hover {
  border-color: #bae6fd;

  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.08);

  transform: translateY(-2px);
}


/* ==================================================
   SERVICE ICON
================================================== */

.service-icon {
  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;
  margin-bottom: 12px;

  border-radius: 10px;

  color: #075985;
  background: #e8f5fc;
}


.service-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}


/* ==================================================
   CARD CONTENT
================================================== */

.service-card h3 {
  margin: 0;

  color: #0f172a;

  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.35;
}


.service-card > p {
  margin: 7px 0 0;

  color: #64748b;

  font-size: 0.78rem;
  line-height: 1.58;
}


/* ==================================================
   SERVICE POINTS
================================================== */

.service-points {
  display: grid;
  gap: 6px;

  margin: 13px 0 0;
  padding: 0;

  list-style: none;
}


.service-points li {
  position: relative;

  padding-left: 16px;

  color: #334155;

  font-size: 0.75rem;
  line-height: 1.45;
}


/* Small CSS dot — no emoji */
.service-points li::before {
  content: "";

  position: absolute;
  top: 0.55em;
  left: 1px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #0284c7;

  transform: translateY(-50%);
}


/* ==================================================
   VERY SMALL MOBILE
================================================== */

@media (max-width: 359px) {
  .services-section {
    padding:
      36px
      14px;
  }

  .services-header h2 {
    font-size: 1.55rem;
  }

  .service-card {
    padding: 16px;
  }
}


/* ==================================================
   LARGE MOBILE / TABLET
================================================== */

@media (min-width: 600px) {
  .services-section {
    padding:
      52px
      24px;
  }

  .services-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 14px;
  }
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 900px) {
  .services-section {
    padding:
      58px
      28px;
  }

  .services-header {
    margin-bottom: 32px;
  }

  .services-header h2 {
    font-size: 2.35rem;
  }

  .services-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 16px;
  }

  .service-card {
    padding: 19px;
  }
}


/* ==================================================
   TOUCH DEVICES
================================================== */

@media (hover: none) {
  .service-card:hover {
    transform: none;
  }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  .service-card {
    transition: none;
  }

  .service-card:hover {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-22a3ac0 *//* ==================================================
   KGN REFRIGERATION
   SECTION 4: HOW OUR SERVICE WORKS
   FINAL COMPACT CSS
================================================== */


/* ==================================================
   SECTION
================================================== */

.process-section {
  width: 100%;
  padding: 46px 20px;
  scroll-margin-top: 80px;
  background: #ffffff;
}


.process-container {
  width: min(100%, 1100px);
  margin-inline: auto;
}


/* ==================================================
   SECTION HEADER
================================================== */

.process-header {
  max-width: 650px;
  margin: 0 auto 28px;
  text-align: center;
}


.process-eyebrow {
  display: inline-flex;
  align-items: center;

  margin: 0 0 9px;
  padding: 5px 9px;

  border: 1px solid #d7e7f0;
  border-radius: 999px;

  color: #0c4a6e;
  background: #f7fbfd;

  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}


.process-header h2 {
  max-width: 620px;
  margin: 0 auto;

  color: #0f172a;

  font-size: clamp(1.65rem, 7vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;

  text-wrap: balance;
}


.process-intro {
  max-width: 610px;
  margin: 12px auto 0;

  color: #475569;

  font-size: 0.86rem;
  line-height: 1.62;
}


/* ==================================================
   PROCESS GRID
================================================== */

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}


/* ==================================================
   PROCESS CARD
================================================== */

.process-card {
  position: relative;
  overflow: hidden;

  min-width: 0;
  height: 100%;
  padding: 18px;

  border: 1px solid #e2e8f0;
  border-radius: 12px;

  background: #ffffff;
  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.055);

  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}


.process-card:hover {
  border-color: #bae6fd;

  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.08);

  transform: translateY(-2px);
}


/* ==================================================
   STEP NUMBER
================================================== */

.process-number {
  position: absolute;
  top: 12px;
  right: 14px;

  color: #e0f2fe;

  font-size: 2.55rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;

  pointer-events: none;
}


/* ==================================================
   STEP ICON
================================================== */

.process-icon {
  position: relative;
  z-index: 1;

  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;
  margin-bottom: 12px;

  border-radius: 10px;

  color: #075985;
  background: #e8f5fc;
}


.process-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}


/* ==================================================
   CARD CONTENT
================================================== */

.process-card h3 {
  position: relative;
  z-index: 1;

  margin: 0;

  color: #0f172a;

  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.35;
}


.process-card p {
  position: relative;
  z-index: 1;

  margin: 7px 0 0;

  color: #64748b;

  font-size: 0.78rem;
  line-height: 1.58;
}


/* Small example box */
.process-example {
  position: relative;
  z-index: 1;

  display: block;

  margin-top: 12px;
  padding: 8px 10px;

  border-left: 2px solid #0284c7;
  border-radius: 0 7px 7px 0;

  color: #475569;
  background: #f7fbfd;

  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.45;
}


/* ==================================================
   INFORMATION NOTE
================================================== */

.process-note {
  display: flex;
  align-items: flex-start;

  gap: 11px;
  margin-top: 16px;
  padding: 15px 16px;

  border: 1px solid #d7e7f0;
  border-radius: 11px;

  background: #f7fbfd;
}


.process-note-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  width: 26px;
  height: 26px;

  border-radius: 50%;

  color: #ffffff;
  background: #075985;
}


.process-note-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}


.process-note-content {
  min-width: 0;
}


.process-note-content strong {
  display: block;

  color: #0f172a;

  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.4;
}


.process-note-content p {
  margin: 4px 0 0;

  color: #64748b;

  font-size: 0.74rem;
  line-height: 1.5;
}


/* ==================================================
   VERY SMALL MOBILE
================================================== */

@media (max-width: 359px) {
  .process-section {
    padding:
      36px
      14px;
  }

  .process-header h2 {
    font-size: 1.55rem;
  }

  .process-card {
    padding: 16px;
  }

  .process-note {
    padding: 14px;
  }
}


/* ==================================================
   TABLET
================================================== */

@media (min-width: 600px) {
  .process-section {
    padding:
      52px
      24px;
  }

  .process-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 14px;
  }
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 900px) {
  .process-section {
    padding:
      58px
      28px;
  }

  .process-header {
    margin-bottom: 32px;
  }

  .process-header h2 {
    font-size: 2.35rem;
  }

  .process-grid {
    gap: 16px;
  }

  .process-card {
    padding: 19px;
  }

  .process-note {
    margin-top: 18px;
    padding: 16px 18px;
  }
}


/* ==================================================
   TOUCH DEVICES
================================================== */

@media (hover: none) {
  .process-card:hover {
    transform: none;
  }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  .process-card {
    transition: none;
  }

  .process-card:hover {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-874e1e4 *//* =========================================
   INDEPENDENT SERVICE DISCLOSURE
========================================= */

.disclosure-section {
  width: 100%;
  padding: 18px 20px;
  background: #ffffff;
}

.disclosure-container {
  display: flex;
  align-items: flex-start;
  width: min(100%, 1100px);
  gap: 12px;
  margin-inline: auto;
  padding: 16px 18px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #f7fbfd;
}

.disclosure-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #075985;
  background: #e0f2fe;
}

.disclosure-icon svg {
  display: block;
  width: 19px;
  height: 19px;
}

.disclosure-content {
  min-width: 0;
}

.disclosure-content h2 {
  margin: 0;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.4;
}

.disclosure-content p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 0.76rem;
  line-height: 1.55;
}

@media (max-width: 359px) {
  .disclosure-section {
    padding-inline: 14px;
  }

  .disclosure-container {
    padding: 14px;
  }
}

@media (min-width: 900px) {
  .disclosure-section {
    padding: 22px 28px;
  }

  .disclosure-container {
    padding: 18px 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b0f3c1b *//* ==================================================
   SECTION 8: CUSTOMER REVIEWS
================================================== */

.reviews-section {
  width: 100%;
  padding: 46px 20px;
  scroll-margin-top: 80px;
  background: #ffffff;
}

.reviews-container {
  width: min(100%, 1100px);
  margin-inline: auto;
}


/* ==================================================
   SECTION HEADER
================================================== */

.reviews-header {
  max-width: 650px;
  margin: 0 auto 28px;
  text-align: center;
}

.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 9px;
  padding: 5px 9px;
  border: 1px solid #d7e7f0;
  border-radius: 999px;
  color: #0c4a6e;
  background: #f7fbfd;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.reviews-header h2 {
  max-width: 620px;
  margin: 0 auto;
  color: #0f172a;
  font-size: clamp(1.65rem, 7vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.reviews-intro {
  max-width: 600px;
  margin: 12px auto 0;
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.62;
}


/* ==================================================
   REVIEWS GRID
================================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}


/* ==================================================
   REVIEW CARD
================================================== */

.review-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  padding: 19px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.055);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 7px;
  right: 15px;
  color: #e0f2fe;
  font-family: Georgia, serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  border-color: #bae6fd;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}


/* ==================================================
   CUSTOMER
================================================== */

.review-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
}

.review-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ffffff;
  background: #075985;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.review-customer {
  min-width: 0;
}

.review-customer h3 {
  margin: 0;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
}

.review-customer p {
  margin: 3px 0 0;
  color: #64748b;
  font-size: 0.7rem;
  line-height: 1.4;
}


/* ==================================================
   RATING
================================================== */

.review-stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 3px;
  margin-top: 14px;
  color: #d97706;
}

.review-stars svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: currentColor;
}


/* ==================================================
   REVIEW CONTENT
================================================== */

.review-card blockquote {
  position: relative;
  z-index: 1;
  flex-grow: 1;
  margin: 13px 0 0;
  color: #334155;
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.62;
}

.review-service {
  position: relative;
  z-index: 1;
  margin: 15px 0 0;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.4;
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 359px) {
  .reviews-section {
    padding: 36px 14px;
  }

  .reviews-header h2 {
    font-size: 1.55rem;
  }

  .review-card {
    padding: 17px;
  }
}


/* ==================================================
   TABLET
================================================== */

@media (min-width: 600px) {
  .reviews-section {
    padding: 52px 24px;
  }

  .reviews-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .review-card:last-child {
    grid-column: 1 / -1;
  }
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 900px) {
  .reviews-section {
    padding: 58px 28px;
  }

  .reviews-header {
    margin-bottom: 32px;
  }

  .reviews-header h2 {
    font-size: 2.35rem;
  }

  .reviews-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .review-card:last-child {
    grid-column: auto;
  }

  .review-card {
    padding: 20px;
  }
}


/* ==================================================
   TOUCH DEVICES
================================================== */

@media (hover: none) {
  .review-card:hover {
    transform: none;
  }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  .review-card {
    transition: none;
  }

  .review-card:hover {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2477fa6 *//* ==================================================
   SECTION 9: WORK GALLERY
================================================== */

.gallery-section {
  width: 100%;
  padding: 46px 20px;
  scroll-margin-top: 80px;
  background:
    linear-gradient(
      180deg,
      #f8fafc 0%,
      #ffffff 100%
    );
}

.gallery-container {
  width: min(100%, 1100px);
  margin-inline: auto;
}


/* ==================================================
   SECTION HEADER
================================================== */

.gallery-header {
  max-width: 650px;
  margin: 0 auto 28px;
  text-align: center;
}

.gallery-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 9px;
  padding: 5px 9px;
  border: 1px solid #d7e7f0;
  border-radius: 999px;
  color: #0c4a6e;
  background: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.gallery-header h2 {
  max-width: 620px;
  margin: 0 auto;
  color: #0f172a;
  font-size: clamp(1.65rem, 7vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.gallery-intro {
  max-width: 610px;
  margin: 12px auto 0;
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.62;
}


/* ==================================================
   GALLERY GRID
================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}


/* ==================================================
   GALLERY CARD
================================================== */

.gallery-card {
  overflow: hidden;
  min-width: 0;
  height: 100%;
  margin: 0;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.055);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.gallery-card:hover {
  border-color: #bae6fd;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}


/* ==================================================
   IMAGE
================================================== */

.gallery-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
}

.gallery-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-card:hover .gallery-image-wrap img {
  transform: scale(1.035);
}

.gallery-category {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: inline-flex;
  max-width: calc(100% - 20px);
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(7, 89, 133, 0.92);
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1.2;
}


/* ==================================================
   CAPTION
================================================== */

.gallery-card figcaption {
  padding: 16px;
}

.gallery-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.4;
}

.gallery-card p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.55;
}


/* ==================================================
   PRIVACY NOTE
================================================== */

.gallery-note {
  display: flex;
  align-items: flex-start;
  max-width: 820px;
  gap: 10px;
  margin: 16px auto 0;
  padding: 14px 16px;
  border: 1px solid #dbeafe;
  border-radius: 11px;
  background: #f7fbfd;
}

.gallery-note-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #075985;
  background: #e0f2fe;
}

.gallery-note-icon svg {
  display: block;
  width: 15px;
  height: 15px;
}

.gallery-note p {
  margin: 1px 0 0;
  color: #64748b;
  font-size: 0.73rem;
  line-height: 1.52;
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 359px) {
  .gallery-section {
    padding: 36px 14px;
  }

  .gallery-header h2 {
    font-size: 1.55rem;
  }

  .gallery-card figcaption {
    padding: 15px;
  }
}


/* ==================================================
   TABLET
================================================== */

@media (min-width: 600px) {
  .gallery-section {
    padding: 52px 24px;
  }

  .gallery-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 900px) {
  .gallery-section {
    padding: 58px 28px;
  }

  .gallery-header {
    margin-bottom: 32px;
  }

  .gallery-header h2 {
    font-size: 2.35rem;
  }

  .gallery-grid {
    gap: 16px;
  }

  .gallery-card figcaption {
    padding: 17px;
  }

  .gallery-note {
    margin-top: 18px;
  }
}


/* ==================================================
   TOUCH DEVICES
================================================== */

@media (hover: none) {
  .gallery-card:hover,
  .gallery-card:hover .gallery-image-wrap img {
    transform: none;
  }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  .gallery-card,
  .gallery-image-wrap img {
    transition: none;
  }

  .gallery-card:hover,
  .gallery-card:hover .gallery-image-wrap img {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e0ce475 *//* ==================================================
   SECTION 10: FAQ
================================================== */

.faq-section {
  width: 100%;
  padding: 52px 20px;
  scroll-margin-top: 80px;
  background:
    linear-gradient(
      180deg,
      #f8fafc 0%,
      #ffffff 100%
    );
}

.faq-container {
  width: min(100%, 1120px);
  margin-inline: auto;
}


/* ==================================================
   MAIN LAYOUT
================================================== */

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}


/* ==================================================
   LEFT CONTENT
================================================== */

.faq-content {
  min-width: 0;
}

.faq-header {
  max-width: 650px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 6px 10px;
  border: 1px solid #d7e7f0;
  border-radius: 999px;
  color: #075985;
  background: #ffffff;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.faq-header h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.faq-intro {
  margin: 14px 0 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.68;
}


/* ==================================================
   HIGHLIGHT PANEL
================================================== */

.faq-highlights {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.faq-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.faq-highlight-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #075985;
  background: #e0f2fe;
}

.faq-highlight-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.faq-highlight strong {
  display: block;
  margin: 1px 0 0;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.4;
}

.faq-highlight p {
  margin: 3px 0 0;
  color: #64748b;
  font-size: 0.73rem;
  line-height: 1.5;
}


/* ==================================================
   FAQ LIST
================================================== */

.faq-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}


/* ==================================================
   FAQ ITEM
================================================== */

.faq-item {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  background: #ffffff;
  box-shadow:
    0 5px 16px rgba(15, 23, 42, 0.045);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.faq-item:hover {
  border-color: #bae6fd;
}

.faq-item[open] {
  border-color: #7dd3fc;
  background: #fbfdff;
  box-shadow:
    0 8px 22px rgba(15, 23, 42, 0.065);
}


/* ==================================================
   FAQ SUMMARY
================================================== */

.faq-item summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 16px;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.3);
  outline-offset: -3px;
}

.faq-question {
  min-width: 0;
  font-size: 0.87rem;
  font-weight: 750;
  line-height: 1.45;
}


/* ==================================================
   FAQ TOGGLE
================================================== */

.faq-toggle {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  color: #0369a1;
  background: #e0f2fe;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.faq-toggle svg {
  display: block;
  width: 16px;
  height: 16px;
}

.faq-line-vertical {
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.faq-item[open] .faq-toggle {
  color: #ffffff;
  background: #075985;
}

.faq-item[open] .faq-line-vertical {
  opacity: 0;
  transform: rotate(90deg);
}


/* ==================================================
   FAQ ANSWER
================================================== */

.faq-answer {
  padding: 0 16px 17px;
}

.faq-answer p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.65;
}


/* ==================================================
   BOTTOM NOTE
================================================== */

.faq-note {
  display: flex;
  align-items: flex-start;
  max-width: 880px;
  gap: 11px;
  margin: 24px auto 0;
  padding: 15px 17px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #f0f9ff;
}

.faq-note-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: #075985;
  background: #ffffff;
}

.faq-note-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.faq-note p {
  margin: 2px 0 0;
  color: #475569;
  font-size: 0.73rem;
  line-height: 1.55;
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 359px) {
  .faq-section {
    padding: 40px 14px;
  }

  .faq-header h2 {
    font-size: 1.6rem;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 14px;
  }

  .faq-answer {
    padding: 0 14px 15px;
  }
}


/* ==================================================
   TABLET
================================================== */

@media (min-width: 620px) {
  .faq-section {
    padding: 60px 24px;
  }

  .faq-highlights {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

  .faq-highlight {
    display: block;
  }

  .faq-highlight-icon {
    margin-bottom: 10px;
  }

  .faq-question {
    font-size: 0.92rem;
  }

  .faq-answer p {
    font-size: 0.82rem;
  }
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 960px) {
  .faq-section {
    padding: 76px 32px;
  }

  .faq-layout {
    grid-template-columns:
      minmax(280px, 0.72fr)
      minmax(0, 1.28fr);
    gap: 48px;
    align-items: start;
  }

  .faq-content {
    position: sticky;
    top: 100px;
  }

  .faq-header h2 {
    font-size: 2.45rem;
  }

  .faq-highlights {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .faq-highlight {
    display: flex;
  }

  .faq-highlight-icon {
    margin-bottom: 0;
  }

  .faq-item summary {
    min-height: 66px;
    padding: 18px 19px;
  }

  .faq-answer {
    padding: 0 19px 19px;
  }

  .faq-note {
    margin-top: 28px;
  }
}


/* ==================================================
   TOUCH DEVICES
================================================== */

@media (hover: none) {
  .faq-item:hover {
    border-color: #e2e8f0;
  }

  .faq-item[open]:hover {
    border-color: #7dd3fc;
  }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-toggle,
  .faq-line-vertical {
    transition: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-743af44 *//* =========================================================
   FINAL COMPACT BOOKING FORM CSS
   Replace all previous booking-form CSS with this code.

   Final locked dimensions:
   - Card width: 520px
   - Input/select height: 46px
   - Textarea height: 90px
   - Button height: 48px
   - Single-column layout on every device
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.booking-section {
  width: 100%;
  padding: 48px 16px;
  scroll-margin-top: 80px;
  background: #f8fafc;
}

.booking-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}


/* =========================================================
   FORM CARD
========================================================= */

.booking-card {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 12px 32px rgba(15, 23, 42, 0.08);
}


/* =========================================================
   HEADER
========================================================= */

.booking-header {
  width: 100%;
  max-width: 460px;
  margin: 0 auto 20px;
  text-align: center;
}

.booking-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 0 8px;
  padding: 5px 9px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  color: #075985;
  background: #f0f9ff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-eyebrow svg {
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.booking-header h2 {
  margin: 0;
  color: #0f172a;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.booking-intro {
  max-width: 440px;
  margin: 9px auto 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}


/* =========================================================
   FORM LAYOUT
========================================================= */

.booking-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
  width: 100%;
}

.booking-field,
.booking-submit-wrap,
.booking-status {
  min-width: 0;
  width: 100%;
}

.booking-field-full {
  grid-column: 1;
}


/* =========================================================
   LABELS
========================================================= */

.booking-field label {
  display: block;
  margin: 0 0 5px;
  color: #1e293b;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.booking-field label > span {
  color: #dc2626;
}

.booking-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.booking-label-row label {
  margin-bottom: 5px;
}

.booking-optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #64748b;
  background: #f1f5f9;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}


/* =========================================================
   INPUTS, SELECT AND TEXTAREA
========================================================= */

.booking-field input,
.booking-field select,
.booking-field textarea {
  display: block;
  width: 100%;
  margin: 0;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  color: #0f172a;
  background: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  outline: none;
  box-sizing: border-box;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.booking-field input,
.booking-field select {
  height: 46px;
  min-height: 46px;
  padding: 0 12px;
}

.booking-field textarea {
  height: 90px;
  min-height: 90px;
  max-height: 150px;
  padding: 11px 12px;
  line-height: 1.5;
  resize: vertical;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.booking-field input:hover,
.booking-field select:hover,
.booking-field textarea:hover {
  border-color: #94a3b8;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: #0284c7;
  box-shadow:
    0 0 0 3px rgba(2, 132, 199, 0.12);
}

.booking-field input[aria-invalid="true"],
.booking-field select[aria-invalid="true"],
.booking-field textarea[aria-invalid="true"] {
  border-color: #dc2626;
  background: #fffafa;
  box-shadow:
    0 0 0 3px rgba(220, 38, 38, 0.08);
}


/* =========================================================
   PHONE FIELD
========================================================= */

.booking-phone-field {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 46px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #ffffff;
  box-sizing: border-box;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.booking-phone-field:hover {
  border-color: #94a3b8;
}

.booking-phone-field:focus-within {
  border-color: #0284c7;
  box-shadow:
    0 0 0 3px rgba(2, 132, 199, 0.12);
}

.booking-phone-field:has(
  input[aria-invalid="true"]
) {
  border-color: #dc2626;
  background: #fffafa;
  box-shadow:
    0 0 0 3px rgba(220, 38, 38, 0.08);
}

.booking-phone-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  min-width: 50px;
  height: 44px;
  padding: 0 10px;
  border-right: 1px solid #e2e8f0;
  color: #334155;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  box-sizing: border-box;
}

.booking-phone-field input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 44px;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking-phone-field input:hover,
.booking-phone-field input:focus,
.booking-phone-field input[aria-invalid="true"] {
  border: 0;
  background: transparent;
  box-shadow: none;
}


/* =========================================================
   SELECT FIELD
========================================================= */

.booking-select-field {
  position: relative;
  width: 100%;
}

.booking-select-field select {
  padding-right: 40px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.booking-select-field svg {
  position: absolute;
  top: 50%;
  right: 12px;
  display: block;
  width: 16px;
  height: 16px;
  color: #64748b;
  pointer-events: none;
  transform: translateY(-50%);
}


/* =========================================================
   HELP TEXT, ERROR AND CHARACTER COUNT
========================================================= */

.booking-field-help,
.booking-error,
.booking-character-count {
  display: block;
  font-size: 10px;
  line-height: 1.4;
}

.booking-field-help {
  margin-top: 4px;
  color: #64748b;
}

.booking-error {
  min-height: 14px;
  margin-top: 3px;
  color: #b91c1c;
  font-weight: 650;
}

.booking-field-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.booking-character-count {
  flex: 0 0 auto;
  margin-top: 4px;
  color: #64748b;
}


/* =========================================================
   SUBMIT AREA
========================================================= */

.booking-submit-wrap {
  margin-top: 0;
  text-align: center;
}

.booking-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  min-height: 48px;
  margin: 0;
  padding: 0 18px;
  border: 0;
  border-radius: 9px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #0369a1 0%,
      #075985 100%
    );
  box-shadow:
    0 8px 20px rgba(7, 89, 133, 0.22);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-sizing: border-box;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.booking-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 11px 25px rgba(7, 89, 133, 0.28);
}

.booking-submit-btn:active {
  transform: translateY(0);
}

.booking-submit-btn:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.3);
  outline-offset: 3px;
}

.booking-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.booking-submit-text {
  display: inline-block;
}

.booking-submit-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.booking-submit-btn:hover .booking-submit-icon {
  transform: translateX(2px);
}

.booking-submit-loader {
  display: none;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: booking-spinner 700ms linear infinite;
}

.booking-submit-btn.is-loading
.booking-submit-loader {
  display: inline-block;
}

.booking-submit-btn.is-loading
.booking-submit-icon {
  display: none;
}

.booking-submit-note {
  max-width: 450px;
  margin: 7px auto 0;
  color: #64748b;
  font-size: 10px;
  line-height: 1.45;
}

.booking-privacy-note {
  max-width: 450px;
  margin: 4px auto 0;
  color: #64748b;
  font-size: 10px;
  line-height: 1.45;
}

.booking-privacy-note a {
  color: #0369a1;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-privacy-note a:hover {
  color: #075985;
}

@keyframes booking-spinner {
  to {
    transform: rotate(360deg);
  }
}


/* =========================================================
   FORM STATUS
========================================================= */

.booking-status {
  display: none;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.booking-status-success,
.booking-status-error {
  display: block;
}

.booking-status-success {
  border: 1px solid #86efac;
  color: #166534;
  background: #f0fdf4;
}

.booking-status-error {
  border: 1px solid #fecaca;
  color: #991b1b;
  background: #fef2f2;
}

.booking-status:focus {
  outline: none;
}


/* =========================================================
   HONEYPOT FIELD
========================================================= */

.booking-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .booking-section {
    padding: 36px 14px;
  }

  .booking-card {
    max-width: 520px;
    padding: 18px;
    border-radius: 14px;
  }

  .booking-header {
    margin-bottom: 18px;
  }

  .booking-header h2 {
    font-size: 25px;
  }

  .booking-intro {
    font-size: 12px;
  }

  .booking-form {
    gap: 12px;
  }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 359px) {
  .booking-section {
    padding: 30px 10px;
  }

  .booking-card {
    padding: 15px 12px;
    border-radius: 12px;
  }

  .booking-header {
    margin-bottom: 16px;
  }

  .booking-header h2 {
    font-size: 22px;
  }

  .booking-eyebrow {
    font-size: 9px;
  }

  .booking-field input,
  .booking-field select,
  .booking-phone-field {
    height: 44px;
    min-height: 44px;
  }

  .booking-phone-prefix,
  .booking-phone-field input {
    height: 42px;
    min-height: 42px;
  }

  .booking-field textarea {
    height: 82px;
    min-height: 82px;
  }

  .booking-submit-btn {
    height: 46px;
    min-height: 46px;
  }
}


/* =========================================================
   TABLET AND DESKTOP
========================================================= */

@media (min-width: 768px) {
  .booking-section {
    padding: 48px 24px;
  }

  .booking-card {
    max-width: 520px;
    padding: 22px;
  }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {
  .booking-field input:hover,
  .booking-field select:hover,
  .booking-field textarea:hover,
  .booking-phone-field:hover {
    border-color: #cbd5e1;
  }

  .booking-submit-btn:hover {
    transform: none;
    box-shadow:
      0 8px 20px rgba(7, 89, 133, 0.22);
  }

  .booking-submit-btn:hover
  .booking-submit-icon {
    transform: none;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .booking-field input,
  .booking-field select,
  .booking-field textarea,
  .booking-phone-field,
  .booking-submit-btn,
  .booking-submit-icon {
    transition: none;
  }

  .booking-submit-btn:hover,
  .booking-submit-btn:active {
    transform: none;
  }

  .booking-submit-btn:hover
  .booking-submit-icon {
    transform: none;
  }

  .booking-submit-loader {
    animation-duration: 1.5s;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-92a210d *//* =========================================================
   SECTION 12: CONTACT & SERVICE AVAILABILITY
   FINAL PRODUCTION CSS

   Business:
   KGN Refrigeration

   System:
   - No Google Maps dependency
   - No GMB dependency
   - Mobile-first
   - Compact premium design
   - Main container: 1180px
   - Blue primary colour
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.contact-location-section {
  width: 100%;
  padding: 48px 16px;
  scroll-margin-top: 80px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 100%
    );
}

.contact-location-container {
  width: min(100%, 1180px);
  margin-inline: auto;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.contact-location-header {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.contact-location-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 0 9px;
  padding: 6px 10px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  color: #075985;
  background: #f0f9ff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-location-eyebrow svg {
  display: block;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.contact-location-header h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.7rem, 6vw, 2.25rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.contact-location-intro {
  max-width: 680px;
  margin: 11px auto 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.65;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.contact-location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}


/* =========================================================
   SHARED CARD STYLES
========================================================= */

.contact-details-card,
.contact-map-card {
  width: 100%;
  min-width: 0;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.07);
}


/* =========================================================
   BUSINESS DETAILS CARD
========================================================= */

.contact-details-card {
  padding: 20px;
}

.contact-details-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.contact-details-heading-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  color: #0369a1;
  background: #e0f2fe;
}

.contact-details-heading-icon svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-details-heading-copy {
  min-width: 0;
}

.contact-details-label {
  margin: 0 0 3px;
  color: #0369a1;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-details-heading h3 {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}


/* =========================================================
   BUSINESS DETAIL LIST
========================================================= */

.contact-details-list {
  display: grid;
  width: 100%;
  margin: 16px 0 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 0;
  border-bottom: 1px solid #e2e8f0;
}

.contact-detail-item:first-child {
  padding-top: 0;
}

.contact-detail-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-detail-item-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: #0369a1;
  background: #f0f9ff;
}

.contact-detail-item-icon svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.contact-detail-item-content {
  min-width: 0;
  padding-top: 1px;
}

.contact-detail-label {
  display: block;
  margin-bottom: 3px;
  color: #64748b;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-detail-item p,
.contact-detail-item a {
  margin: 0;
  color: #1e293b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-detail-item a {
  color: #075985;
  font-weight: 800;
  text-decoration: none;
}

.contact-detail-item a:hover {
  color: #0369a1;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* =========================================================
   SERVICE DISCLOSURE
========================================================= */

.contact-service-disclosure {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 16px;
  padding: 11px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
}

.contact-service-disclosure-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: #0369a1;
}

.contact-service-disclosure-icon svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.contact-service-disclosure p {
  margin: 0;
  color: #64748b;
  font-size: 10px;
  line-height: 1.5;
}


/* =========================================================
   SERVICE COVERAGE CARD
========================================================= */

.contact-map-card,
.contact-coverage-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-map-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #e2e8f0;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 100%
    );
}

.contact-map-heading-copy {
  min-width: 0;
}

.contact-map-heading-copy > p {
  margin: 0 0 3px;
  color: #0369a1;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-map-heading h3 {
  margin: 0;
  color: #0f172a;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  text-wrap: balance;
}

.contact-coverage-heading-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #0369a1;
  background: #e0f2fe;
}

.contact-coverage-heading-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}


/* =========================================================
   COVERAGE CONTENT
========================================================= */

.contact-coverage-content {
  display: grid;
  gap: 18px;
  flex: 1 1 auto;
  padding: 18px;
}


/* =========================================================
   COVERAGE INTRO
========================================================= */

.contact-coverage-intro {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      #f0f9ff 0%,
      #ffffff 100%
    );
}

.contact-coverage-main-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #ffffff;
  background: #0369a1;
}

.contact-coverage-main-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-coverage-intro > div:last-child {
  min-width: 0;
}

.contact-coverage-intro h4 {
  margin: 0;
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-coverage-intro p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 11px;
  line-height: 1.55;
}


/* =========================================================
   REQUIRED INFORMATION
========================================================= */

.contact-coverage-requirements {
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
}

.contact-coverage-label {
  margin: 0 0 11px;
  color: #0369a1;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
}

.contact-coverage-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  background: #f8fafc;
}

.contact-coverage-item-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #075985;
  background: #bae6fd;
}

.contact-coverage-item-icon svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.contact-coverage-item p {
  margin: 0;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}


/* =========================================================
   SERVICE PROCESS
========================================================= */

.contact-service-process {
  display: grid;
  gap: 10px;
}

.contact-service-process-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
}

.contact-service-process-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  border-radius: 8px;
  color: #ffffff;
  background: #075985;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.contact-service-process-item > div {
  min-width: 0;
}

.contact-service-process-item h4 {
  margin: 0;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.contact-service-process-item p {
  margin: 3px 0 0;
  color: #64748b;
  font-size: 10px;
  line-height: 1.5;
}


/* =========================================================
   AVAILABILITY NOTE
========================================================= */

.contact-map-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: auto;
  padding: 12px 14px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.contact-map-note-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: #0369a1;
}

.contact-map-note-icon svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.contact-map-note p {
  margin: 0;
  color: #64748b;
  font-size: 10px;
  line-height: 1.5;
}


/* =========================================================
   FOCUS STATES
========================================================= */

.contact-detail-item a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(14, 165, 233, 0.32);
  outline-offset: 3px;
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 359px) {
  .contact-location-section {
    padding: 32px 10px;
  }

  .contact-location-header {
    margin-bottom: 20px;
  }

  .contact-location-header h2 {
    font-size: 23px;
  }

  .contact-location-intro {
    font-size: 11px;
  }

  .contact-details-card {
    padding: 15px 12px;
    border-radius: 12px;
  }

  .contact-map-card {
    border-radius: 12px;
  }

  .contact-details-heading {
    gap: 10px;
  }

  .contact-details-heading-icon {
    width: 38px;
    height: 38px;
  }

  .contact-map-heading {
    padding: 14px 12px;
  }

  .contact-map-heading h3 {
    font-size: 15px;
  }

  .contact-coverage-heading-icon {
    width: 36px;
    height: 36px;
  }

  .contact-coverage-content {
    gap: 14px;
    padding: 14px 12px;
  }

  .contact-coverage-intro {
    gap: 10px;
    padding: 12px;
  }

  .contact-coverage-main-icon {
    width: 36px;
    height: 36px;
  }

  .contact-coverage-requirements {
    padding: 12px;
  }

  .contact-service-process-item {
    padding: 10px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (min-width: 360px) and (max-width: 767px) {
  .contact-location-section {
    padding: 38px 14px;
  }

  .contact-location-header {
    margin-bottom: 24px;
  }

  .contact-location-header h2 {
    font-size: 26px;
  }

  .contact-location-intro {
    font-size: 12px;
  }

  .contact-details-card {
    padding: 18px;
    border-radius: 14px;
  }

  .contact-map-card {
    border-radius: 14px;
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 620px) {
  .contact-coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-service-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-service-process-item {
    flex-direction: column;
    gap: 9px;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  .contact-location-section {
    padding: 52px 24px;
  }

  .contact-location-header {
    margin-bottom: 30px;
  }

  .contact-location-layout {
    gap: 20px;
  }

  .contact-details-card {
    padding: 22px;
  }

  .contact-coverage-content {
    padding: 20px;
  }
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 960px) {
  .contact-location-section {
    padding: 58px 32px;
  }

  .contact-location-header {
    margin-bottom: 34px;
  }

  .contact-location-layout {
    grid-template-columns:
      minmax(300px, 0.78fr)
      minmax(0, 1.22fr);
    gap: 22px;
  }

  .contact-details-card {
    padding: 22px;
  }

  .contact-coverage-content {
    gap: 20px;
    padding: 22px;
  }

  .contact-coverage-intro {
    padding: 17px;
  }

  .contact-coverage-requirements {
    padding: 17px;
  }

  .contact-service-process-item {
    min-height: 118px;
  }
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {
  .contact-location-layout {
    grid-template-columns:
      minmax(320px, 0.8fr)
      minmax(0, 1.2fr);
  }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {
  .contact-detail-item a:hover {
    color: #075985;
    text-decoration: none;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .contact-detail-item a {
    scroll-behavior: auto;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ef949d6 *//* =========================================================
   SECTION 13: FINAL CONVERSION CTA
   FINAL PRODUCTION CSS

   System:
   - Mobile-first
   - Reusable
   - Compact premium layout
   - Blue primary colour
   - No WhatsApp styling
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.final-cta-section {
  width: 100%;
  padding: 48px 16px;
  scroll-margin-top: 80px;
  background:
    linear-gradient(
      180deg,
      #f8fafc 0%,
      #ffffff 100%
    );
}

.final-cta-container {
  width: min(100%, 1180px);
  margin-inline: auto;
}


/* =========================================================
   MAIN CTA CARD
========================================================= */

.final-cta-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  overflow: hidden;
  width: 100%;
  padding: 28px 20px;
  border: 1px solid rgba(186, 230, 253, 0.18);
  border-radius: 20px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #075985 0%,
      #0c4a6e 52%,
      #082f49 100%
    );
  box-shadow:
    0 20px 46px rgba(7, 89, 133, 0.22);
}


/* =========================================================
   DECORATIVE SHAPES
========================================================= */

.final-cta-shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-shape-one {
  top: -105px;
  right: -85px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.07);
}

.final-cta-shape-two {
  bottom: -135px;
  left: -105px;
  width: 285px;
  height: 285px;
  background: rgba(14, 165, 233, 0.12);
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.final-cta-content {
  align-self: center;
  min-width: 0;
}

.final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 11px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.final-cta-eyebrow svg {
  display: block;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.final-cta-content h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 7vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.final-cta-description {
  max-width: 680px;
  margin: 14px 0 0;
  color: #e0f2fe;
  font-size: 13px;
  line-height: 1.65;
}


/* =========================================================
   INFORMATION POINTS
========================================================= */

.final-cta-points {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.final-cta-point {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.final-cta-point-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #075985;
  background: #bae6fd;
}

.final-cta-point-icon svg {
  display: block;
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.final-cta-point p {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}


/* =========================================================
   ACTION CARD
========================================================= */

.final-cta-action-card {
  align-self: stretch;
  min-width: 0;
  padding: 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 16px 34px rgba(2, 22, 35, 0.19);
}

.final-action-label {
  margin: 0 0 5px;
  color: #0369a1;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.final-cta-action-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.final-action-text {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.55;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.final-action-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  padding: 10px 13px;
  border: 2px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.final-action-call {
  color: #ffffff;
  background: #075985;
}

.final-action-call:hover {
  background: #0c4a6e;
  box-shadow:
    0 10px 20px rgba(7, 89, 133, 0.22);
  transform: translateY(-1px);
}

.final-action-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  color: #075985;
  background: #ffffff;
}

.final-action-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.final-action-btn-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.final-action-btn-copy small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
}

.final-action-btn-copy strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}


/* =========================================================
   BOOKING FORM LINK
========================================================= */

.final-booking-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  padding: 9px 12px;
  border: 1px solid #bae6fd;
  border-radius: 9px;
  color: #0369a1;
  background: #f0f9ff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.final-booking-link svg {
  display: block;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.final-booking-link:hover {
  border-color: #7dd3fc;
  background: #e0f2fe;
  transform: translateY(-1px);
}


/* =========================================================
   CONFIRMATION NOTE
========================================================= */

.final-action-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.final-action-note svg {
  display: block;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin-top: 1px;
  color: #0369a1;
  fill: currentColor;
}

.final-action-note p {
  margin: 0;
  color: #64748b;
  font-size: 10px;
  line-height: 1.5;
}


/* =========================================================
   FOCUS STATES
========================================================= */

.final-action-btn:focus-visible,
.final-booking-link:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.36);
  outline-offset: 3px;
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 359px) {
  .final-cta-section {
    padding: 34px 10px;
  }

  .final-cta-card {
    gap: 20px;
    padding: 24px 14px;
    border-radius: 16px;
  }

  .final-cta-content h2 {
    font-size: 25px;
  }

  .final-cta-description {
    font-size: 12px;
  }

  .final-cta-action-card {
    padding: 18px 12px;
    border-radius: 14px;
  }

  .final-cta-action-card h3 {
    font-size: 18px;
  }

  .final-action-btn {
    padding-inline: 10px;
  }

  .final-action-icon {
    width: 34px;
    height: 34px;
  }

  .final-action-btn-copy strong {
    font-size: 12px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (min-width: 360px) and (max-width: 619px) {
  .final-cta-section {
    padding: 40px 14px;
  }

  .final-cta-card {
    padding: 28px 18px;
    border-radius: 18px;
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 620px) {
  .final-cta-section {
    padding: 54px 24px;
  }

  .final-cta-card {
    gap: 28px;
    padding: 36px 30px;
  }

  .final-cta-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .final-cta-point {
    align-items: flex-start;
  }

  .final-cta-action-card {
    max-width: 560px;
    padding: 24px 22px;
  }
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 960px) {
  .final-cta-section {
    padding: 64px 32px;
  }

  .final-cta-card {
    grid-template-columns:
      minmax(0, 1.28fr)
      minmax(320px, 0.72fr);
    gap: 42px;
    align-items: center;
    padding: 44px 42px;
    border-radius: 22px;
  }

  .final-cta-content h2 {
    font-size: clamp(2.2rem, 4vw, 2.85rem);
  }

  .final-cta-description {
    font-size: 14px;
  }

  .final-cta-points {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
  }

  .final-cta-action-card {
    width: 100%;
    max-width: none;
    padding: 26px 22px;
  }
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {
  .final-cta-card {
    grid-template-columns:
      minmax(0, 1.32fr)
      minmax(340px, 0.68fr);
    gap: 48px;
    padding: 48px 46px;
  }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {
  .final-action-call:hover {
    background: #075985;
    box-shadow: none;
    transform: none;
  }

  .final-booking-link:hover {
    border-color: #bae6fd;
    background: #f0f9ff;
    transform: none;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .final-action-btn,
  .final-booking-link {
    transition: none;
  }

  .final-action-btn:hover,
  .final-booking-link:hover {
    transform: none;
  }
}/* End custom CSS */