/* 
    Nortex Digital - Premium Stylesheet
    Inspirado em Stripe, Linear, Apple e Vercel
*/

:root {
    --primary-green: #319e29;
    --primary-green-hover: #68c75b;
    --secondary-orange: #FF7B00;
    --secondary-orange-hover: #F19800;
    --dark-bg: #0a0a0a;
    --dark-card: #161616;
    --light-bg: #ffffff;
    --text-muted: #888888;
    --font-main: 'Cormorant Garamond', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Utilities */
.fw-extrabold { font-weight: 600; }
.tracking-tight { letter-spacing: -0.02em; }
.text-primary-green { color: var(--primary-green); }
.text-secondary-orange { color: var(--secondary-orange); }


/* Section Padding */
.section-padding {
    padding: 120px 0;
}

.mb-100 {
    margin-bottom: 100px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 30px;
    opacity: .82;
}
.navbar-brand {
    opacity: .78;
    transition: opacity .3s ease;
}

.navbar-brand:hover {
    opacity: 1;
}

.navbar.scrolled {
    padding: 12px 0;
    background-color: rgba(10, 10, 10, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 10px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary-green) !important;
}

.nav-cta {
    color: rgba(255,255,255,.62);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .02em;
    transition: opacity .3s ease;
}

.nav-cta:hover {
    opacity: 1;
    color: #41A632;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--primary-green-hover);
    border-color: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(49, 158, 41, 0.2);
}

.btn-secondary{
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
    color: #ffffff;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: var(--secondary-orange-hover);
    border-color: var(--secondary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 123, 0, 0.2);
}


.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
}

/* Hero Section */
/* ─────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────── */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding-left: 7vw;
}
.hero-headline {
    margin: 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(72px, 8vw, 124px);

    font-weight: 300;

    line-height: 0.88;

    letter-spacing: -0.05em;

    color: #f5f5f2;

    text-shadow:
        0 4px 30px rgba(0,0,0,0.35),
        0 20px 80px rgba(0,0,0,0.45);
}

.hero-headline .line {
    display: block;
}

.hero-headline .line {
    display: block;
}

.hero-headline .accent {
    color: #41A632;

    font-style: italic;

    font-weight: 400;
}

.hero-subheadline {
    margin-top: 38px;

    max-width: 540px;

    font-size: 18px;

    font-weight: 300;

    line-height: 1.75;

    letter-spacing: -0.01em;

    color: rgba(255,255,255,0.64);
}

.hero-label {
    display: inline-block;

    margin-bottom: 32px;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 0.28em;

    text-transform: uppercase;

    color: rgba(255,255,255,0.48);
}

.hero-actions {
    margin-top: 44px;
}

.hero-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 62px;
    padding: 0 38px;

    border-radius: 999px;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.02)
        );

        /* background: rgba(12,12,12,0.82); */

    border: 1px solid rgba(255,255,255,0.10);

    backdrop-filter: blur(14px);

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

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        transform .4s cubic-bezier(.16,1,.3,1),
        background .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;

    overflow: hidden;
}

.hero-btn:hover {

    transform: translateY(-2px);

    border-color: rgba(65,166,50,0.22);

    background:
        linear-gradient(
            to bottom,
            rgba(65,166,50,0.10),
            rgba(65,166,50,0.03)
        );

    box-shadow:
        0 10px 40px rgba(0,0,0,0.35),
        0 0 30px rgba(65,166,50,0.08);
}

.hero-btn::before {

    content: '';

    position: absolute;

    inset: 1px;

    border-radius: inherit;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0.04),
            transparent
        );

    pointer-events: none;
}

.line-gap {
    margin-top: 28px;
}
/* ─────────────────────────────────────────────
   IMAGEM FULLSCREEN FIXA
───────────────────────────────────────────── */

