@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Bebas+Neue&display=swap');

:root {
    --bg: #0f0f0f;
    --text: #e9e9e9;
    --accent: #d3e97a;
    --max-width: 1100px;
    --base-font: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', Arial, sans-serif;
    transition: all 0.3s ease;
}

html,
body {
    overflow-x: hidden !important;
    scroll-behavior: smooth !important;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background-color: #0a0a0a;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    text-decoration: none;
    color: #ccc;
    font-weight: bold;
    font-size: 1.2rem;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: #ccc;
    margin: 0 10px;
    padding: 6px 8px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent);
    transform: scale(1.05);
}

.main-nav a.active {
    background: rgba(211, 233, 122, 0.08);
    color: var(--accent);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Pricing Section */
.ps {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    min-height: 80vh;
}

.pricing-card {
    background: #1a1a1a;
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.tab {
    flex: 1;
    padding: 15px;
    background: #111;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    color: var(--text);
    font-size: 14px;
}

.tab:hover {
    background: #1a1a1a;
    color: var(--accent);
}

.tab.active {
    background: var(--accent);
    color: #000;
    border-bottom: 2px solid var(--accent);
}

.card-content {
    display: none;
    padding: 30px;
    animation: fadeIn 0.4s ease;
    background: #1a1a1a;
}

.card-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.card-content h3 {
    color: var(--accent);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Manrope', sans-serif;
}

.card-content p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
}

.delivery-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 20px;
    color: #888;
    font-family: 'Manrope', sans-serif;
}

.included h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.included ul {
    list-style: none;
    margin-bottom: 25px;
}

.included li {
    font-size: 14px;
    margin: 8px 0;
    color: #ccc;
    position: relative;
    padding-left: 25px;
    font-family: 'Manrope', sans-serif;
    line-height: 1.4;
}

.included li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.continue-btn {
    width: 100%;
    background: var(--accent);
    color: #000;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.continue-btn:hover {
    background: #c4dd63;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 233, 122, 0.3);
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: #0d0d0d;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    color: white;
}

.contact-left,
.contact-right {
    flex: 1;
    min-width: 280px;
}

.contact-left h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.contact-left a {
    color: var(--accent);
    text-decoration: none !important;
}

.contact-left p {
    margin-bottom: 1rem;
    color: #ccc;
    font-family: 'Manrope', sans-serif;
}

.social-icons {
    margin: 1.5rem 0;
    font-size: 1.8rem;
}

.social-icons a {
    margin-right: 1rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--accent));
}

.contact-right form {
    display: flex;
    flex-direction: column;
}

.contact-right label {
    margin-bottom: 5px;
    color: #ccc;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
}

.contact-right input,
.contact-right textarea {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    color: white;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
}

.contact-right input:hover,
.contact-right textarea:hover {
    border: 1px solid var(--accent);
    background-color: #1f1f1f;
    box-shadow: 0 0 8px rgba(211, 233, 122, 0.3);
}

.contact-right input:focus,
.contact-right textarea:focus {
    outline: none;
    border: 1px solid var(--accent);
    background-color: #1f1f1f;
    box-shadow: 0 0 12px rgba(211, 233, 122, 0.4);
}

.contact-right button {
    background-color: var(--accent);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    width: fit-content;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
}

.contact-right button:hover {
    background-color: #c4dd63;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(211, 233, 122, 0.3);
}

/* Footer */
.site-footer {
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 40px;
}

footer {
    font-size: 16px;
    color: #777;
    text-align: center;
    width: 100%;
    margin-top: 30px;
    font-family: 'Manrope', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ps {
        padding: 2rem 1rem;
        margin: 15px;
    }

    .pricing-card {
        max-width: 100%;
    }

    .container,
    .contact {
        flex-direction: column;
        align-items: center;
    }

    .tabs {
        flex-direction: column;
    }

    .tab {
        padding: 12px;
    }

    .contact-right button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 800px) {
    .nav-toggle {
        display: inline-block;
    }

    .main-nav {
        display: none;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
        background: #111;
        padding: 1rem;
        border-radius: 8px;
    }
}

/* Hover Effects */
.pricing-card {
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(211, 233, 122, 0.1);
}

.contact {
    transition: all 0.5s ease;
}

.contact:hover {
    background: rgba(13, 13, 13, 0.95);
}