/* =========================================
   GLOBAL STYLES
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #2d2d2e;
    color: #f5f5f7;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================
   NAVIGATION
========================================= */

.navbar {
    width: 100%;
    height: 80px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 100;

    background: rgba(149, 24, 180, 0.75);
    backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(187, 153, 196, 0.06);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo span {
    color: #8b5cf6;
}

.navbar nav {
    display: flex;
    gap: 45px;
}

.navbar nav a {
    color: #a5a4a4;
    font-size: 18px;

    transition: 0.3s ease;
}

.navbar nav a:hover {
    color: white;
}

.language-button {
    border: 1px solid rgba(255, 255, 255, 0.15);

    background: transparent;
    color: white;

    padding: 9px 15px;

    border-radius: 50px;

    font-size: 12px;

    cursor: pointer;

    transition: 0.3s ease;
}

.language-button:hover {
    background: white;
    color: #08080c;
}


/* =========================================
   HERO SECTION
========================================= */

.hero {
    min-height: 100vh;

    padding: 160px 8% 100px;

    background: #2d2d2e;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;

    overflow: hidden;
}

.hero-content {
    width: 55%;

    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 14px;

    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50px;

    color: #b7a3ef;

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 28px;
}

.badge span {
    width: 7px;
    height: 7px;

    background: #8b5cf6;

    border-radius: 50%;

    box-shadow: 0 0 15px #8b5cf6;
}

.hero h1 {
    font-size: clamp(52px, 7vw, 100px);

    line-height: 0.98;
    letter-spacing: -5px;

    margin-bottom: 30px;
}

.hero h1 span {
    color: #8b5cf6;
}

.hero-content > p {
    max-width: 580px;

    color: #9a9aa3;

    font-size: 18px;
    line-height: 1.7;

    margin-bottom: 40px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    background: #f5f5f7;
    color: #08080c;

    padding: 15px 22px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.hero-button span {
    font-size: 20px;
}

.hero-button:hover {
    transform: translateY(-3px);

    background: #8b5cf6;
    color: white;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-decoration {
    width: 40%;
    height: 500px;

    position: relative;
}

.circle {
    position: absolute;

    border-radius: 50%;

    filter: blur(1px);
}

.circle-one {
    width: 380px;
    height: 380px;

    top: 50px;
    right: 20px;

    background:
        radial-gradient(
            circle at 30% 30%,
            #a78bfa,
            #6d28d9 45%,
            #171126 70%
        );

    opacity: 0.8;

    box-shadow:
        0 0 100px rgba(139, 92, 246, 0.25);
}

.circle-two {
    width: 180px;
    height: 180px;

    bottom: 30px;
    left: 30px;

    background:
        radial-gradient(
            circle at 30% 30%,
            #60a5fa,
            #2563eb
        );

    opacity: 0.5;

    filter: blur(40px);
}

.floating-card {
    width: 300px;
    height: 210px;

    position: absolute;

    top: 150px;
    right: 70px;

    padding: 20px;

    border-radius: 18px;

    background: rgba(20, 20, 28, 0.85);

    border: 1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(20px);

    transform: rotate(7deg);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4);
}

.card-top {
    display: flex;
    gap: 5px;

    margin-bottom: 25px;
}

.card-top span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #555;
}

.fake-line {
    height: 7px;

    background: #33333e;

    border-radius: 10px;

    margin-bottom: 10px;
}

.fake-line.long {
    width: 75%;
}

.fake-line.medium {
    width: 50%;
}

.fake-boxes {
    display: flex;
    gap: 10px;

    margin-top: 25px;
}

.fake-boxes div {
    flex: 1;

    height: 55px;

    background:
        linear-gradient(
            135deg,
            #252530,
            #17171e
        );

    border-radius: 8px;
}


/* =========================================
   SHARED SECTION STYLES
========================================= */

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 70px;
}

