:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --white-color: hsl(0, 0%, 100%);
    --black-color: hsl(0, 0%, 0%);
    --first-text-color: hsl(0, 0%, 100%);
    --second-text-color: hsl(0, 0%, 76%);
    --opposite-text-color: hsl(0, 0%, 0%);
    --navbar-color: hsl(0, 0%, 0%);
    --background-color: hsl(0, 0%, 11%);
    --pink-color: #9d1460;
    --pink-hover: #420e2c;
    --yellow: #f6a611;
    --yellow-hover: #835613;
    --blue: #6ec6d8;
    --blue-hover: #396870;
    --pure-black: hsl(0, 0%, 0%);
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat Alternates", sans-serif;
    --h1-font-size: 1.5rem;
    --normal-font-size: .938rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
    :root {
        --normal-font-size: 1rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    overflow-x: hidden;
    background-color: var(--pure-black);
    color: var(--first-text-color);
    position: relative;
    min-height: 100vh;
    scroll-behavior: smooth;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}



ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 95%;
    padding-left: 5%;

}

/*=============== HEADER & NAV ===============*/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--black-color);
    z-index: var(--z-fixed);
}

.nav {
    position: relative;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.nav__logo img {
    width: 30%;
}

.nav__close,
.nav__toggle {
    display: flex;
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {

    .nav {
        width: 100%;
        height: 5rem;
    }

    .nav__menu {
        position: fixed;
        left: -100%;
        top: 0;
        background-color: var(--black-color);
        width: 100%;
        height: 100%;
        padding: 6rem 3.5rem 4.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: left .4s;
    }

    .nav_logo {
        padding: 5%;
    }

    .nav__logo img {
        margin-top: 5%;
        width: 25%;
    }

    .nav__item {
        transform: translateX(-150px);
        visibility: hidden;
        transition: transform .4s ease-out, visibility .4s;
    }

    .nav__item:nth-child(1) {
        transition-delay: .1s;
    }

    .nav__item:nth-child(2) {
        transition-delay: .2s;
    }

    .nav__item:nth-child(3) {
        transition-delay: .3s;
    }

    .nav__item:nth-child(4) {
        transition-delay: .4s;
    }

    .nav__item:nth-child(5) {
        transition-delay: .5s;
    }
}

.nav__list,
.nav__social {
    display: flex;
}

.nav__list {
    flex-direction: column;
    row-gap: 3rem;
}

.nav__link {
    position: relative;
    color: var(--white-color);
    font-size: var(--h1-font-size);
    font-weight: var(--font-medium);
    display: inline-flex;
    align-items: center;
    transition: opacity .4s;
}

.nav__link i {
    font-size: 2rem;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s;
}

.nav__link span {
    position: relative;
    transition: margin .4s;
}

.nav__link span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--white-color);
    transition: width .4s ease-out;
}

/* Animation link on hover */
.nav__link:hover span {
    margin-left: 2.5rem;
}

.nav__link:hover i {
    opacity: 1;
    visibility: visible;
}

.nav__link:hover span::after {
    width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
    opacity: .4;
}

.nav__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.nav__social {
    column-gap: 1rem;
}

.nav__social-link {
    color: var(--white-color);
    font-size: 1.5rem;
    transition: transform .4s;
}

.nav__social-link:hover {
    transform: translateY(-.25rem);
}

/* Show menu */
.show-menu {
    left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
    visibility: visible;
    transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
    .container {
        margin-inline: auto;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);

    }

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .nav__link {
        font-size: var(--normal-font-size);
    }

    .nav__link i {
        font-size: 1.5rem;
    }

    .nav__list {
        flex-direction: row;
        column-gap: 3.5rem;
    }

    .nav__menu {
        display: flex;
        align-items: center;
        column-gap: 3.5rem;
    }
}

/* Hero Section Styling */
.hero {

    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
    color: white;
    padding-left: 5%;
}



.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    
}

.hero-image img {
    max-width: 70%;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--blue);
}

.hero p {
    font-size: 1.1rem;
    color: var(--second-text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--pink-color);
    color: var(--first-text-color);
    border: none;
}

