/* Logo styling */
.text-logo {
    display: flex;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.text-logo__sng {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 5px;
    position: relative;
}

.text-logo__media {
    font-size: 1.8rem;
    color: #333;
    position: relative;
    padding-left: 8px;
}

.text-logo__media:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 2px;
    background: linear-gradient(to bottom, #056eb9, #00a4d4);
    border-radius: 1px;
}

.text-logo:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #056eb9, #00a4d4, transparent);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .text-logo__sng {
        font-size: 1.8rem;
    }
    .text-logo__media {
        font-size: 1.5rem;
    }
}

.hero-heading {
    font-size: 4rem;
    line-height: 1.3;
    color: #056eb9;
    margin-bottom: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInLeft 1s ease-out;
    text-shadow: 2px 2px 4px rgba(5, 110, 185, 0.1);
    padding: 20px 0;
    max-width: 90%;
}

.hero-subtext {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 3.5rem;
    animation: fadeInLeft 1s ease-out 0.3s backwards;
    font-weight: 500;
    max-width: 85%;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    margin-top: 2rem;
}

.btn-question, .btn-order {
    padding: 20px 45px;
    font-size: 1.4rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-question {
    color: #fff;
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(5, 110, 185, 0.25);
}

.btn-question:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(5, 110, 185, 0.35);
    background: linear-gradient(135deg, #0084e3 0%, #00b4e4 100%);
    color: #fff;
    text-decoration: none;
}

.btn-order {
    color: #056eb9;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #056eb9;
    box-shadow: 0 8px 25px rgba(5, 110, 185, 0.15);
}

.btn-order:hover {
    color: #fff;
    background: #056eb9;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(5, 110, 185, 0.25);
    text-decoration: none;
}

.btn-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8em;
    height: 1.8em;
}

.btn-question:hover .btn-icon {
    transform: scale(1.2) rotate(-10deg);
}

.btn-order:hover .btn-icon {
    transform: scale(1.2) translateX(5px);
}

.start-screen__content-container {
    position: relative;
    z-index: 2;
}

.start-screen__bg-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.image-container {
    animation: fadeInRight 1s ease-out 0.9s backwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.8rem;
        max-width: 100%;
        padding: 15px 0;
    }
    .hero-subtext {
        font-size: 1.5rem;
        max-width: 100%;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 20px;
    }
    .btn-question, .btn-order {
        width: 100%;
        text-align: center;
        padding: 18px 30px;
        font-size: 1.2rem;
    }
}

.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.03) 0%, rgba(0, 164, 212, 0.03) 100%);
}

.about-subtitle {
    color: #056eb9;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-family: 'Quicksand', sans-serif;
    position: relative;
    display: inline-block;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    border-radius: 2px;
}

.about-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.about-title span {
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.about-highlight {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #333;
    font-weight: 600;
    margin-bottom: 1.8rem;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #056eb9;
}

.about-description {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 400;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(5, 110, 185, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(5, 110, 185, 0.3);
    background: linear-gradient(135deg, #0084e3 0%, #00b4e4 100%);
    color: #fff;
    text-decoration: none;
}

.about-btn i {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(8px);
}

.image-container {
    position: relative;
    z-index: 1;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 2px solid rgba(5, 110, 185, 0.1);
    border-radius: 20px;
    z-index: -1;
}

@media (max-width: 768px) {
    .about-section {
        padding: 70px 0;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-highlight {
        font-size: 1.2rem;
    }

    .about-description {
        font-size: 1.25rem;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
        font-size: 1.25rem;
        padding: 18px 35px;
    }
}

.services--s6 .__item {
    padding: 40px 30px;
    background: #fff;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.services--s6 .__item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.services--s6 .__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(5, 110, 185, 0.15);
}

.services--s6 .__item:hover:before {
    transform: scaleX(1);
}

.services--s6 .__item .__ico {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.1) 0%, rgba(0, 164, 212, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.services--s6 .__item:hover .__ico {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.2) 0%, rgba(0, 164, 212, 0.2) 100%);
}

.services--s6 .__item .__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #056eb9;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.services--s6 .__item:hover .__title {
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services--s6 .__item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .services--s6 .__item {
        margin-bottom: 30px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 25px;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.03) 0%, rgba(0, 164, 212, 0.03) 100%);
    border-radius: 20px;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(5, 110, 185, 0.12);
}

.service-icon {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 8px 20px rgba(5, 110, 185, 0.15));
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 12px 25px rgba(5, 110, 185, 0.25));
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #056eb9;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    position: relative;
    z-index: 1;
    margin: 0;
}

