* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

.navbar {
    background: #131313;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    background-color: #ff8177;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    flex-shrink: 0;
}

.fa-gem {
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #f77062;
    color: #fff;
}

.button:hover {
    background: #4837ff;
    transition: all 0.3s ease;
}

.navbar__links:hover {
    color: #f77062;
    transition: all 0.3s ease;
}



.main {
    background-color: transparent;
}

/*.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 90vh;
    background-color: transparent;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    padding: 0 50px;
}*/

.main__containter {
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 90vh;
    background-color: transparent;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    padding: 0 50px;
}

.main__content {
    background-color: #131313;
    margin-top: 1rem;
}

.main__content h1 {
    text-align: center;
    font-size: 7.5rem;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content h2 {
    text-align: center;
    font-size: 4rem;
    background-image: linear-gradient(to top, #b721ff 0%, #21d4fd 100%);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content p {
    text-align: center;
    margin: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.re {
    background-color: transparent;
}

.re__container {
    margin-top: 20rem;
    align-items: center;
    justify-self: center;
    height: 90vh;
    background-color: #131313;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    padding: 0 50px;
}

.re__container h3 {
    text-align: center;
    font-size: 6rem;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.re__container p {
    text-align: center;
    margin: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.re__content1 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    background-color: transparent;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    padding: 0 50px;
}

.re__content1 h4 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.re__img-containter {
    position: relative;
    width: 1280px;
    height: 720px;
    border: 3px solid white;
    margin-left: auto;
    margin-right: auto;
}

.re__img-containter .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 1280px 100%;
    pointer-events: none;
}
  
.re__img-containter .background-img {
    background-image: url("images/RE/Staging-Before.jpg");
}
  
.re__img-containter .foreground-img {
    background-image: url("images/RE/Staging-After.jpg");
    width: 100%;
    clip-path: inset(0 50% 0 0);
    -webkit-clip-path: inset(0 50% 0 0);
}

.slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: rgba(242, 242, 242, 0);
    outline: none;
    margin: 0;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    touch-action: pan-y;
}
  
.slider:hover {
    background: rgba(242, 242, 242, 0);
}
  
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 100%;
    background: transparent;
    cursor: pointer;
}

.slider-divider,
.slider-divider2 {
    position: absolute;
    top: 0;
    left: calc(50% - 3px);
    width: 6px;
    height: 100%;
    background: #000;
    z-index: 3;
    pointer-events: none;
}

.slider-button {
    pointer-events: none;
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
}
  
.slider-button:after {
    content: '';
    padding: 3px;
    display: inline-block;
    border: solid #5d5d5d;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
}
  
.slider-button:before {
    content: '';
    padding: 3px;
    display: inline-block;
    border: solid #5d5d5d;
    border-width: 0 2px 2px 0;
    transform: rotate(135deg);
}

.re__content2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    justify-self: center;
    margin-top:30rem;
    background-color: transparent;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    padding: 0 50px;
}

.re__img-containter2 {
    position: relative;
    width: 1280px;
    height: 720px;
    border: 3px solid white;
    margin-left: auto;
    margin-right: auto;
}
  
.re__img-containter2 .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 1280px 100%;
    pointer-events: none;
}
  
.re__img-containter2 .background2-img {
    background-image: url("images/RE/Before.jpg");
}
  
.re__img-containter2 .foreground2-img {
    background-image: url("images/RE/After.jpg");
    width: 100%;
    clip-path: inset(0 50% 0 0);
    -webkit-clip-path: inset(0 50% 0 0);
}

.slider2 {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: rgba(242, 242, 242, 0);
    outline: none;
    margin: 0;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    touch-action: pan-y;
}
  
.slider2:hover {
    background: rgba(242, 242, 242, 0);
}
  
.slider2::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 100%;
    background: transparent;
    cursor: pointer;
}

.slider-button2 {
    pointer-events: none;
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
}
  
.slider-button2:after {
    content: '';
    padding: 3px;
    display: inline-block;
    border: solid #5d5d5d;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
}
  
.slider-button2:before {
    content: '';
    padding: 3px;
    display: inline-block;
    border: solid #5d5d5d;
    border-width: 0 2px 2px 0;
    transform: rotate(135deg);
}