.btn-primary:hover {
    background-color: var(--pink-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(157, 20, 96, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
}

.btn-secondary:hover {
    background-color: var(--yellow);
    color: var(--opposite-text-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(246, 166, 17, 0.3);
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
}

.float-1 {
    width: 400px;
    height: 400px;
    background-color: var(--pink-color);
    top: -100px;
    left: -100px;
    animation: float1 25s infinite alternate ease-in-out;
}

.float-2 {
    width: 500px;
    height: 500px;
    background-color: var(--blue);
    bottom: -200px;
    right: -100px;
    animation: float2 30s infinite alternate-reverse ease-in-out;
}

.float-3 {
    width: 300px;
    height: 300px;
    background-color: var(--yellow);
    top: 40%;
    left: 30%;
    animation: float3 22s infinite alternate ease-in-out;
}

.float-4 {
    width: 350px;
    height: 350px;
    background-color: var(--pink-color);
    bottom: 10%;
    left: 10%;
    animation: float4 28s infinite alternate-reverse ease-in-out;
}

.float-5 {
    width: 250px;
    height: 250px;
    background-color: var(--blue);
    top: 20%;
    right: 20%;
    animation: float5 20s infinite alternate ease-in-out;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(100px, 100px) rotate(15deg);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-150px, -100px) rotate(-20deg);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    100% {
        transform: translate(-70px, 120px) rotate(10deg) scale(1.2);
    }
}

@keyframes float4 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    100% {
        transform: translate(120px, -80px) rotate(-15deg) scale(0.8);
    }
}

@keyframes float5 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-100px, 50px) rotate(25deg);
    }
}

@media (min-width: 1625px) {
    .hero-image img {
        width: 60%;
    }

}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-bottom: 40px;
    }

    .cta-buttons {
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        width: 70%;
    }
}

@media (max-width: 768px) {

    .hero-image img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

}

/* ----Services ---*/

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white-color);
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--second-text-color);
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media screen and (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.service-card--pink::before {
    background-color: var(--pink-color);
}

.service-card--yellow::before {
    background-color: var(--yellow);
}

.service-card--blue::before {
    background-color: var(--blue);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.service-icon--pink {
    background-color: var(--pink-color);
}

.service-icon--yellow {
    background-color: var(--yellow);
}

.service-icon--blue {
    background-color: var(--blue);
}

/* Hizalama için yeni stil kuralları */
.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    height: 70px; /* Sabit yükseklik */
    display: flex;
    align-items: flex-start;
}

.service-description {
    color: var(--second-text-color);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    height: 100px; /* Sabit yükseklik */
    display: flex;
    align-items: flex-start;
}

.service-description p {
    margin: 0;
}

.service-modules {
    padding-bottom: 1rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.module-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    height: 24px; /* Sabit yükseklik */
}

.module-list {
    list-style: none;
    padding-left: 1rem;
    padding-top: 0.5rem;
    min-height: 180px; /* Minimum yükseklik - liste öğelerine göre ayarlanabilir */
}

.module-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--second-text-color);
}

.module-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto; /* Düğmeyi kartın altına yerleştirir */
    font-family: var(--body-font);
    align-self: flex-start; /* Düğmeyi sol tarafa hizalar */
}

.btn-pink {
    background-color: var(--pink-color);
    color: var(--white-color);
}

.btn-pink:hover {
    background-color: var(--pink-hover);
}

.btn-yellow {
    background-color: var(--yellow);
    color: var(--black-color);
}

.btn-yellow:hover {
    background-color: var(--yellow-hover);
}

.btn-blue {
    background-color: var(--blue);
    color: var(--black-color);
}

.btn-blue:hover {
    background-color: var(--blue-hover);
}

.services-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 0.5rem;
}

.service-tab {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--second-text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-tab.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}

.service-tab:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.05);
}

.service-content {
    display: none;
}

.service-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.crypto-icon {
    display: inline-block;
    margin-left: 5px;
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }

    .services-tabs {
        flex-direction: column;
        align-items: center;
    }

    .service-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    /* Mobil için yükseklik ayarlamaları */
    .service-title {
        height: auto;
        min-height: 50px;
    }
    
    .service-description {
        height: auto;
        min-height: 80px;
    }
    
    .module-list {
        min-height: auto;
    }
}
/* -----about------- */
.about {
    margin-top: 5rem;
    padding: 5rem 1.5rem;
}

.about__title {
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--blue);
}

