/* =========================================
   1. GLOBAL FOUNDATION
   ========================================= */
:root {
  --primary-blue: #2563eb;
  --dark-navy: #0f172a;
  --text-main: #334155;
  --bg-light: #f8fafc;

    --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 120px;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background: var(--bg-light);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark-navy);
  line-height: 1.5;
}

/* Premium Background Depth */
body::before, body::after {
  content: "";
  position: fixed;
  width: 800px;
  height: 800px;
  z-index: -1;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
}

body::before { 
  top: -200px; 
  left: -200px; 
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%); 
}

body::after { 
  bottom: -200px; 
  right: -200px; 
  background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%); 
}

.generated-website {
  padding-top: 96px;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 96px;
  box-sizing: border-box;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 8%;

  background: #000;

  border-bottom: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 12px 32px rgba(0,0,0,0.55),
    inset 0 -1px 0 rgba(255,255,255,0.06);
}


.navbar.scrolled {
  background: #000;

  box-shadow:
    0 12px 32px rgba(0,0,0,0.55),
    inset 0 -1px 0 rgba(255,255,255,0.06);
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}





.nav-links button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #2563eb;
  transition: width 0.3s ease;
}

.nav-links button:hover::after {
  width: 100%;
}

.logo {
  height: 56px;     /* bigger */
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links button {
  position: relative;
  margin-left: 28px;
  padding: 12px 24px;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.nav-links button:hover {
  background: white;
  color: #0f172a;
  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px 80px 80px;
}

.section-title {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.15;

  margin-bottom: 80px;

  color: #0f172a;
}

.section-subtitle {
  font-size: 20px;
  color: #64748b;
  max-width: 750px;
  margin: 0 auto 80px auto;
  text-align: center;
}

.content-block {
  display: flex;
  align-items: center; /* This keeps the text centered vertically relative to the image */
  gap: 100px;
  margin-bottom: var(--space-xl);
  padding: 40px 0;
  transition: transform 0.4s ease;
}

.content-block.reverse {
  flex-direction: row-reverse;
}

.text-column {
  flex: 1.6;
  max-width: 720px;
  /* Ensure paragraphs inside the column have consistent spacing */
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.text-column p {
  margin-bottom: 24px; /* Space between paragraphs next to the image */
}

.text-column p:last-child {
  margin-bottom: 0;
}

.image-column {
  flex: 1;          /* smaller than text */
}

.image-column img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 28px;

  box-shadow:
    0 60px 120px rgba(15,23,42,0.10),
    0 20px 50px rgba(15,23,42,0.08);

  transform: scale(1.08);
  opacity: 0;

  transition:
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s ease,
    filter 0.6s ease;
}

.reveal-visible .image-column img {
  transform: scale(1);
  opacity: 1;
}

.image-column img:hover {
  transform: scale(1.04);

  box-shadow:
    0 60px 120px rgba(15,23,42,0.18),
    0 20px 50px rgba(15,23,42,0.12);
}

ul {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #334155;
  font-size: 17px;
}

li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.text-content p {
  margin-bottom: 16px;
}

.text-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.text-content li {
  margin-bottom: 8px;
}


.content-block.full-width {
  justify-content: flex-start;
}

.content-block.full-width .text-content {
  max-width: 100%;
}


.sub-heading {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  margin-top: 20px;
}

.text-column p {
  margin-bottom: 12px;
}




.hero-subtext {
  text-align: center;
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 80px auto;
  color: #475569;
}



html {
  scroll-behavior: smooth;
}



.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-name {
  font-size: 24px;
  font-weight: 800;

  color: #ffffff;

  letter-spacing: 1.2px;
  text-transform: uppercase;

  position: relative;

  background: linear-gradient(to bottom, #ffffff 40%, #9ca3af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: opacity 0.3s ease;
}

.brand-name:hover {
  opacity: 0.8;
}

.logo {
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

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

.brand img {
  background: white;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.sub-heading {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
  margin-top: 40px;
}

.text-column p {
  font-size: 18px;
  line-height: 2.05;
  color: #334155;

  letter-spacing: 0.15px;

  margin-bottom: 32px;

  font-weight: 400;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  padding: 180px 0;
  position: relative;
}

section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(248,250,252,0) 0%,
    rgba(248,250,252,1) 100%
  );
}
section:last-of-type {
  border-bottom: none;
}

.auto-heading {
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;   /* small gap to paragraph */
  color: #0f172a;
}

.text-only-paragraph {
  font-size: 19px;
  line-height: 1.9;

  max-width: 950px;
  margin-left: auto;
  margin-right: auto;

  color: #334155;

  letter-spacing: 0.2px;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.auto-heading {
  margin-top: 40px;
  margin-bottom: 20px;
}


/* =========================
   HERO BANNER
========================= */

.hero-banner {
  width: 100%;
  height: 90vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xl);
  overflow: hidden;
  background: #0f172a;
  isolation: isolate;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(1.03);
  will-change: transform;
  backface-visibility: hidden;
}

.hero-slide-current {
  z-index: 1;
}

.hero-slide-next {
  z-index: 2;
  transform: translate3d(100%, 0, 0) scale(1.03);
}

.hero-slide-exit {
  animation: heroSlideOut 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.hero-slide-enter {
  animation: heroSlideIn 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes heroSlideOut {
  from {
    transform: translate3d(0, 0, 0) scale(1.03);
  }
  to {
    transform: translate3d(-100%, 0, 0) scale(1.03);
  }
}

@keyframes heroSlideIn {
  from {
    transform: translate3d(100%, 0, 0) scale(1.03);
  }
  to {
    transform: translate3d(0, 0, 0) scale(1.03);
  }
}

.hero-overlay {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 50%, rgba(37, 99, 235, 0.18), transparent 50%),
    linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.96) 0%,
      rgba(15, 23, 42, 0.84) 42%,
      rgba(15, 23, 42, 0.28) 75%,
      rgba(15, 23, 42, 0.08) 100%
    );
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
}




.hero-title {
  font-size: clamp(48px, 8vw, 82px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;

  margin: 0;

  display: block;
  width: 100%;
  text-align: left;

  background: linear-gradient(to bottom, #ffffff 30%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.2));
}


.hero-description {
  font-size: 22px;
  line-height: 1.6;

  color: rgba(255,255,255,0.85);

  max-width: 560px;
  width: 100%;

  margin: 0;
  text-align: left;

  font-weight: 400;
  letter-spacing: 0.2px;
  opacity: 0.95;
}


.hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn {
  padding: 14px 28px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.secondary-btn {
  padding: 14px 28px;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.1);
}

.full-width-hero {
  width: 100%;
  margin-left: 0;
}



.site-footer-shell {
  width: calc(100% - 16px);
  margin: 100px auto 0;
  background: #ffffff;
}

.site-footer {
  background: linear-gradient(90deg, #23293f 0%, #31425a 100%);
  min-height: 416px;
  display: flex;
  align-items: center;
  padding: 92px 6.8% 88px;
  box-sizing: border-box;
}

.site-footer-main {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) minmax(200px, 1fr) minmax(280px, 1.25fr);
  align-items: center;
  column-gap: 80px;
}

.site-footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.site-footer-logo {
  max-width: 210px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.site-footer-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-footer-title {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer-list,
.site-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer-link,
.site-footer-link:visited,
.site-footer-contact p {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  opacity: 0.96;
  overflow-wrap: anywhere;
  word-break: break-word;
}


.site-footer-link {
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
}

.site-footer-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer-contact p {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}


.site-footer-contact span {
  font-weight: 700;
}

.site-footer-bottom {
  background: #ffffff;
  padding: 16px 12px 18px;
  text-align: center;
}

.site-footer-bottom p {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .site-footer {
    min-height: auto;
    padding: 32px 20px;
  }

  .site-footer-main {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .site-footer-brand {
    justify-content: flex-start;
    min-height: auto;
  }

  .site-footer-logo {
    max-width: 120px;
  }
}





.hero-content {
  max-width: 620px;
  width: 100%;

  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  text-align: left;

  gap: 12px;

  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-banner::after {
  content: "";
  position: absolute;
  right: -100px;
  top: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.4), transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}





.auto-heading {
  font-size: 30px;
  font-weight: 600;

  text-align: center;

  max-width: 950px;
  margin: 40px auto 20px auto;
  letter-spacing: -0.02em;
  line-height: 1.2;

  color: #0f172a;

  left: 50%;
  transform: translateX(-50%);

  padding-bottom: 8px;
  
}

.auto-heading::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -10px;

  width: 60px;
  height: 4px;

  background: linear-gradient(
    90deg,
    #34d399,
    #10b981
  );

  border-radius: 6px;

  transform: translateX(-50%);
}


.content-block {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.content-block:hover .text-column {
  transform: translateY(-4px);
  transition: transform 0.4s ease;
}



@keyframes fadeSection {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================
   PROFESSIONAL SCROLL REVEAL EFFECT
========================================= */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text enters slightly faster */
.text-column {
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.8s ease;
}

/* Image enters slightly slower */
.image-column {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 1s ease;
}

/* Elegant image entrance */
.image-column img {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.6s ease;
}



/* Slight stagger effect */


.parallax-wrapper {
  transition: transform 0.2s linear;
  will-change: transform;
}



.image-column img:hover {
  filter: brightness(1) contrast(1.08);
}




/* =========================================
   ELEGANT CONTACT CARDS 2.0
========================================= */

.contact-cards-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
  flex-wrap: wrap;
  position: relative;
}

/* Softer background depth */
.contact-cards-container::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 70%);
  filter: blur(140px);
  z-index: -1;
  top: -200px;
}

/* Card */
.contact-card {
  position: relative;
  overflow: hidden;

  background: #ffffff;
  padding: 60px 45px;
  border-radius: 28px;
  width: 340px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(15,23,42,0.06);

  box-shadow:
    0 40px 80px rgba(15,23,42,0.08);

  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Elegant top accent */
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37,99,235,0.8),
    rgba(99,102,241,0.8),
    transparent
  );
}

/* Hover interaction */
.contact-card:hover {
  transform: translateY(-14px);
  box-shadow:
    0 60px 120px rgba(15,23,42,0.12);
}



/* Title */
.contact-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.2px;
}

/* Content */
.contact-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  max-width: 260px;
}


/* =========================================
   CONTACT PAGE LAYOUT FIX
========================================= */

.contact-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.contact-row.center {
  justify-content: center;
}

.contact-row.center .contact-card {
  width: 500px;
  max-width: 90%;
}


.build-btn {

  margin-left: 20px;

  padding: 10px 22px;

  background: linear-gradient(
    90deg,
    #2563eb,
    #1d4ed8
  );

  color: white;

  border: none;

  border-radius: 8px;

  font-weight: 600;

  cursor: pointer;

  transition: all 0.25s ease;
}

.build-btn:hover {

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(37,99,235,0.35);

}


/* =========================
   GET IN TOUCH FORM STYLE
========================= */

.contact-form-wrapper {
  max-width: 600px;
  margin: 80px auto;
  padding: 40px 30px 70px;
  background: #f8fafc;
  border: 2px solid #cbd5f5;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #0f172a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  outline: none;
  background: #ffffff;
  transition: all 0.25s ease;
}

.contact-form input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

/* 🔥 FLOATING BUTTON (IMPORTANT PART) */
.contact-form button {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  
  padding: 12px 50px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(to right, #2563eb, #1e3a8a);
  color: white;
  font-weight: 500;
  cursor: pointer;
  font-size: 15px;

  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
  transition: all 0.25s ease;
}

.contact-form button:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 14px 25px rgba(37, 99, 235, 0.35);
}

@media (max-width: 1024px) {
  .section-container {
    padding: 0 40px 64px 40px;
  }

  .content-block {
    gap: 48px;
  }

  section {
    padding: 120px 0;
  }

  .hero-banner {
    min-height: 560px;
  }

  .hero-overlay {
    padding: 0 40px;
  }

  .hero-title {
    font-size: clamp(40px, 7vw, 64px);
  }

  .hero-description {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .section-container {
    padding: 0 20px 48px 20px;
  }

  section {
    padding: 80px 0;
  }

  .content-block,
  .content-block.reverse {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    margin-bottom: 64px;
    padding: 20px 0;
  }

  .text-column,
  .image-column {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }

  .text-column p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .text-only-paragraph {
    font-size: 16px;
    line-height: 1.75;
  }

  .auto-heading {
    font-size: 26px;
    max-width: 100%;
    margin: 24px auto 18px auto;
    padding: 0 0 8px;
    left: auto;
    transform: none;
    position: relative;
  }

  .image-column img {
    max-height: none;
    border-radius: 20px;
    transform: none;
    opacity: 1;
  }

    .hero-banner {
    height: 640px;
    min-height: 640px;
    margin-bottom: 56px;
    background: #0f172a;
  }

  .hero-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: none;
  }

  .hero-overlay {
    height: 100%;
    padding: 0 20px;
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.78) 0%,
      rgba(15, 23, 42, 0.60) 55%,
      rgba(15, 23, 42, 0.42) 100%
    );
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    padding-top: 110px;
    padding-bottom: 40px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.08;
    max-width: 78%;
  }

  .hero-description {
    font-size: 18px;
    max-width: 78%;
  }


   .site-footer-shell {
    width: 100%;
    margin-top: 48px;
  }

  .site-footer {
    padding: 32px 16px;
  }

  .site-footer-title {
    margin: 0 0 12px;
    font-size: 18px;
  }

  .site-footer-list,
  .site-footer-contact {
    gap: 8px;
  }

  .site-footer-link,
  .site-footer-link:visited,
  .site-footer-contact p {
    font-size: 15px;
    line-height: 1.5;
  }


  .site-footer-main {
    row-gap: 28px;
  }

  .site-footer-link,
  .site-footer-link:visited,
  .site-footer-contact p {
    font-size: 16px;
  }

  .contact-card {
    width: 100%;
    max-width: 100%;
    padding: 36px 24px;
  }

  .contact-form-wrapper {
    margin: 56px auto;
    padding: 28px 18px 70px;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 0 14px 36px 14px;
  }

  section {
    padding: 64px 0;
  }

  .auto-heading {
    font-size: 22px;
  }

  .text-column p,
  .text-only-paragraph {
    font-size: 15px;
    line-height: 1.7;
  }

    .hero-banner {
    height: 620px;
    min-height: 620px;
    background: #0f172a;
  }

  .hero-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: none;
  }

  .hero-overlay {
    height: 100%;
    padding: 0 16px;
  }

  .hero-content {
    width: 100%;
    padding-top: 96px;
    padding-bottom: 32px;
  }

  .hero-title {
    font-size: clamp(28px, 11vw, 40px);
    max-width: 82%;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.65;
    max-width: 82%;
  }


  .contact-form button {
    width: calc(100% - 32px);
    padding: 12px 20px;
  }

    .site-footer-shell {
    margin-top: 36px;
  }

  .site-footer {
    padding: 24px 14px;
  }

  .site-footer-main {
    row-gap: 18px;
  }

  .site-footer-logo {
    max-width: 110px;
  }

  .site-footer-title {
    margin: 0 0 10px;
    font-size: 17px;
  }

  .site-footer-link,
  .site-footer-link:visited,
  .site-footer-contact p {
    font-size: 14px;
    line-height: 1.45;
  }

  .site-footer-bottom {
    padding: 12px 10px 14px;
  }

  .site-footer-bottom p {
    font-size: 14px;
  }

}
