/* GENERAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0b0c10;
    color: #c5c6c7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    transition: top 0.3s ease-in-out;
}

.navbar.show {
    top: 0;
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-logo {
    margin-right: auto;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: 2rem;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8a2be2;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item:hover {
    color: #8a2be2;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 60px;
}

.hero-background {
    position: absolute;
    top: 50%;
    left: 48%;
    width: 120%;
    height: 120%;
    background: url('Background.png') no-repeat center center;
    background-size: cover;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(138, 43, 226, 0.2),
        rgba(69, 162, 158, 0.2)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
    color: #c5c6c7;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #8a2be2, #45a29e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

/* ABOUT SECTION */
.about {
    background-color: #5A2B7A;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

.about h2 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(91, 38, 141, 0.639);
}

.about p {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
}

/* WHAT WE DO SECTION */
.what-we-do {
    background-color: #5b268da3;
    padding: 2rem 0;
    text-align: center;
}

.what-we-do h2 {
    color: #FFFFFF;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    background-color: #1f2833;
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.feature img {
    width: 100px;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 1rem;
    color: #c5c6c7;
}

.feature:hover {
    transform: translateY(-10px);
}

/* CONTACT SECTION */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e1433 0%, #2a1745 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
}

.contact h2 {
    color: #8a2be2;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1rem;
}

.contact-info .social-icon {
    color: #ffffff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 0.65rem 0.85rem;
    border-radius: 6px;
    background-color: rgba(138, 43, 226, 0.1);
    font-family: 'Poppins', sans-serif;
    width: fit-content;
    min-width: 180px;
}

.contact-info .social-icon i {
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.4rem;
    height: 1.4rem;
    color: #8a2be2;
    margin-right: 0.5rem;
}

.contact-info .social-icon span {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: #cccccc;
    display: inline-flex;
    align-items: center;
    height: 1.4rem;
}

.contact-info .social-icon:hover {
    background-color: rgba(138, 43, 226, 0.15);
    transform: translateY(-1px);
}

.contact-info .social-icon:hover span {
    color: #ffffff;
}

.contact-info .social-icon:hover i {
    transform: scale(1.05);
}

.social-media {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background-color: rgba(138, 43, 226, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-form form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(138, 43, 226, 0.08), transparent 70%);
    pointer-events: none;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.2rem;
    border-radius: 6px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8a2be2;
    background-color: rgba(0, 0, 0, 0.3);
}

.contact-form button {
    padding: 1rem 2rem;
    background-color: #8a2be2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    margin-top: 0.5rem;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.8), transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease-out;
}

.contact-form button:hover {
    background-color: #6a1b9a;
    transform: scale(1.02);
}

.contact-form button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.contact-form button span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }

    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .contact-info {
        order: 2;
        padding-top: 0;
    }

    .contact-form {
        order: 1;
    }

    .contact-form form {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #2a1745 0%, #1a1a1a 100%);
    padding: 4rem 0 2rem 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(138, 43, 226, 0.15), transparent 60%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: #8a2be2;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, transparent);
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon-footer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a2be2;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-icon-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8a2be2;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-footer i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-icon-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.social-icon-footer:hover::before {
    transform: translateY(0);
}

.social-icon-footer:hover i {
    color: #ffffff;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: rgba(138, 43, 226, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.social-links a::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background-color: #8a2be2;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    transition: all 0.3s ease;
}

.social-links a[href*="instagram"]::before {
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg>');
}

.social-links a[href*="tiktok"]::before {
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z"/></svg>');
}

.social-links a:hover {
    color: #ffffff;
    background: rgba(138, 43, 226, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.15);
}

.social-links a:hover::before {
    transform: scale(1.1);
    background-color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon-footer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a2be2;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-icon-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8a2be2;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-footer i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-icon-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.social-icon-footer:hover::before {
    transform: translateY(0);
}

.social-icon-footer:hover i {
    color: #ffffff;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.4rem 0;
}

.social-links a:hover {
    color: #8a2be2;
    transform: translateX(5px);
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.4rem 0;
}

.footer-links a:hover {
    color: #8a2be2;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    position: relative;
}

.footer-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
    margin-bottom: 1.5rem;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .social-links {
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }

    .social-links a:hover,
    .footer-links a:hover {
        transform: translateY(-3px);
    }
}
