:root {
    --primary-grad: linear-gradient(90deg, #8e2de2, #f00b51);
    --dark: #0f172a;
    --muted: #64748b;
    --glass: rgba(255, 255, 255, 0.85);
}

* { box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #fafafa;
    color: var(--dark);
    margin: 0;
}

/* NAV */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
}
.logo span { color: #8e2de2; }

.nav-links a {
    margin-right: 25px;
    text-decoration: none;
    font-weight: 600;
    color: var(--dark);
}

/* HERO */
.hero {
    position: relative;
    text-align: center;
    padding: 140px 8% 160px;
    background:
        linear-gradient(
            rgba(15, 23, 42, 0.7),
            rgba(15, 23, 42, 0.7)
        ),
        url("hero.png") center / cover no-repeat;
    color: #ffffff;
}
.hero p {
    color: #e5e7eb;
    max-width: 650px;
    margin: 20px auto 0;
}
.hero .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
}
.hero .btn-outline:hover {
    background: #ffffff;
    color: #0f172a;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
}
.hero h1 span { color: #8e2de2; }
.hero h1 em { font-style: italic; color: var(--muted); }

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* BUTTONS */
.btn-gradient {
    background: var(--primary-grad);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.btn-black {
    background: #000;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
}

.btn-outline {
    border: 2px solid #8e2de2;
    background: transparent;
    color: #8e2de2;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
}

/* SECTION TITLES */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

/* ABOUT US */
.about-section {
    padding: 100px 8%;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    align-items: center;
}

.about-text {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 20px;
}

.about-highlight {
    background: #fafafa;
    border: 1px solid #f1f5f9;
    padding: 40px;
    border-radius: 30px;
}

/* SERVICES */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 8% 30px;
}

.tab {
    border: 1px solid #e5e7eb;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    background: transparent;
}

.tab.active {
    background: var(--primary-grad);
    color: white;
    border: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 8%;
}

.card {
    background: white;
    padding: 45px;
    border-radius: 35px;
    border: 1px solid #f1f5f9;
    transition: 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #8e2de2;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #8e2de2;
    margin: 18px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    color: var(--muted);
}

.feature-list li {
    margin: 12px 0;
    padding-left: 22px;
    position: relative;
}
.feature-list li::before {
    content: "✓";
    color: #8e2de2;
    position: absolute;
    left: 0;
}

/* WHY CHOOSE US */
/* WHY CHOOSE WEBNOVA – STRIP STYLE */
/* WHY CHOOSE – ELEGANT VERSION */
.why-elegant {
    padding: 110px 8%;
    background: #ffffff;
}

.why-wrap {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.why-heading p {
    margin-top: 20px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item {
    position: relative;
    padding-left: 30px;
}

.why-item span {
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--primary-grad);
    border-radius: 50%;
}

.why-item h4 {
    margin-bottom: 6px;
}

.why-item p {
    color: var(--muted);
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 900px) {
    .why-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


/* MODAL OVERLAY */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* MODAL BOX */
.modal-content {
    background: #ffffff;
    padding: 45px 50px 50px;
    border-radius: 30px;
    width: 90%;
    max-width: 520px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
    animation: modalFade 0.35s ease;
}

/* ANIMATION */
@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* CLOSE BUTTON */
.modal .close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 22px;
    cursor: pointer;
    color: #64748b;
}
.modal .close:hover {
    color: #000;
}

/* MODAL TEXT */
.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* FORM */
.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* INPUTS */
.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: 0.25s ease;
}

.modal-content textarea {
    resize: none;
}

/* INPUT FOCUS */
.modal-content input:focus,
.modal-content textarea:focus {
    border-color: #8e2de2;
    box-shadow: 0 0 0 3px rgba(142,45,226,0.15);
}

/* SUBMIT BUTTON */
.btn-gradient-full {
    margin-top: 10px;
    background: var(--primary-grad);
    color: #ffffff;
    padding: 14px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-gradient-full:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 25px rgba(142,45,226,0.3);
}


/* FOOTER */
/* PREMIUM FOOTER */
.footer-pro {
    background: linear-gradient(180deg, #0b1220, #020617);
    color: #e5e7eb;
    padding-top: 80px;
}

.footer-main {
    padding: 0 8% 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.footer-logo span {
    color: #8e2de2;
}

.footer-brand p {
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 420px;
}

/* CTA */
.footer-cta {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}
.footer-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(37,211,102,0.35);
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* CONTACT */
.footer-contact p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
}
.footer-contact a:hover {
    color: #ffffff;
}

/* BOTTOM BAR */
.footer-bottom-pro {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 20px 8%;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* MOBILE */
@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
    z-index: 3000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}