.section-heading--center {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading--center .__subtitle {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    background: linear-gradient(120deg, #056eb9, #00a4d4);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(5, 110, 185, 0.2);
}

.section-heading--center .__title {
    font-size: 46px;
    line-height: 1.2;
    margin: 0;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.section-heading--center .__title span {
    color: #056eb9;
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

/* Добавляем современные декоративные элементы */
.section-heading--center .__title::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #056eb9, #00a4d4);
    bottom: -20px;
    border-radius: 2px;
}

.section-heading--center .__title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background: linear-gradient(90deg, #00a4d4, #056eb9);
    bottom: -30px;
    border-radius: 2px;
}

/* Добавляем фоновые элементы */
.section-heading--center::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(5, 110, 185, 0.05) 0%, rgba(5, 110, 185, 0) 70%);
    border-radius: 50%;
    top: -30px;
    left: 10%;
    z-index: -1;
}

.section-heading--center::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 164, 212, 0.05) 0%, rgba(0, 164, 212, 0) 70%);
    border-radius: 50%;
    bottom: -20px;
    right: 10%;
    z-index: -1;
}

@media (max-width: 768px) {
    .section-heading--center .__title {
        font-size: 32px;
    }
    
    .section-heading--center .__subtitle {
        font-size: 12px;
        padding: 6px 12px;
    }
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(5, 110, 185, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(5, 110, 185, 0.1);
    border-color: rgba(5, 110, 185, 0.15);
}

.pricing-card--popular {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7fc 100%);
    border: 2px solid #056eb9;
}

.pricing-card--popular::before {
    content: '';
    position: absolute;
    top: 0;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    transform: rotate(45deg) translateY(-28px);
}

.pricing-card__badge {
    position: absolute;
    top: 28px;
    right: -32px;
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    color: white;
    font-size: 11px;
    padding: 4px 35px;
    transform: rotate(45deg);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(5, 110, 185, 0.25);
    font-family: 'Quicksand', sans-serif;
}

.pricing-card__header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(5, 110, 185, 0.08);
    margin-bottom: 25px;
}

.pricing-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.pricing-card__price {
    font-size: 36px;
    font-weight: 800;
    color: #056eb9;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Quicksand', sans-serif;
}

.pricing-card__price-suffix {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.pricing-card__description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    padding: 8px 0;
}

.pricing-card__feature::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23056eb9'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.8;
}

.pricing-card__button {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(5, 110, 185, 0.2);
}

.pricing-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 110, 185, 0.3);
}

.pricing-card--popular .pricing-card__button {
    background: linear-gradient(135deg, #00a4d4 0%, #056eb9 100%);
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 25px;
    }

    .pricing-card__price {
        font-size: 32px;
    }

    .pricing-card__title {
        font-size: 18px;
    }
}

.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.02) 0%, rgba(0, 164, 212, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(5, 110, 185, 0.05) 0%, rgba(0, 164, 212, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 164, 212, 0.05) 0%, rgba(5, 110, 185, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #056eb9;
    position: relative;
    padding-bottom: 1.5rem;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(5, 110, 185, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(5, 110, 185, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 5px 15px rgba(5, 110, 185, 0.15);
    border: 3px solid #056eb9;
}

.testimonial-avatar::before {
    display: none;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    background-color: white;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 1.1rem;
    color: #056eb9;
    font-weight: 600;
    line-height: 1.4;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    position: relative;
    padding-left: 25px;
    border-left: 3px solid #056eb9;
    margin: 20px 0;
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 4rem;
    color: rgba(5, 110, 185, 0.1);
    font-family: Georgia, serif;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-title {
        font-size: 2.2rem;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .testimonial-info {
        text-align: center;
    }

    .testimonial-text {
        font-size: 1rem;
        padding-left: 20px;
    }
}

.get-in-touch {
    padding: 120px 0;
    position: relative;
    background: url('https://img.freepik.com/free-vector/abstract-blue-geometric-shapes-background_1035-17545.jpg') center/cover no-repeat;
    overflow: hidden;
}

.get-in-touch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.97) 0%, rgba(0, 164, 212, 0.92) 100%);
    z-index: 1;
}

.get-in-touch__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.get-in-touch__content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.get-in-touch__left {
    flex: 1;
    color: white;
}

.get-in-touch__subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.get-in-touch__subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 100%);
    border-radius: 2px;
}