.re__content2 h5 {
    text-align: center;
    margin: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.drone {
    margin-top: 30rem;
    background-color: transparent;
}

.drone__container {
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    background-color: transparent;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    padding: 0 50px;
}

.drone h6 {
    margin: 3rem;
    text-align: center;
    font-size: 6rem;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.drone__content2 {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.slide {
    display: none;
}

.slide img {
    display: block;
    width: 100%;
    height: auto;
}

.prev, .next {
    position: absolute;
    top: 360px;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
    line-height: 80px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.next {
    right: 0;
}
  
.active {
    display: block;
}

.vid {
    align-items: center;
    margin-top: 30rem;
    background-color: transparent;
}

.vid__container {
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    background-color: transparent;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    padding: 0 50px;
}

.vid h6 {
    margin: 3rem;
    text-align: center;
    font-size: 6rem;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

video {
    width: 60%;
    height: auto;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    margin-left: 20%;
    margin-bottom: 1.5rem;
    background-color: transparent;
    z-index: 1;
    padding: 0 50px;
}

.vid1 {
    width: 50%;
    height: auto;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    margin-left: 25%;
    margin-bottom: 1.5rem;
    background-color: transparent;
    z-index: 1;
    padding: 0 50px;
}

.events {
    background-color: transparent;
}

.events__container {
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    background-color: transparent;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    padding: 0 50px;
}

.events__container h1 {
    text-align: center;
    font-size: 5rem;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.events__container p {
    text-align: center;
    margin: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

  
.image-container1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    row-gap: 2rem;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    max-width: 1920px;
}

.scroll-container2 {
    margin: 5rem;
    width: 100%;
}
  
.image-container2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 2rem;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    max-width: 1920px;
}

.img1 {
    width: 200px;
    margin-right: 10px;
}

.img2 {
    height: 300px;
    margin-right: 10px;
}

.footer {
    background: #131313;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: bottom;
    bottom: 0;
    z-index: 999;
}

.footer__wrapper {
    align-items: center;
    justify-self: center;
    text-align: center;
    background-color: #141414;
    padding: 8px;
    color: #fff;
}

/* Modern refresh overrides */

:root {
    --bg-base: #09090d;
    --bg-soft: #12121a;
    --text-main: #f6f7fb;
    --text-muted: #bdc1d0;
    --accent: #ff5f6d;
    --accent-alt: #ffc371;
    --border-soft: rgba(255, 255, 255, 0.15);
}

html,
body {
    background: radial-gradient(circle at 15% 0%, #1b1130 0%, var(--bg-base) 45%, #050508 100%);
    color: var(--text-main);
}

body {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background: rgba(8, 8, 12, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-soft);
}

.navbar__container {
    max-width: 1280px;
    padding: 0 24px;
}

.navbar__logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.bar {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar__links {
    font-weight: 600;
    letter-spacing: 0.4px;
}

.navbar__links:hover {
    color: var(--accent-alt);
}

.button {
    width: auto;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    color: #141414;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
    background: linear-gradient(135deg, #ff7480 0%, #ffd596 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 95, 109, 0.35);
}

.main,
.re,
.events,
.drone,
.vid {
    width: 100%;
}

.main__content,
.re__container,
.events__container,
.drone__container,
.vid__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
    background: transparent;
}

.main__content {
    margin-top: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
}

.main__content h1 {
    font-size: clamp(2.4rem, 6vw, 5.8rem);
    line-height: 1.05;
}

.main__content h2 {
    font-size: clamp(1.8rem, 4.2vw, 3.4rem);
}

.main__content p {
    margin: 16px auto;
    max-width: 800px;
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    color: var(--text-muted);
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 8px 0 20px;
    flex-wrap: wrap;
}

.hero__button--ghost {
    background: transparent;
    border: 1px solid var(--border-soft);
    color: var(--text-main);
}

.hero__button--ghost:hover {
    background: rgba(255, 255, 255, 0.07);
    box-shadow: none;
}

video,
.vid1 {
    width: min(100%, 980px);
    padding: 0;
    margin: 0 auto 8px;
    display: block;
    border-radius: 18px;
    border: 1px solid var(--border-soft);
}

.re__container {
    margin-top: 40px;
    height: auto;
    text-align: center;
}

.re__container h3,
.drone h6,
.vid h6,
.events__container h1 {
    font-size: clamp(2rem, 6vw, 4.4rem);
}

.re__container p,
.events__container p {
    color: var(--text-muted);
    font-size: clamp(1rem, 2.2vw, 1.25rem);
}

.re__content1,
.re__content2 {
    max-width: 1280px;
    margin: 32px auto;
    padding: 0 24px;
    gap: 20px;
    align-items: center;
}

.re__content2 {
    margin-top: 24px;
}

.re__img-containter,
.re__img-containter2 {
    width: min(100%, 1100px);
    aspect-ratio: 16 / 9;
    height: auto;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    overflow: hidden;
}

.re__img-containter .img,
.re__img-containter2 .img {
    background-size: cover;
    background-position: center;
}



.drone {
    margin-top: 64px;
}

.drone__content2 {
    max-width: 1100px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
}

.prev,
.next {
    top: 50%;
    width: 62px;
    height: 62px;
    line-height: 62px;
    font-size: 2.8rem;
    background-color: rgba(0, 0, 0, 0.55);
}

.vid {
    margin-top: 64px;
}

.events__container {
    margin-top: 32px;
}

.image-container1 {
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 14px;
}

.image-container2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.img1,
.img2 {
    width: 100%;
    height: 100%;
    max-height: 320px;
    margin-right: 0;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--border-soft);
}

.scroll-container2 {
    margin: 26px 0;
}

.bottom-videos {
    width: 100%;
    margin-top: 26px;
}

.bottom-videos__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.bottom-videos__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

.bottom-videos__item {
    width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    background: #000;
    object-fit: contain;
    padding: 0;
    margin: 0;
}

.bottom-videos__item--wide {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

.footer {
    margin-top: 42px;
    background: rgba(8, 8, 12, 0.95);
    border-top: none;
    position: static;
}

.footer__wrapper {
    background: transparent;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 24px;
}

@media screen and (max-width: 1024px) {
    .re__content1,
    .re__content2 {
        grid-template-columns: 1fr;
    }

    .re__content1 h4,
    .re__content2 h5 {
        order: -1;
    }

    .image-container1 {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .image-container2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 640px) {
    .image-container2 {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        height: 72px;
    }

    .navbar__container {
        padding: 0 16px;
        height: 72px;
    }

    .navbar__logo-img {
        height: 34px;
        width: auto;
        max-width: 120px;
        max-height: 34px;
        object-fit: contain;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar__toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .navbar__toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .navbar__menu {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: rgba(9, 9, 13, 0.98);
        border-top: 1px solid var(--border-soft);
        border-bottom: 1px solid var(--border-soft);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.28s ease, opacity 0.2s ease;
    }

    .navbar__menu.active {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar__item {
        width: 100%;
        height: auto;
    }

    .navbar__links {
        width: 100%;
        height: auto;
        padding: 14px 16px;
        justify-content: flex-start;
    }

    .navbar__btn {
        width: 100%;
        padding: 10px 16px 14px;
    }

    .navbar__btn .button {
        width: 100%;
        height: auto;
    }

    .main__content {
        margin-top: 16px;
    }

    .main__content,
    .re__container,
    .events__container,
    .drone__container,
    .vid__container {
        padding: 24px 16px;
    }

    .re__container,
    .events__container {
        margin-top: 12px;
    }

    .re__content1,
    .re__content2 {
        margin: 16px auto;
        padding: 0 16px;
    }

    .drone,
    .vid,
    .bottom-videos,
    .contact-page {
        margin-top: 20px;
        padding-top: 0;
    }

    .drone h6,
    .vid h6 {
        margin: 12px 0;
    }

    .bottom-videos__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bottom-videos__item--wide {
        grid-column: 1 / -1;
    }

    .prev,
    .next {
        width: 52px;
        height: 52px;
        line-height: 52px;
        font-size: 2.2rem;
    }

    .footer__wrapper {
        justify-content: center;
        text-align: center;
        gap: 0;
        padding: 8px 12px;
        line-height: 1.1;
    }

    .footer__wrapper .footer {
        margin: 0;
        padding: 0;
        background: transparent;
        line-height: 1.1;
    }
}

@media screen and (max-width: 520px) {
    .bottom-videos__grid {
        grid-template-columns: 1fr;
    }
}

.contact-page {
    width: 100%;
    padding: 36px 0 0;
}

.contact__container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 28px 24px;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.contact__container h1 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 8px;
}

.contact__container > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact__field span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact__field input,
.contact__field select,
.contact__field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: rgba(12, 12, 18, 0.95);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
    border-color: var(--accent-alt);
}

.contact__submit {
    align-self: flex-start;
}

.contact__status {
    min-height: 22px;
    font-weight: 600;
}

.contact__status--success {
    color: #8ff7b8;
}

.contact__status--error {
    color: #ff9f9f;
}

.contact__details {
    margin-top: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .contact__container {
        padding: 22px 16px;
        margin: 0 12px;
        width: auto;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__submit {
        width: 100%;
    }
}