/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar--scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    gap: 0.5rem;
}

.navbar__logo-icon {
    height: 2rem;
    width: auto;
}

.navbar__menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar__link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar__link:hover::after,
.navbar__link--active::after {
    width: 100%;
}

.navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.navbar__toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media screen and (max-width: 768px) {
    .navbar__toggle {
        display: block;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 300px;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s ease;
    }

    .navbar--open .navbar__menu {
        right: 0;
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
        transition: all 0.3s ease-in-out;
    }

    .navbar--open .navbar__toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar--open .navbar__toggle span:nth-child(2) {
        opacity: 0;
    }

    .navbar--open .navbar__toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .navbar__link {
        opacity: 0;
    }

    .navbar--open .navbar__link {
        opacity: 1;
    }
}

:root {
    --bg-color: #0f0f0f;
    --text-color: #ffffff;
    --accent-color: #FF3366;
    --accent-color-rgb: 255, 51, 102;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 10%;
    position: relative;
    overflow: hidden;
}

.hero__content {
    flex: 1;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero__greeting,
.hero__profession {
    display: block;
    font-weight: 300;
    font-size: 0.5em;
    opacity: 0.8;
}

.hero__name {
    display: block;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.2em;
}

.hero__subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero__cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

.hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.hero__cta:hover::before {
    left: 100%;
}

.hero__visual {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.hero__image-container {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 2;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero__image-container:hover .hero__image {
    transform: scale(1.05);
}

.hero__image-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(var(--accent-color-rgb), 0.1) 0%,
        rgba(15, 15, 15, 0.7) 100%
    );
    z-index: 1;
}

.hero__decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(var(--accent-color-rgb), 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.hero__square {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(var(--accent-color-rgb), 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: rotate 25s linear infinite reverse;
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero__cv-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero__cv-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.hero__cv-button:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.2);
}

.hero__cv-button:hover::before {
    left: 100%;
}

.hero__cv-icon {
    transition: transform 0.3s ease;
}

.hero__cv-button:hover .hero__cv-icon {
    transform: translateY(2px);
}

/* Update existing hero__cta styles to work with the new layout */
.hero__cta {
    margin: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .navbar__toggle {
        display: block;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 300px;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s ease;
    }

    .navbar--open .navbar__menu {
        right: 0;
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
        transition: all 0.3s ease-in-out;
    }

    .navbar--open .navbar__toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar--open .navbar__toggle span:nth-child(2) {
        opacity: 0;
    }

    .navbar--open .navbar__toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .navbar__link {
        opacity: 0;
    }

    .navbar--open .navbar__link {
        opacity: 1;
    }
}

@media screen and (max-width: 1200px) {
    .hero__container,
    .about__container,
    .skills__container,
    .projects__container,
    .contact__container {
        padding: 0 2rem;
    }
}

@media screen and (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 8rem 1rem 4rem;
        text-align: center;
    }

    .hero__content {
        margin-bottom: 4rem;
    }

    .hero__visual {
        min-height: auto;
        width: 100%;
        padding: 0 1rem;
    }

    .hero__image-container {
        width: 100%;
        max-width: 350px;
        height: 400px;
        margin: 0 auto;
    }

    .hero__buttons {
        justify-content: center;
    }

    .about__container {
        flex-direction: column;
        text-align: center;
    }

    .about__title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about__skills-grid {
        justify-content: center;
    }

    .skills__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .projects__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 800px;
        margin: 0 auto;
    }

    .contact__content {
        grid-template-columns: 1fr;
    }

    .contact__form {
        order: 2;
    }

    .contact__info {
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__visual {
        padding: 0;
    }

    .hero__image-container {
        height: 350px;
        max-width: 280px;
        border-radius: 20px;
    }

    .hero__image {
        border-radius: 20px;
    }

    .hero__decorations {
        display: none;
    }

    .about__text {
        font-size: 1rem;
    }

    .skill-card {
        padding: 1.5rem;
    }

    .projects__grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        gap: 2rem;
    }

    .project-card {
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
    }

    .contact__form,
    .contact__info-content {
        padding: 1.5rem;
    }

    .navbar__container {
        padding: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero__cta,
    .hero__cv-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .skills__grid {
        grid-template-columns: 1fr;
    }

    .about__skills-grid {
        grid-template-columns: 1fr;
    }

    .modal__container {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .contact__submit {
        width: 100%;
        justify-content: center;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(10deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* About Section Styles */
.about {
    padding: 8rem 0;
    background: linear-gradient(
        180deg,
        var(--bg-color) 0%,
        rgba(20, 20, 20, 1) 100%
    );
    position: relative;
    overflow: hidden;
}

.about__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about__content {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.about__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.about__text {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.about__skills-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.about__skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.skill-item__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0.95);
}

.skill-item:hover .skill-item__icon {
    transform: scale(1.1);
    filter: brightness(1);
}

.skill-item__name {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.about__visual {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease 0.3s forwards;
}

.about__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.about__decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    opacity: 0.1;
    z-index: 1;
}

/* Skills Section */
.skills {
    padding: 8rem 0;
    background: linear-gradient(
        180deg,
        rgba(20, 20, 20, 1) 0%,
        var(--bg-color) 100%
    );
    position: relative;
    overflow: hidden;
}

.skills__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.skills__title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.skills__title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.skills__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(var(--accent-color-rgb), 0.03),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.skill-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.skill-card:hover::before {
    transform: translateX(100%);
}

.skill-card__icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.skill-card:hover .skill-card__icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(var(--accent-color-rgb), 0.1);
}

.skill-card__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0.95);
    transition: all 0.3s ease;
}

.skill-card:hover .skill-card__icon {
    filter: brightness(1.1);
}

.skill-card__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.skill-card__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.skill-card__progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.skill-card__progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--accent-color);
    transition: width 1.5s ease;
}