.get-in-touch__title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 35px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
    font-family: 'Quicksand', sans-serif;
}

.get-in-touch__description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 90%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.get-in-touch__form {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.get-in-touch__form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-control-wrapper {
    position: relative;
    transition: all 0.3s ease;
}

.form-control-wrapper i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #40b3ff;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.form-control {
    width: 100%;
    padding: 20px 25px 20px 65px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333;
    font-weight: 400;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.form-control:hover {
    border-color: #40b3ff;
    box-shadow: 0 8px 20px rgba(64, 179, 255, 0.1);
}

.form-control:focus {
    outline: none;
    border-color: #40b3ff;
    box-shadow: 0 8px 20px rgba(64, 179, 255, 0.15);
    background: #ffffff;
    transform: translateY(-2px);
}

.form-control:focus + i {
    color: #40b3ff;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.form-control::placeholder {
    color: #999;
    font-weight: 400;
    font-size: 1.1rem;
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
    padding: 25px 25px 25px 65px;
    line-height: 1.6;
}

.textarea-wrapper i {
    top: 30px;
    transform: none;
}

.submit-button {
    width: 100%;
    padding: 20px 30px;
    background: #40b3ff;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(64, 179, 255, 0.2);
}

.submit-button:hover {
    background: #2aa3ff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(64, 179, 255, 0.25);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(64, 179, 255, 0.2);
}

.submit-button i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .get-in-touch__content {
        flex-direction: column;
        gap: 40px;
    }

    .get-in-touch__form {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .get-in-touch {
        padding: 60px 0;
    }

    .get-in-touch__form {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .form-control {
        padding: 16px 20px 16px 55px;
        font-size: 1.1rem;
    }

    .submit-button {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}

.contact-section {
    padding: 120px 0;
    background: linear-gradient(110deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.05) 0%, rgba(0, 164, 212, 0.05) 100%);
    top: -150px;
    right: -100px;
    z-index: 1;
}

.contact-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.05) 0%, rgba(0, 164, 212, 0.03) 100%);
    bottom: -100px;
    left: -50px;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.contact-info {
    flex: 1;
    max-width: 500px;
}

.contact-label {
    display: inline-block;
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(5, 110, 185, 0.15);
}

.contact-title {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #056eb9 0%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.1) 0%, rgba(0, 164, 212, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: #056eb9;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px 0;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.contact-form-container {
    flex: 1;
    max-width: 500px;
}

.form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s ease;
    position: relative;
}

.form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(5, 110, 185, 0.15);
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #056eb9, #00a4d4);
    z-index: 1;
}

.contact-form {
    padding: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-emoji {
    font-size: 36px;
    margin-bottom: 16px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.form-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    color: #056eb9;
    font-size: 18px;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #eaeaea;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.input-wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #056eb9;
    background: white;
    box-shadow: 0 5px 15px rgba(5, 110, 185, 0.1);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #aaa;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(5, 110, 185, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(5, 110, 185, 0.3);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-info,
    .contact-form-container {
        max-width: 100%;
    }
    
    .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-title {
        font-size: 30px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Enhanced Form Elements */
.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(5, 110, 185, 0.2);
}

.contact-icon i {
    font-size: 30px;
    color: white;
}

.styled-input {
    position: relative;
    margin-bottom: 15px;
}

.styled-input i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #056eb9;
    font-size: 20px;
    z-index: 1;
}

.styled-input input,
.styled-input textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    font-size: 16px;
}

.styled-input textarea {
    min-height: 120px;
    padding-top: 15px;
}

.styled-input input:focus,
.styled-input textarea:focus {
    outline: none;
    border-color: #056eb9;
    box-shadow: 0 0 0 3px rgba(5, 110, 185, 0.1);
    background-color: #fff;
}

.contact-form .input-wrapper.styled-input i.far.fa-comment-dots {
    top: 20px;
}

/* Custom navigation styles */
.top-bar__navigation ul li a.nav-link {
    color: #333333 !important;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 600;
    opacity: 1 !important;
}

