/* BASE */
body {
    background-color: #000;
    max-width: 100vw;
    overflow-x: hidden;
}
.ul-about-2-bottom-block-descr {
    color: #DEDEDE;
}
.ul-section-subtitle{
    color: #DEDEDE;
}
.img-wrapper {
    position: relative;
}
.blur-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    will-change: filter, transform, opacity;
    filter: blur(100px);
    background: rgba(198,35,204,0.85);
    z-index: -1;
    animation: blurPulse 4s ease-in-out infinite alternate;
}

.custom-btn-center {
    max-width: fit-content;
}

.img-wrapper img {
    animation: floatInSpace 6s ease-in-out infinite;
    transform-origin: center center;
}

@font-face {
  font-family: 'Vivl';
  src: url('../fonts/vivl-rail.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
.vivl {
    font-family: 'Vivl', sans-serif;
}

/* Blur pulse animation */
@keyframes blurPulse {
    0% {
        transform: translate(-50%, -50%) scale(1) translateZ(0);
        opacity: 0.85;
        filter: blur(100px);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) translateZ(0);
        opacity: 0.7;
        filter: blur(120px);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.15) translateZ(0);
        opacity: 0.6;
        filter: blur(110px);
    }
}

/* Floating space-like animation */
@keyframes floatInSpace {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(0.5deg) scale(1.02);
    }
    50% {
        transform: translateY(-12px) rotate(0deg) scale(1.01);
    }
    75% {
        transform: translateY(-6px) rotate(-0.5deg) scale(1.02);
    }
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .blur-circle,
    .img-wrapper img {
        animation: none;
    }
}

/* JCS Service Card Styles */
.jcs-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 40px;
    width: 100%;
    aspect-ratio: 880/530;
    background: linear-gradient(0deg, #0065E1 0%, #60BFFF 100%);
    overflow: hidden;
    cursor: pointer;
}
.jcs-service-card--purple {
    background: linear-gradient(0deg, #4800A0 0%, #AE5CFA 100%);
}
.jcs-service-card--orange {
    background: linear-gradient(0deg, #D1351D 0%, #FFAF3E 100%);
}
.jcs-service-card--green {
    background: linear-gradient(0deg, #006453 0%, #27E599 100%);
}
.jcs-service-card__top {
    text-align: center;
    width: 100%;
    padding: 50px 10px 0;
    transition: 0.3s ease;
}

.jcs-service-card:hover .jcs-service-card__top {
    padding-top: 40px;
}
.jcs-service-card:hover .jcs-service-card__bot img {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}
.jcs-service-card:hover .jcs-service-card__absolute {
    bottom: 30px;
}
.jcs-service-card__title,
.jcs-service-card__subtitle {
    text-align: center;
    color: #fff;
    width: 100%;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}
.jcs-service-card__title{
    font-size: clamp(24px, 2.4vw, 50px);
}

/* Mobile and tablet styles for service card title */
@media screen and (max-width: 1024px) {
    .jcs-service-card__title{
        margin-bottom: 10px;
    }
}

.jcs-service-card__subtitle{
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 20px);
}
.jcs-service-card__bot {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.jcs-service-card__bot img {
    position: absolute;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.jcs-service-card__absolute {
    position: absolute;
    background: rgba(255, 255, 255, 0.6); /* белый с opacity 0.6 */
    backdrop-filter: blur(6px);           /* блюрит то, что под ним */
    -webkit-backdrop-filter: blur(6px);   /* для Safari */
    bottom: -60px;
    left: 20px;
    border-radius: 50px;
    width: 183px;
    height: 60px;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
    font-size: 16px;
    font-weight: bold;
    /* Add positioning styles as needed */
    transition: 0.3s ease;
    display: flex;
}
@media screen and (max-width: 768px) {
    .jcs-service-card__absolute {
        display: none;
    }
    
}

.jcs-service-card__absolute i{
    width: 40px;
    aspect-ratio: 1/1;
    position: relative;
}
.jcs-service-card__absolute img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    aspect-ratio: 1/1;
}


/* JCS Gallery */

.jcs-gallery {
    position: relative;
}

.jcs-gallery .ul-btn{
    padding: 20px 10px;
    font-size: 16px;
    width: 100%;
    margin-top: 20px;
    justify-content: start;
    /* height: auto; */
}
@media (min-width: 992px) {
  .jcs-gallery .ul-btn {
    position: absolute;
    margin-top: 0;
    bottom: 0;
    right: 20px;
    font-size: 20px;
    gap: 20px;
    width: 40%;
  }
}
@media (min-width: 1400px) {
  .jcs-gallery .ul-btn {
    font-size: 25px;
    gap: 40px;
  }
}

/* Gallery Carousel Styles */
.jcs-gallery-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.jcs-gallery-carousel-container::before,
.jcs-gallery-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.jcs-gallery-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
    border-radius: 20px 0 0 20px;
}

.jcs-gallery-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
    border-radius: 0 20px 20px 0;
}

.jcs-gallery-carousel {
    position: relative;
    /* width: 1716px; */
    width: 2800px;
    /* height: 250px; */
    height: 400px;
    margin-bottom: 20px;
    border-radius: 20px;
    display: flex;
}

.jcs-gallery-carousel:last-of-type {
    margin-bottom: 0;
}

.jcs-gallery-carousel img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    will-change: transform;
}