.hero-bg {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100vh;

  background-image:
    linear-gradient(
      to right,
      rgba(4,4,4,0.88) 0%,
      rgba(4,4,4,0.72) 35%,
      rgba(4,4,4,0.45) 60%,
      rgba(4,4,4,0.30) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.10) 40%,
      rgba(0,0,0,0.55) 100%
    ),
url('../img/hero-boat-ws.webp');

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

  z-index: -3;

  transform: scale(1.03);

  will-change: transform;
}

/* ─────────────────────────────────────────────
   OVERLAY CINEMÁTICO
───────────────────────────────────────────── */

.hero-bg::after {
  content: '';

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(255,255,255,0.03) 0%,
      transparent 60%
    );

  mix-blend-mode: soft-light;

  pointer-events: none;
}

/* ─────────────────────────────────────────────
   FADE PARA A PRÓXIMA SECTION
───────────────────────────────────────────── */

.hero::after {
  content: '';

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 240px;

  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0) 0%,
    rgba(8,8,8,0.4) 40%,
    rgba(8,8,8,0.82) 75%,
    #080808 100%
  );

  z-index: 2;

  pointer-events: none;
}

/* ─────────────────────────────────────────────
   CONTEÚDO HERO
───────────────────────────────────────────── */

/* .hero-content {
  position: relative;
  z-index: 5;
} */

.hero-content {
    position: relative;
    z-index: 5;

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

    margin-top: -40px;
}

/* ─────────────────────────────────────────────
   CONTEÚDO DAS OUTRAS SECTIONS
───────────────────────────────────────────── */


.about-section {

    position: relative;

    padding: 180px 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(65,166,50,0.06),
            transparent 40%
        ),
        #080808;

    overflow: hidden;
}

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 120px;

    align-items: center;
}

.about-label {

    display: inline-block;

    margin-bottom: 32px;

    font-size: 11px;

    letter-spacing: .28em;

    text-transform: uppercase;

    color: rgba(255,255,255,.42);
}

.about-title {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(54px, 5vw, 82px);

    font-weight: 300;

    line-height: .95;

    letter-spacing: -.04em;

    color: #f5f5f2;

    margin-bottom: 38px;
}

.about-text {

    max-width: 520px;

    font-size: 18px;

    line-height: 1.9;

    color: rgba(255,255,255,.58);

    margin-bottom: 46px;

    
}

.about-points {

    display: flex;

    flex-direction: column;

    gap: 30px;

    margin-top: 54px;
}

.about-points span {

    position: relative;

    display: block;

    padding-left: 22px;

    font-size: 17px;

    line-height: 1.6;

    letter-spacing: -.01em;

    color: rgba(255,255,255,.74);

    transition:
        color .3s ease,
        transform .3s ease;
}

.about-points span:hover {

    color: rgba(255,255,255,.98);

    transform: translateX(4px);
}
.about-points span::before {

    content: '';

    position: absolute;

    left: 0;
    top: 14px;

    width: 10px;
    height: 2px;

    /* background: rgba(65,166,50,.72); */
    background: #fafafa;
}

/* ─────────────────────────────
   ABOUT VISUAL
───────────────────────────── */

.about-visual {

    position: relative;

    display: flex;

    justify-content: flex-end;

    align-items: flex-start;

    padding-top: 40px;
}

/* glow atmosférico */

.about-visual::before {

    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    background:
        radial-gradient(
            circle,
            rgba(65,166,50,.06),
            transparent 72%
        );

    filter: blur(80px);

    z-index: 0;
}

/* imagem */

.about-visual img {

    position: relative;

    z-index: 2;

    width: 122%;

    max-width: none;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    border-radius: 34px;

    opacity: .9;

    transform:
        translateX(6%);

}

/* fade cinematográfico */

.about-visual::after {

    content: '';

    position: absolute;

    inset: 12% 0 12% 12%;

    border-radius: 34px;
    
    pointer-events: none;

    z-index: 3;
}