.eyebrow {
    color: #8b5cf6;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.section-heading h2,
.about h2 {
    font-size: clamp(40px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -3px;
}

.section-heading h2 span,
.about h2 span {
    color: #666672;
}

.heading-description {
    max-width: 320px;

    color: #85858f;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   PACKAGES SECTION
========================================= */

.packages {
    padding: 130px 8%;

    background: #0d0d12;

    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.package-card {
    position: relative;

    padding: 38px 32px;

    background: #131319;

    border: 1px solid #25252e;

    border-radius: 20px;

    transition: 0.4s ease;
}

.package-card:hover {
    transform: translateY(-8px);

    border-color: #4a405f;
}

.package-card.featured {
    background:
        linear-gradient(
            145deg,
            #1d1729,
            #131319
        );

    border-color: #6745a8;
}

.popular {
    position: absolute;

    top: 18px;
    right: 18px;

    padding: 6px 10px;

    background: #8b5cf6;

    border-radius: 30px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
}

.package-number {
    color: #555560;

    font-size: 12px;

    margin-bottom: 35px;
}

.package-card h3 {
    font-size: 30px;

    letter-spacing: -1px;

    margin-bottom: 15px;
}

.price {
    font-size: 40px;

    font-weight: 700;

    letter-spacing: -2px;

    margin: 30px 0 25px;
}

.price span {
    color: #777783;

    font-size: 12px;

    font-weight: 400;

    letter-spacing: 0;
}

.divider {
    height: 1px;

    background: #292931;

    margin-bottom: 25px;
}

.package-card ul {
    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.package-card li {
    color: #aaaab3;

    font-size: 13px;
}

.package-card li::first-letter {
    color: #8b5cf6;
}

.pricing-note {
    margin-top: 25px;

    color: #666672;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================
   ADDITIONAL SERVICES SECTION
========================================= */

.services {
    padding: 130px 8%;

    background: #2d2d2e;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.service-card {
    position: relative;

    min-height: 260px;

    padding: 30px;

    background: #101015;

    border: 1px solid #24242d;

    border-radius: 18px;

    overflow: hidden;

    transition: 0.4s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -100px;

    background: #8b5cf6;

    border-radius: 50%;

    filter: blur(70px);

    opacity: 0;

    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color: #4a405f;

    background: #131319;
}

.service-card:hover::before {
    opacity: 0.15;
}

.service-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 45px;

    border: 1px solid #34343e;

    border-radius: 10px;

    color: #8b5cf6;

    font-size: 11px;
    font-weight: 600;
}

.service-card h3 {
    margin-bottom: 12px;

    font-size: 22px;

    letter-spacing: -0.5px;
}

.service-card p {
    max-width: 330px;

    color: #85858f;

    font-size: 13px;

    line-height: 1.7;
}

.service-arrow {
    position: absolute;

    right: 28px;
    bottom: 25px;

    color: #555560;

    font-size: 20px;

    transition: 0.3s ease;
}

.service-card:hover .service-arrow {
    color: #8b5cf6;

    transform: translate(3px, -3px);
}


/* =========================================
   ABOUT AND CONTACT SECTION
========================================= */

.about {
    min-height: 80vh;

    padding: 150px 8%;

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 100px;

    align-items: center;

    background: #0d0d12;
}

.about h2 {
    max-width: 700px;

    margin-bottom: 35px;
}

.about-text {
    max-width: 650px;

    color: #92929c;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 20px;
}

.contact-box {
    padding: 45px;

    background:
        linear-gradient(
            145deg,
            #18131f,
            #101015
        );

    border: 1px solid #332747;

    border-radius: 24px;
}

.contact-box h3 {
    font-size: 32px;

    line-height: 1.2;

    letter-spacing: -1px;

    margin-bottom: 30px;
}

.email {
    display: block;

    color: #a78bfa;

    font-size: 15px;

    transition: 0.3s ease;
}

.email:hover {
    color: white;
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding: 30px 8%;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: white;
    background: rgba(149, 24, 180, 0.75);

    font-size: 11px;
}

footer .logo {
    color: white;

    font-size: 18px;
}


/* =========================================
   RESPONSIVE DESIGN
========================================= */

@media (max-width: 900px) {

    /* Navigation */
    .navbar nav {
        gap: 20px;
    }

    .navbar nav a {
        font-size: 13px;
    }


    /* Hero */
    .hero {
        padding-top: 140px;

        flex-direction: column;

        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
    }

    .hero-decoration {
        width: 100%;
        height: 350px;

        margin-top: 50px;
    }

    .circle-one {
        width: 280px;
        height: 280px;

        right: 50%;

        transform: translateX(50%);
    }

    .floating-card {
        right: 50%;

        transform:
            translateX(50%)
            rotate(5deg);
    }


    /* Shared Section Heading */
    .section-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }


    /* Packages */
    .package-grid {
        grid-template-columns: 1fr;
    }


    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* About */
    .about {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media (max-width: 600px) {

    /* Navigation */
    .navbar {
        height: 70px;

        padding: 0 5%;
    }

    .logo {
        font-size: 16px;
    }

    .navbar nav {
        gap: 8px;
    }

    .navbar nav a {
        font-size: 10px;
    }

    .language-button {
        padding: 7px 9px;

        font-size: 9px;
    }


    /* Hero */
    .hero {
        padding-left: 6%;
        padding-right: 6%;
    }

    .hero h1 {
        font-size: 50px;

        letter-spacing: -3px;
    }

    .hero-content > p {
        font-size: 15px;
    }


    /* Sections */
    .packages,
    .services,
    .about {
        padding-left: 6%;
        padding-right: 6%;
    }

    .section-heading h2,
    .about h2 {
        font-size: 43px;
    }


    /* Package Cards */
    .package-card {
        padding: 30px 25px;
    }


    /* Service Cards */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 240px;
    }


    /* Contact */
    .contact-box {
        padding: 30px 25px;
    }


    /* Footer */
    footer {
        flex-direction: column;

        gap: 12px;

        text-align: center;
    }

}