/* Slider animations - infinite movement with two images */
@keyframes slideLeftInfinite {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%); /* Move exactly one image width */
    }
}

@keyframes slideRightInfinite {
    0% {
        transform: translateX(-100%); /* Start from second image position */
    }
    100% {
        transform: translateX(0%); /* Move to first image position */
    }
}

/* First slider: starts from left, goes to left */
.jcs-gallery-carousel:first-of-type {
    animation: slideLeftInfinite 25s linear infinite;
}

/* Second slider: starts from right, goes to right */
.jcs-gallery-carousel.back {
    animation: slideRightInfinite 25s linear infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jcs-gallery-carousel {
        height: 150px;
        margin-bottom: 15px;
        border-radius: 15px;
    }
    
    .jcs-gallery-carousel img {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .jcs-gallery-carousel {
        height: 200px;
    }
}

/* JCS Reviews Styles */
.jcs-reviews {
    position: relative;
}

.jcs-reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.jcs-reviews-prev,
.jcs-reviews-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #212121;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 18px;
    color: #666;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.jcs-reviews-prev {
    transform: translateX(-25px);
}

.jcs-reviews-next {
    transform: translateX(25px);
}

.jcs-reviews-prev:hover,
.jcs-reviews-next:hover {
    border-color: #C623CC;
    color: #C623CC;
    transform: translateX(-25px) scale(1.1);
    box-shadow: 0 4px 15px rgba(198, 35, 204, 0.2);
}

.jcs-reviews-next:hover {
    transform: translateX(25px) scale(1.1);
}

@media (max-width: 768px) {
    .jcs-reviews-prev,
    .jcs-reviews-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .jcs-reviews-prev {
        transform: translateX(-20px);
    }
    
    .jcs-reviews-next {
        transform: translateX(20px);
    }
    
    .jcs-reviews-prev:hover {
        transform: translateX(-20px) scale(1.1);
    }
    
    .jcs-reviews-next:hover {
        transform: translateX(20px) scale(1.1);
    }
}

.jcs-reviews-slider {
    overflow: hidden;
    padding: 40px 0 20px 0;
}

.jcs-reviews-slider .swiper-slide {
    transition: transform 0.3s ease;
}

/* Desktop only - center slide effect */
@media (min-width: 1200px) {
    .jcs-reviews-slider .swiper-slide {
        transform: translateY(0) scale(1);
        opacity: 1;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .jcs-reviews-slider .swiper-slide.edge-slide {
        transform: translateY(20px) scale(0.9);
        opacity: 0.7;
    }
}

.jcs-review-item {
    background: #141414;
    border-radius: 20px;
    padding: 25px 25px 30px 25px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(222, 222, 222, 0.4);
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    margin: 0 10px;
    position: relative;
    overflow: visible;
}

.jcs-review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.jcs-review-avatar-wrapper {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.jcs-review-avatar {
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #141414;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.jcs-review-content {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    justify-content: center;
    color: #DEDEDE;
}

.jcs-review-name {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #fff;
}
.jcs-review-subtitle {
    font-size: 14px;
    color: #C623CC;
}


.jcs-review-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.jcs-review-rating span {
    font-size: 14px;
}

.jcs-review-source {
    font-size: 12px;
    color: #666;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 12px;
}

.jcs-review-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #DEDEDE;
    margin: 0;
    text-align: left;
    overflow: hidden;
}



/* JCS Contact Form */

/* Общий контейнер */
.jcs-contact {
    display: flex;
    justify-content: end;
    position: relative;
    min-height: 620px;
    border-radius: 40px;
    overflow: hidden;
    flex-direction: column;
    border: 5px solid #C623CC;
}

/* Левая часть — форма */
.jcs-contact-form {
    color: #fff;
    width: 100%;
    padding: 40px 30px;   
    background: rgb(198, 35, 204);
    position: relative;
}

.jcs-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/img/contacts/bg.png);
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

.jcs-contact-form > * {
    position: relative;
    z-index: 1;
}

.jcs-contact-form__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Верхний подзаголовок формы */
.jcs-contact-form__upper {
    font-size: clamp(10px, 2vw, 16px);
    margin: 0;
    line-height: 1;
}

/* Основной заголовок формы */
.jcs-contact-form__title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    margin-bottom: 20px;
}


/* Текст с расписанием */
.jcs-contact-form__schedule {
    line-height: 1;
    margin: 0;
    font-size: 40px;
    margin-bottom: 10px;
    margin-top: 20px;
}