.top-bar__navigation ul li a.nav-link:hover,
.top-bar__navigation ul li a.nav-link.active {
    color: #056eb9 !important;
}

.top-bar__navigation ul li a.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #056eb9;
    transition: width 0.3s ease;
}

.top-bar__navigation ul li a.nav-link:hover:after,
.top-bar__navigation ul li a.nav-link.active:after {
    width: 100%;
}

/* Sticky header styles */
.top-bar {
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 90px;
}

/* Header shrinking on scroll */
.top-bar--small {
    padding: 10px 0;
}

/* Making sure header is above other elements */
header {
    z-index: 1000;
}

/* Header Contact Button */
.header-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #056eb9 0%, #00a4d4 100%);
    color: #fff !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(5, 110, 185, 0.25);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.header-contact-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0084e3 0%, #00b4e4 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(5, 110, 185, 0.35);
    color: #fff !important;
    text-decoration: none;
}

.header-contact-btn:hover:before {
    opacity: 1;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll offset for fixed header */
:target {
    scroll-margin-top: 100px;
}

/* Footer styling */
.footer {
    position: relative;
    background: linear-gradient(to bottom, #f8fbfd, #f1f6fc);
    padding-top: 80px;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #056eb9, #00a4d4, #056eb9);
}

/* Fix for footer background color */
.footer--s1 .footer__line--first {
    background: linear-gradient(135deg, #1a3c61 0%, #2d5686 100%);
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    border-radius: 0;
}

@keyframes wave1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1600px); }
}

@keyframes wave2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1600px); }
}

.footer--s1 .footer__line--first .wave-container {
    position: absolute;
    width: 100%;
    height: 200px;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer--s1 .footer__line--first .wave1 {
    position: absolute;
    width: 3200px;
    height: 198px;
    bottom: -80px;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='198'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='50%25' x2='50%25' y1='-10.959%25' y2='100%25'%3E%3Cstop stop-color='%23056eb9' stop-opacity='.25' offset='0%25'/%3E%3Cstop stop-color='%23056eb9' stop-opacity='.1' offset='100%25'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23a)' fill-rule='evenodd' d='M.005 121C311 121 409.898-.25 811 0c400 0 500 121 789 121v77H0s.005-48 .005-77z'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    animation: wave1 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform-origin: center bottom;
}

.footer--s1 .footer__line--first .wave2 {
    position: absolute;
    width: 3200px;
    height: 198px;
    bottom: -90px;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='198'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='50%25' x2='50%25' y1='-10.959%25' y2='100%25'%3E%3Cstop stop-color='%2300a4d4' stop-opacity='.2' offset='0%25'/%3E%3Cstop stop-color='%2300a4d4' stop-opacity='.1' offset='100%25'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23a)' fill-rule='evenodd' d='M.005 121C311 121 409.898-.25 811 0c400 0 500 121 789 121v77H0s.005-48 .005-77z'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    animation: wave2 11s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform-origin: center bottom;
}

.footer--s1 .footer__line--first::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.15) 0%, rgba(0, 164, 212, 0.15) 100%);
    pointer-events: none;
}

.footer--s1 .footer__line--first::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #056eb9, #00a4d4, transparent);
    opacity: 0.5;
}

.footer--s1 .footer-heading,
.footer--s1 .footer-tagline,
.footer--s1 .__copy,
.footer--s1 .footer-contact-item,
.footer--s1 .footer__navigation ul li a {
    color: #fff;
}

.footer--s1 .footer-heading::after {
    background: #00a4d4;
}

.footer--s1 .footer-contact-item i {
    color: #00a4d4;
}

.footer--s1 .footer-contact-item a:hover,
.footer--s1 .footer__navigation ul li a:hover {
    color: #00a4d4;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(5, 110, 185, 0.03) 0%, transparent 200px),
                      radial-gradient(circle at 80% 60%, rgba(0, 164, 212, 0.03) 0%, transparent 200px);
    pointer-events: none;
    z-index: 0;
}

.footer-heading {
    color: #2d2d2d;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #056eb9, #00a4d4);
}

.footer-tagline {
    color: #555;
    margin-bottom: 15px;
}

.footer-social-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-social-btn:hover {
    background: #00a4d4;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #555;
}