.services-section {

   position: relative;

    padding: 180px 0;

    overflow: hidden;

    isolation: isolate;

    background:
        linear-gradient(
            to bottom,
            rgba(5,5,5,.94),
            rgba(8,8,8,.96)
        );


}

.services-section::before {

    content: '';

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            to bottom,
            rgba(0,0,0,.08),
            rgba(0,0,0,.18)
        ),

        radial-gradient(
            circle at top right,
            rgba(65,166,50,.04),
            transparent 28%
        ),

        url('../img/services-ws.webp');

    background-size: cover;

    background-position: center bottom;

    background-repeat: no-repeat;

    opacity: .42;

    filter:
        brightness(.88)
        saturate(.9);

    transform: scale(1.02);

    z-index: 0;
}





/* HEADER */

/* .services-header {

    max-width: 760px;

    margin-bottom: 90px;
} */


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(320px, 460px));

    justify-content: center;

    gap: 24px;

    margin-top: 72px;
}

.services-header,
.services-grid {

    position: relative;

    z-index: 2;
}

.services-label {

    display: inline-block;

    margin-bottom: 24px;

    font-size: 12px;

    letter-spacing: .28em;

    text-transform: uppercase;

    color: rgba(255,255,255,.45);
}

.services-title {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(54px, 6vw, 92px);

    line-height: .95;

    letter-spacing: -0.04em;

    color: #f5f5f5;

    margin-bottom: 32px;
}

.services-description {

    max-width: 620px;

    font-size: 20px;

    line-height: 1.8;

    color: rgba(255,255,255,.58);
}

/* GRID */



/* CARD */

.service-card {

    position: relative;

    padding: 30px;

    min-height: 220px;

    border-radius: 30px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.018),
            rgba(255,255,255,.008)
        );

    border:
        1px solid rgba(255,255,255,.06);

    backdrop-filter: blur(12px);

    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        background .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

/* TOP LINE DETAIL */

.service-card::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.18),
            transparent
        );
}

/* HOVER */

.service-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(255,255,255,.12);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.028),
            rgba(255,255,255,.012)
        );

    box-shadow:
        0 24px 60px rgba(0,0,0,.22);
}

/* ICON */

.service-icon {

    position: relative;

    width: 36px;
    height: 36px;

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

    margin-bottom: 28px;

    font-size: 14px;

    /* color:
        rgba(255,255,255,.72);

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    background:
        rgba(255,255,255,.02);

    backdrop-filter: blur(10px); */
}

/* TITLE */

.service-card h3 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 34px;

    font-weight: 500;

    line-height: .98;

    letter-spacing: -.03em;

    color: #f5f5f3;

    margin-bottom: 18px;

    max-width: 280px;
}

/* TEXT */

.service-card p {

    font-family:
        'Poppins',
        sans-serif;

    font-size: 14px;

    line-height: 1.85;

    letter-spacing: .01em;

    color:
        rgba(255,255,255,.48);

    max-width: 92%;
}

/* MICRO INTERACTIONS */

.service-card:hover h3 {

    color: #ffffff;
}

.service-card:hover .service-icon {

    border-color:
        rgba(255,255,255,.16);

    background:
        rgba(255,255,255,.04);

    color:
        rgba(255,255,255,.92);
}




/* contato */

.contact-section {

    position: relative;

    padding: 180px 0;

    background:
        linear-gradient(
            to bottom,
            #050505,
            #030303
        );

    overflow: hidden;
}

.contact-section::before {

    content: '';

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(65,166,50,.05),
            transparent 35%
        );

    pointer-events: none;
}

/* GRID */

.contact-grid {

    display: grid;

    grid-template-columns:
        1fr
          minmax(520px, 640px);

    gap: 120px;

    align-items: center;
}

/* LEFT */

.contact-label {

    display: inline-block;

    margin-bottom: 26px;

    font-size: 12px;

    letter-spacing: .28em;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.42);
}

.contact-title {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: clamp(46px, 5vw, 72px);

    line-height: .96;

    letter-spacing: -.05em;

    color: #f5f5f3;

    margin-bottom: 34px;

  
max-width: 620px;
}

