/* =========================================================
   NKC-TECH PRICING PAGE
   Modern Responsive Design
========================================================= */


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    background: #ffffff;

    color: #111827;

    overflow-x: hidden;
}

.container {
    width: min(1180px, 92%);

    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(7, 18, 38, 0.94);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav-container {
    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.logo-text {
    display: flex;

    align-items: center;

    gap: 12px;
}

.circular-frame {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    overflow: hidden;

    border:
        2px solid #d4af37;

    background: #ffffff;
}

.circular-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.brand-name {
    color: #ffffff;

    font-size: 1.25rem;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 20px;

    list-style: none;
}

.nav-links a {
    position: relative;

    color: #ffffff;

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: 500;

    transition:
        color 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a.active {
    color: #d4af37;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background: #d4af37;

    transition:
        width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* =========================================================
   DARK MODE BUTTON
========================================================= */

.dark-mode-btn {
    width: 38px;
    height: 38px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.1);

    cursor: pointer;

    font-size: 1rem;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.dark-mode-btn:hover {
    transform:
        rotate(20deg);

    background:
        rgba(212, 175, 55, 0.25);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;

    background: transparent;

    border: none;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 27px;
    height: 3px;

    margin: 5px 0;

    background: #ffffff;

    border-radius: 5px;
}


/* =========================================================
   PRICING SECTION
========================================================= */

.pricing-section {
    position: relative;

    padding:
        170px 0 110px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );

    overflow: hidden;
}


/* Decorative circles */

.pricing-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -250px;

    border-radius: 50%;

    background:
        rgba(212, 175, 55, 0.08);

    pointer-events: none;
}

.pricing-section::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    bottom: -200px;
    left: -200px;

    border-radius: 50%;

    background:
        rgba(11, 49, 95, 0.05);

    pointer-events: none;
}


/* =========================================================
   PRICING HEADER
========================================================= */

.pricing-header {
    position: relative;

    z-index: 2;

    max-width: 750px;

    margin:
        0 auto 70px;

    text-align: center;
}


/* =========================================================
   BADGE
========================================================= */

.section-badge {
    display: inline-block;

    padding:
        8px 17px;

    margin-bottom: 20px;

    border-radius: 50px;

    background:
        rgba(11, 49, 95, 0.08);

    color: #0b315f;

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   TITLE
========================================================= */

.section-title {
    margin-bottom: 18px;

    color: #071a33;

    font-size:
        clamp(
            2.5rem,
            5vw,
            4rem
        );

    line-height: 1.1;

    font-weight: 900;
}

.section-title span {
    color: #d4af37;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.section-description {
    max-width: 650px;

    margin: auto;

    color: #64748b;

    font-size: 1.05rem;

    line-height: 1.8;
}


/* =========================================================
   PRICING GRID
========================================================= */

.pricing-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(280px, 430px));

    justify-content: center;

    gap: 28px;
}


/* =========================================================
   PRICE CARD
========================================================= */