.skill-card__progress-text {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Projects Section */
.projects {
    padding: 6rem 2rem;
    background-color: var(--background-color);
}

.projects__container {
    max-width: 1200px;
    margin: 0 auto;
}

.projects__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-color);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.2s;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-card__image-wrapper {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
}

.project-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card__image {
    transform: scale(1.05);
}

.project-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-card__overlay {
    opacity: 1;
}

.project-card__link {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-card__link:hover {
    background: white;
    color: black;
}

.project-card__title {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 1.5rem 1.5rem 0.5rem;
    font-weight: 600;
}

.project-card__description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 1.5rem 1.5rem;
    line-height: 1.5;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.modal.modal--open {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.modal__container {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: rgba(15, 15, 15, 0.95);
    border-radius: 16px;
    padding: 2rem;
    overflow-y: auto;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1;
}

.modal--open .modal__container {
    transform: scale(1);
    opacity: 1;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal__image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.modal__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.modal__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.modal__footer {
    display: flex;
    justify-content: flex-end;
}

.modal__link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.modal__link:hover {
    transform: translateY(-2px);
    background: rgba(var(--accent-color-rgb), 0.8);
}

/* Scrollbar styles for the modal */
.modal__container::-webkit-scrollbar {
    width: 8px;
}

.modal__container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.modal__container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: linear-gradient(
        180deg,
        var(--bg-color) 0%,
        rgba(20, 20, 20, 1) 100%
    );
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact__title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.contact__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
}

.contact__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.4s forwards;
}

.contact__form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-input {
    width: 100%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(var(--accent-color-rgb), 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: text;
    transition: all 0.3s ease;
    background: var(--bg-color);
    pointer-events: none;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: var(--accent-color);
}

.form-error {
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    color: #ff4444;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-group.error .form-input {
    border-color: #ff4444;
}

.form-group.error .form-error {
    opacity: 1;
    transform: translateY(0);
}

.contact__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact__submit:hover {
    transform: translateY(-2px);
    background: rgba(var(--accent-color-rgb), 0.9);
    box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.2);
}

.contact__submit-icon {
    transition: transform 0.3s ease;
}

.contact__submit:hover .contact__submit-icon {
    transform: translateX(4px);
}

.contact__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact__info-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__info-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact__info-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact__links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.contact__link:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.contact__link-icon {
    transition: transform 0.3s ease;
}

.contact__link:hover .contact__link-icon {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .contact__content {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact__form,
    .contact__info {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .contact {
        padding: 4rem 1rem;
    }

    .contact__content {
        max-width: 350px;
        margin: 0 auto;
    }

    .contact__form,
    .contact__info-content {
        padding: 1.5rem;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .contact__links {
        padding: 0;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(
        0deg,
        rgba(10, 10, 10, 1) 0%,
        var(--bg-color) 100%
    );
    padding: 6rem 2rem 2rem;
    color: var(--text-color);
    position: relative;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-color);
}

.footer__logo-text {
    font-size: 1.75rem;
    font-weight: 700;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer__nav-title,
.footer__social-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer__nav-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--text-color);
}

.footer__nav-link:hover::after {
    width: 100%;
}

.footer__social-links {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer__social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    transform: translateY(-3px);
}

.footer__social-link:hover::before {
    opacity: 0.1;
    transform: scale(1);
}

.footer__social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer__social-link:hover svg {
    transform: scale(1.1);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .footer__main {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer__tagline {
        max-width: 100%;
    }

    .footer__nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem 2rem;
    }
}