.contact-description {

    max-width: 520px;

    font-size: 18px;

    line-height: 1.9;

    color:
        rgba(255,255,255,.54);

    margin-bottom: 54px;
}

/* ITEMS */

.contact-items {

    display: flex;

    flex-direction: column;

    gap: 28px;
}

.contact-item {

    display: flex;

    align-items: center;

    gap: 18px;

    text-decoration: none;
}

   .contact-line {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.18);

    margin-top: 2px;

    flex-shrink: 0;
}


.contact-item small {

    display: block;

    margin-bottom: 6px;

    font-size: 11px;

    letter-spacing: .18em;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.36);
}

.contact-item strong {

    font-size: 18px;

    font-weight: 500;

    color:
        rgba(255,255,255,.86);
}

/* FORM */

.contact-form-wrap {

    position: relative;

    padding: 44px;

    border-radius: 34px;

 
background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.045),
        rgba(255,255,255,.018)
    );
    border:
        
           1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(14px);
}

/* TOP LINE */

.contact-form-wrap::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.18),
            transparent
        );
}

/* ROW */

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

/* GROUP */

.form-group {

    margin-bottom: 20px;
}

.form-group label {

    display: block;

    margin-bottom: 12px;

    font-size: 11px;

    letter-spacing: .16em;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.42);
}

/* INPUTS */

.contact-form input,
.contact-form textarea {

    width: 100%;

    border: none;

    outline: none;

    border-radius: 18px;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.06);

    color:
        rgba(255,255,255,.88);

    padding: 0 20px;

    font-size: 15px;

    transition:
        border-color .3s ease,
        background .3s ease;
}

.contact-form input {

    height: 58px;
}

.contact-form textarea {

    min-height: 170px;

    padding-top: 18px;

    resize: none;
}

/* FOCUS */

.contact-form input:focus,
.contact-form textarea:focus {

    border-color:
        rgba(255,255,255,.14);

    background:
        rgba(255,255,255,.05);
}

/* BUTTON */

.contact-btn {

    width: 100%;

    height: 62px;

    margin-top: 10px;

    border: none;

    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.03)
        );

    border:
        1px solid rgba(255,255,255,.08);

    color: white;

    font-size: 12px;

    letter-spacing: .14em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.contact-btn:hover {

    transform:
        translateY(-2px);

    border-color:
        rgba(255,255,255,.16);

    background:
        rgba(255,255,255,.08);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */

.footer {

    padding: 90px 0 34px;

   background:
    linear-gradient(
        to bottom,
        #050505,
        #0a0a0a
    );

    border-top:
        1px solid rgba(255,255,255,.05);

         box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04);
}

.footer::before {

    content: '';

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at left bottom,
            rgba(65,166,50,.035),
            transparent 30%
        );

    pointer-events: none;
}

.footer-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 40px;
}

.footer-brand {

    max-width: 420px;
}

.footer-logo {

    width: 100px;

    margin-bottom: 22px;

    opacity: .96;
}

.footer-brand p {

    font-size: 16px;

    line-height: 1.9;

    color:
        rgba(255,255,255,.46);
}

.footer-nav {

    display: flex;

    gap: 28px;
}

.footer-nav a {

    font-size: 14px;

    text-decoration: none;

    color:
        rgba(255,255,255,.52);

    transition: color .3s ease;
}

.footer-nav a:hover {

    color: white;
}

.footer-bottom {

    margin-top: 54px;

    padding-top: 22px;

    border-top:
        1px solid rgba(255,255,255,.05);

    font-size: 12px;

    letter-spacing: .08em;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.26);
}



/* ─────────────────────────────────────────────
   MOBILE
───────────────────────────────────────────── */