/* Правая часть — карта */
.jcs-contact-map {
    width: 100%;
    min-height: 400px;
    position: relative;
}
.jcs-contact-map__address{
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    background-color: #C623CC;
    padding: 20px 10px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
}
.jcs-contact-map iframe {
    min-height: 400px;
}

/* Form validation styles */
.form-group input,
.form-group textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border:3px solid #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 5px rgba(198, 35, 204, 0.3);
    /* outline: none; */
    border:3px solid #d6d6d6;
}

.form-group input:active,
.form-group textarea:active {
    background-color: #fff;
    border:3px solid #d6d6d6;
}
.form-group input.error,
.form-group textarea.error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 5px rgba(255, 68, 68, 0.3) !important;
}

/* Fix autofill background color */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #333 !important;
    border: 3px solid #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group input:-webkit-autofill:focus {
    border: 3px solid #d6d6d6 !important;
    -webkit-box-shadow: 0 0 0 30px white inset, 0 0 5px rgba(198, 35, 204, 0.3) !important;
}

/* Success Message Overlay */
.jcs-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.jcs-success-message {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: successSlideIn 0.5s ease-out;
}

@keyframes successSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.jcs-success-icon {
    margin-bottom: 20px;
}

.jcs-success-icon svg {
    width: 80px;
    height: 80px;
    animation: successCheckmark 0.6s ease-in-out 0.2s both;
}

@keyframes successCheckmark {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.jcs-success-message h3 {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.jcs-success-message p {
    font-size: clamp(14px, 3vw, 16px);
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.jcs-success-close {
    background: linear-gradient(135deg, #C623CC 0%, #8B5CF6 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(14px, 3vw, 16px);
}

.jcs-success-close:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 25px rgba(198, 35, 204, 0.4);
}

.jcs-success-close i {
    margin-right: 8px;
}

@media (min-width: 992px) {
    .jcs-contact {
        flex-direction: row;
    }
    .jcs-contact-form {
        width: 45%;
    }
    .jcs-contact-map {
        width: 55%;
    }
}

/* JCS Modal Styles */
.jcs-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.jcs-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.jcs-modal-container {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.jcs-modal-overlay.active .jcs-modal-container {
    transform: translateY(0);
}

.jcs-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.jcs-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.jcs-modal-icon {
    background: #f8f4ff;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.jcs-modal-icon img {
    width: 28px;
    height: 28px;
    filter: invert(35%) sepia(97%) saturate(7475%) hue-rotate(280deg) brightness(100%) contrast(95%);
}

.jcs-modal-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
    line-height: 1.3;
}

.jcs-modal-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.jcs-modal-form {
    display: flex;
    flex-direction: column;
}

.jcs-modal-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.jcs-modal-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.jcs-modal-input:focus {
    border-color: #c623cc;
}

.jcs-modal-input::placeholder {
    color: #999;
}

.jcs-modal-submit {
    width: 100%;
    background: linear-gradient(135deg, #c623cc 0%, #8B5CF6 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.jcs-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 35, 204, 0.4);
}

.jcs-modal-submit:active {
    transform: translateY(0);
}

/* Mobile responsiveness for modal */
@media (max-width: 480px) {
    .jcs-modal-container {
        padding: 20px;
        margin: 20px;
    }
    
    .jcs-modal-title {
        font-size: 20px;
    }
    
    .jcs-modal-subtitle {
        font-size: 14px;
    }
}

/* Modal Message Overlay Styles */
.jcs-modal-message-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.jcs-modal-message {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    max-width: 300px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: modalMessageSlideIn 0.4s ease-out;
}

@keyframes modalMessageSlideIn {
    from {
        transform: translateY(-30px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.jcs-modal-message-icon {
    margin-bottom: 15px;
}

.jcs-modal-message-icon svg {
    width: 60px;
    height: 60px;
    animation: modalIconBounce 0.5s ease-in-out 0.2s both;
}

@keyframes modalIconBounce {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.jcs-modal-message h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.jcs-modal-message p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.jcs-modal-success {
    border-top: 4px solid #4CAF50;
}

.jcs-modal-error {
    border-top: 4px solid #ff4444;
}

.jcs-modal-message-close {
    background: linear-gradient(135deg, #C623CC 0%, #8B5CF6 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.jcs-modal-message-close:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 20px rgba(198, 35, 204, 0.4);
}

/* Modal input error styles */
.jcs-modal-input.error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 5px rgba(255, 68, 68, 0.3) !important;
}

@media (max-width: 480px) {
    .jcs-modal-message {
        padding: 25px 20px;
        max-width: 280px;
    }
    
    .jcs-modal-message h3 {
        font-size: 18px;
    }
    
    .jcs-modal-message p {
        font-size: 13px;
    }
    
    .jcs-modal-message-icon svg {
        width: 50px;
        height: 50px;
    }
}

/* Contact Form Submit Button Hover Effect */
.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 37, 47, 0.4);
    background-color: #2A3441 !important;
}

.contact-submit-btn:hover i {
    color: #2A3441 !important;
}

.contact-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(30, 37, 47, 0.3);
}