.about__title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--pink-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about__container {
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about__data {

    text-align: center;
}

.about__subtitle {
    font-size: 1.75rem;
    color: var(--yellow);
    margin-bottom: 1.5rem;
}

.about__description {
    color: var(--second-text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about__values {
    background-color: rgba(19, 18, 18, 0.692);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.about__value-title {
    color: var(--blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about__value-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;

}

.about__value-icon {
    color: var(--pink-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    width: 30px;
}

.about__value-content {
    flex: 1;
}

.about__value-label {
    color: var(--yellow);
    font-weight: var(--font-medium);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.about__value-text {
    color: var(--second-text-color);
}

.about__mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about__card {
    background-color: rgba(19, 18, 18, 0.123);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    margin-top: 2rem;
}

.about__card:hover {
    transform: translateY(-8px);
}

.about__card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mission-icon {
    color: var(--blue);
}

.vision-icon {
    color: var(--yellow);
}

.about__card-title {
    font-size: 1.5rem;
    color: var(--first-text-color);
    margin-bottom: 1rem;
}

.about__card-text {
    color: var(--second-text-color);
}



/* Responsive */
@media screen and (min-width: 768px) {
    .about__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__mission-vision {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (min-width: 992px) {
    .container {
        padding: 0 2rem;
    }

    .about__title {
        font-size: 3rem;
    }

    .about__subtitle {
        font-size: 2rem;
    }

    .about__description {
        font-size: 1.2rem;
    }
}


.contact {
    padding: 5rem 1.5rem;

}

.contact__title {
    position: relative;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--blue);
}

.contact__title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--pink-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact__subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--second-text-color);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact__info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.contact__card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.contact__card:hover {
    transform: translateY(-5px);
}

.contact__card-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact__card:nth-child(1) .contact__card-icon {
    background-color: rgba(157, 20, 96, 0.2);
    color: var(--pink-color);
}

.contact__card:nth-child(2) .contact__card-icon {
    background-color: rgba(110, 198, 216, 0.2);
    color: var(--blue);
}

.contact__card:nth-child(3) .contact__card-icon {
    background-color: rgba(246, 166, 17, 0.2);
    color: var(--yellow);
}

.contact__card-data {
    flex: 1;
}

.contact__card-title {
    font-size: 1.1rem;
    color: var(--first-text-color);
    margin-bottom: 0.25rem;
}

.contact__card-description {
    font-size: 0.95rem;
    color: var(--second-text-color);
}

.contact__form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 15%;
}

.contact__form {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact__image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    width: 100%;
    max-height: 800px; /* Gerekirse sınırla */

}

.contact__image img {
    width: 100%;
    height: auto; /* Bu önemli: yüksekliği orantılı olacak */
    object-fit: contain; /* İçeriği tamamen gösterir */
    display: block;
        padding-bottom: 25%;
}

.contact__form-title {
    font-size: 1.5rem;
    color: var(--yellow);
    margin-bottom: 1.5rem;
}

.contact__form-group {
    margin-bottom: 1.5rem;
}

.contact__form-label {
    display: block;
    color: var(--second-text-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact__form-input,
.contact__form-textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--first-text-color);
    font-family: var(--body-font);
    transition: border-color 0.3s;
}

.contact__form-input:focus,
.contact__form-textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.contact__form-textarea {
    min-height: 150px;
    resize: vertical;
}

.contact__form-button {
    display: inline-block;
    background-color: var(--pink-color);
    color: var(--first-text-color);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: var(--font-medium);
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
    font-family: var(--body-font);
    font-size: 1rem;
}

.contact__form-button:hover {
    background-color: var(--pink-hover);
}


.contact__map {
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact__social {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 1.5rem;
}

.contact__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    transition: transform 0.3s, background-color 0.3s;
}

.contact__social-link:nth-child(1) {
    background-color: rgba(157, 20, 96, 0.2);
    color: var(--pink-color);
}

.contact__social-link:nth-child(2) {
    background-color: rgba(110, 198, 216, 0.2);
    color: var(--blue);
}

.contact__social-link:nth-child(3) {
    background-color: rgba(246, 166, 17, 0.2);
    color: var(--yellow);
}

.contact__social-link:nth-child(4) {
    background-color: rgba(157, 20, 96, 0.2);
    color: var(--pink-color);
}

.contact__social-link:hover {
    transform: translateY(-5px);
}

.contact__social-link:nth-child(1):hover {
    background-color: rgba(157, 20, 96, 0.4);
}

.contact__social-link:nth-child(2):hover {
    background-color: rgba(110, 198, 216, 0.4);
}

.contact__social-link:nth-child(3):hover {
    background-color: rgba(246, 166, 17, 0.4);
}

.contact__social-link:nth-child(4):hover {
    background-color: rgba(157, 20, 96, 0.4);
}

.contact__social-icon {
    font-size: 1.5rem;
}

@media screen and (min-width: 576px) {
    .contact__info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 768px) {
    .contact__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__info {
        grid-template-columns: 1fr;
    }

    .contact__form-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 992px) {
    .container {
        padding: 0 2rem;
    }

    .contact__info {
        grid-template-columns: 1fr;
    }

    .contact__title {
        font-size: 3rem;
    }

    .contact__form-title {
        font-size: 1.75rem;
    }
}

@media screen and (min-width: 1200px) {
    .contact__container {
        gap: 6rem;
    }
}

/* Footer */
.footer {
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--first-text-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: var(--second-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--second-text-color);
    font-size: 0.9rem;
}