/* Mobile Adjustments */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    .display-2 {
        font-size: 3rem;
    }
    .image-stack {
        margin-top: 50px;
    }

     .services-grid {

        grid-template-columns: 1fr;
    }

    .service-card {

        min-height: auto;
    }

    .services-title {

        font-size: 62px;
    }

    .about-grid {

        grid-template-columns: 1fr;

        gap: 80px;
    }

    .about-visual {

        justify-content: center;

        align-items: center;

        margin-top: -10px;
    }

    .about-visual img {

        width: 100%;

        max-width: 100%;

        aspect-ratio: auto;

        transform: none;

        border-radius: 28px;

        opacity: .92;

        transform:
        scale(1.20)
        translateY(-6px);
    }

    .about-visual::after {

        inset: 0;

        border-radius: 28px;

       
    }

    .about-visual::before {

        width: 260px;
        height: 260px;

        right: 50%;
        top: 50%;

        transform:
            translate(50%, -50%);

        opacity: .6;
    }

     .services-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .service-card {

        min-height: auto;

        padding: 26px;
    }

    .service-card h3 {

        font-size: 28px;
    }

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 70px;
    }

    .contact-title {

        font-size: 72px;
    }

    .footer-top {

        flex-direction: column;

        gap: 42px;
    }
}

@media (max-width: 768px) {

    
  .hero-bg {

        background-image:

            linear-gradient(
                to bottom,
                rgba(0,0,0,0.38) 0%,
                rgba(0,0,0,0.18) 38%,
                rgba(0,0,0,0.48) 100%
            ),

            linear-gradient(
                to right,
                rgba(4,4,4,0.58) 0%,
                rgba(4,4,4,0.18) 100%
            ),

            url('../img/hero-boat-mb.webp');

        background-size: cover;

        background-position: center center;

        background-repeat: no-repeat;

        transform: scale(1.03);
    }

   .hero-bg {

    background-image:

        linear-gradient(
            to bottom,
            rgba(0,0,0,0.12) 0%,
            rgba(0,0,0,0.08) 38%,
            rgba(0,0,0,0.32) 100%
        ),

        linear-gradient(
            to right,
            rgba(4,4,4,0.28) 0%,
            rgba(4,4,4,0.08) 100%
        ),

        url('../img/hero-boat-mb.webp');

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    transform: scale(1.03);
}
    .hero {
        padding-left: 24px;
        padding-right: 24px;

        align-items: flex-start;
    }

    .hero-content {
        margin-top: 24vh;

        max-width: 100%;
    }

    .hero-headline {
        font-size: clamp(44px, 11vw, 68px);

        line-height: 0.94;
    }

    .hero-subheadline {
        font-size: 15px;

        line-height: 1.65;
    }

    .hero-btn {

    height: 58px;

    background:
        rgba(12,12,12,0.52);

    border:
        1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(10px);
}

    .about-section {

        padding: 120px 0;
    }

    .about-grid {

        grid-template-columns: 1fr;

        gap: 70px;
    }

    .about-title {

        font-size: clamp(46px, 11vw, 72px);
    }

    .about-text {

        font-size: 16px;

        line-height: 1.8;
    }  
    
    .services-section {

        padding: 120px 0;
    }

    .services-title {

        font-size: 48px;
    }

    .services-description {

        font-size: 17px;
    }

 .services-grid {

        margin-top: 48px;
    }

    .service-card {

        border-radius: 24px;
    }

    .service-card h3 {

        font-size: 24px;
    }

    .service-card p {

        font-size: 13px;

        line-height: 1.8;
    }

    .contact-section {

        padding: 120px 0;
    }

    .contact-title {

        font-size: 52px;
    }

    .contact-description {

        font-size: 16px;
    }

    .contact-form-wrap {

        padding: 28px;
    }

    .form-row {

        grid-template-columns: 1fr;
    }

    .footer {

        padding: 70px 0 34px;
    }

    .footer-links {

        flex-direction: column;

        gap: 18px;
    }

    .footer-bottom {

        flex-direction: column;

        gap: 12px;
    }

    
}