.footer-contact-item i {
    margin-right: 10px;
    color: #056eb9;
    width: 20px;
    text-align: center;
}

.footer-contact-item a {
    color: #056eb9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #00a4d4;
}

#btn-to-top {
    background: linear-gradient(135deg, #056eb9, #00a4d4);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(5, 110, 185, 0.25);
    transition: all 0.3s ease;
}

#btn-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(5, 110, 185, 0.35);
}

/* Make waves more cohesive with the design */
.footer__waves-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 1;
}

.footer__wave {
    opacity: 0.2;
}

.footer__line--first {
    position: relative;
    z-index: 2;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #056eb9;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #056eb9, #00a4d4);
    border-radius: 1.5px;
}

.footer-tagline {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.__copy {
    font-size: 13px;
    color: #888;
}

.footer__navigation ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer__navigation ul li {
    margin-bottom: 12px;
}

.footer__navigation ul li a {
    color: #555;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer__navigation ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #056eb9, #00a4d4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer__navigation ul li a:hover {
    color: #056eb9;
    text-decoration: none;
    padding-left: 18px;
}

.footer__navigation ul li a:hover::before {
    transform: translateY(-50%) scale(1.3);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.footer-contact-item i {
    color: #056eb9;
    font-size: 16px;
    margin-right: 10px;
    margin-top: 3px;
}

.footer-contact-item a {
    color: #555;
    transition: all 0.3s ease;
}

.footer-contact-item a:hover {
    color: #056eb9;
    text-decoration: none;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #056eb9, #00a4d4);
    color: white;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(5, 110, 185, 0.2);
}

.footer-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(5, 110, 185, 0.3);
    color: white;
    text-decoration: none;
}

.footer__waves-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    z-index: 1;
}

@media (max-width: 991px) {
    .footer {
        padding-top: 60px;
    }
    
    .footer__item {
        margin-bottom: 40px;
    }
}

/* Add specific styles for the footer logo */
.footer--s1 .text-logo {
    display: flex;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    letter-spacing: 1.2px;
    position: relative;
    padding: 8px 0;
    transform: scale(1.1);
}

.footer--s1 .text-logo__sng {
    font-size: 2.4rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 8px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    position: relative;
}

.footer--s1 .text-logo__media {
    font-size: 2rem;
    color: #ffffff;
    position: relative;
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer--s1 .text-logo__media:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 2px;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.5));
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.footer--s1 .text-logo:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #ffffff, #ffffff, transparent);
    opacity: 0.3;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .footer--s1 .text-logo__sng {
        font-size: 2rem;
    }
    .footer--s1 .text-logo__media {
        font-size: 1.7rem;
    }
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
}

.language-selector__button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.15) 0%, rgba(0, 164, 212, 0.15) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.language-selector__button:hover {
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.25) 0%, rgba(0, 164, 212, 0.25) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.language-selector__button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.language-selector__button span {
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.language-selector__dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.language-selector__dropdown:before {
    content: '';
    position: absolute;
    top: -6px;
    right: 25px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.95);
    transform: rotate(45deg);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: -3px -3px 5px rgba(0, 0, 0, 0.02);
}

.language-selector:hover .language-selector__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-selector__item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid rgba(5, 110, 185, 0.1);
}

.language-selector__item:last-child {
    border-bottom: none;
}

.language-selector__item:hover {
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.1) 0%, rgba(0, 164, 212, 0.1) 100%);
}

.language-selector__item img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(5, 110, 185, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-selector__item span {
    font-size: 14px;
    font-weight: 500;
    flex-grow: 1;
}

.language-selector__item.active {
    background: linear-gradient(135deg, rgba(5, 110, 185, 0.1) 0%, rgba(0, 164, 212, 0.1) 100%);
}

.language-selector__item.active:after {
    content: '✓';
    position: absolute;
    right: 20px;
    color: #056eb9;
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 768px) {
    .language-selector {
        margin: 15px 0;
        width: 100%;
    }

    .language-selector__button {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    .language-selector__dropdown {
        width: 100%;
        position: absolute;
        margin-top: 8px;
        background: rgba(255, 255, 255, 0.98);
    }

    .language-selector__dropdown:before {
        right: 50%;
        transform: translateX(50%) rotate(45deg);
    }

    .language-selector__item {
        padding: 15px 24px;
    }
}