.price-card {
    position: relative;

    padding:
        42px 35px;

    min-height: 430px;

    display: flex;

    flex-direction: column;

    border-radius: 24px;

    background: #ffffff;

    border:
        1px solid #e5e7eb;

    box-shadow:
        0 10px 35px
        rgba(7, 26, 51, 0.07);

    overflow: hidden;

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Reveal */

.price-card.show {
    opacity: 1;

    transform:
        translateY(0);
}


/* Hover */

.price-card:hover {
    transform:
        translateY(-10px);

    border-color:
        rgba(212, 175, 55, 0.5);

    box-shadow:
        0 25px 55px
        rgba(7, 26, 51, 0.13);
}


/* =========================================================
   POPULAR CARD
========================================================= */

.price-card.popular {
    border:
        2px solid #d4af37;

    box-shadow:
        0 18px 50px
        rgba(212, 175, 55, 0.16);
}


/* =========================================================
   POPULAR BADGE
========================================================= */

.popular-badge {
    position: absolute;

    top: 20px;
    right: 20px;

    padding:
        6px 12px;

    border-radius: 50px;

    background: #d4af37;

    color: #071a33;

    font-size: 0.68rem;

    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   PRICE ICON
========================================================= */

.price-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 17px;

    background:
        #f1f5f9;

    font-size: 1.8rem;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.price-card:hover .price-icon {
    transform:
        scale(1.1)
        rotate(-4deg);

    background:
        rgba(212, 175, 55, 0.15);
}


/* =========================================================
   CARD TITLE
========================================================= */

.price-card h2 {
    margin-bottom: 8px;

    color: #0b315f;

    font-size: 1.5rem;

    font-weight: 800;
}


/* =========================================================
   PRICE LABEL
========================================================= */

.price-label {
    margin-bottom: 25px;

    color: #d4af37;

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================================
   CUSTOM PRICE
========================================================= */

.price {
    margin:
        5px 0 25px;

    color: #d4af37;

    font-size: 2rem;

    font-weight: 900;
}


/* =========================================================
   PRICING LIST
========================================================= */

.price-card ul {
    display: flex;

    flex-direction: column;

    gap: 15px;

    list-style: none;

    margin-bottom: 35px;
}

.price-card li {
    position: relative;

    padding-left: 26px;

    color: #64748b;

    font-size: 0.95rem;

    line-height: 1.5;
}

.price-card li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: #d4af37;

    font-weight: 900;
}


/* =========================================================
   BUTTON
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    margin-top: auto;

    padding:
        12px 25px;

    border-radius: 10px;

    background:
        #0b315f;

    color: #ffffff;

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn:hover {
    background:
        #d4af37;

    color:
        #071a33;

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(212, 175, 55, 0.25);
}


/* =========================================================
   PAYMENT SECTION
========================================================= */

.payment-section {
    position: relative;

    padding:
        110px 0 120px;

    background:
        #071a33;

    overflow: hidden;
}


/* Payment decorative circle */

.payment-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    left: -250px;

    border-radius: 50%;

    background:
        rgba(212, 175, 55, 0.06);

    pointer-events: none;
}


/* =========================================================
   PAYMENT HEADER
========================================================= */

.payment-header {
    position: relative;

    z-index: 2;

    max-width: 760px;

    margin:
        0 auto 60px;

    text-align: center;
}

.payment-header .section-badge {
    background:
        rgba(212, 175, 55, 0.1);

    color: #d4af37;
}

.payment-header h2 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size:
        clamp(
            2.2rem,
            5vw,
            3.5rem
        );

    font-weight: 900;
}

.payment-header h2 span {
    color: #d4af37;
}

.payment-header p {
    color:
        #aab6c7;

    font-size: 1rem;

    line-height: 1.8;
}


/* =========================================================
   PAYMENT CARDS CONTAINER
========================================================= */

.payment-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(280px, 430px));

    justify-content: center;

    gap: 28px;
}


/* =========================================================
   PAYMENT CARD
========================================================= */

.payment-card {
    position: relative;

    padding:
        35px;

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    backdrop-filter:
        blur(10px);

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.18);

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.payment-card.show {
    opacity: 1;

    transform:
        translateY(0);
}

.payment-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(212, 175, 55, 0.5);

    background:
        rgba(255, 255, 255, 0.08);
}


/* =========================================================
   BANK ICON
========================================================= */

.bank-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;

    border-radius: 15px;

    background:
        rgba(212, 175, 55, 0.12);

    font-size: 1.6rem;
}


/* =========================================================
   BANK NAME
========================================================= */

.payment-card h3 {
    margin-bottom: 25px;

    color: #ffffff;

    font-size: 1.4rem;

    font-weight: 800;
}


/* =========================================================
   ACCOUNT DETAILS
========================================================= */

.account-details {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 30px;
}

.account-details p {
    color: #aab6c7;

    font-size: 0.92rem;

    line-height: 1.6;
}

.account-details strong {
    color: #ffffff;
}

.account-number {
    color: #d4af37;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   CONFIRM PAYMENT BUTTON
========================================================= */

.confirm-btn {
    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    width: 100%;

    padding:
        12px 20px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.whatsapp {
    background:
        #d4af37;

    color:
        #071a33;
}

.whatsapp:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(212, 175, 55, 0.25);

    background:
        #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 0.82rem;
    }

}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 850px) {

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;

        top: 78px;
        left: 0;

        width: 100%;

        background:
            rgba(5, 16, 34, 0.98);

        max-height: 0;

        overflow: hidden;

        transition:
            max-height 0.4s ease;
    }

    nav.active {
        max-height: 600px;
    }

    .nav-links {
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding:
            15px 6%;
    }

    .nav-links li {
        padding: 12px 0;
    }

    .nav-links a {
        display: block;

        font-size: 1rem;
    }

    .dark-mode-btn {
        margin-top: 5px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .pricing-section {
        padding:
            130px 0 80px;
    }

    .pricing-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .pricing-grid,
    .payment-container {
        grid-template-columns: 1fr;
    }

    .price-card {
        min-height: 400px;

        padding:
            32px 25px;
    }

    .payment-section {
        padding:
            85px 0 90px;
    }

    .payment-card {
        padding:
            30px 24px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .brand-name {
        font-size: 1.05rem;
    }

    .circular-frame {
        width: 42px;
        height: 42px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .price-card {
        padding:
            28px 20px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

}