@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Figtree:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap');

:root {
    --purple: #6a2cfb;
    --pink: #f45fbb;
    --deep-purple: #3b1c7a;
    --text-dark: #1e1e1e;
    --text-muted: #5f5f5f;
    --white: #ffffff;
}

/*GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text-dark);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/*NAVBAR*/
.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);

    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);

    z-index: 1000;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* MENU*/
.menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu ul {
    display: flex;
    gap: 36px;
}

.menu ul li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 6px 4px;

    transition:
        transform 0.25s cubic-bezier(.4, 0, .2, 1),
        color 0.25s ease;
}

.menu ul li a:hover {
    transform: translateY(-3px) scale(1.05);
    color: var(--deep-purple);
}

/* Gradient underline */
.menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0%;
    height: 1.5px;
    border-radius: 4px;
    background: linear-gradient(45deg, var(--purple), var(--pink));
    transition: width 0.3s ease;
}

.menu ul li a:hover::after {
    width: 100%;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #111;
    border-radius: 3px;
    transition: 0.3s;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
    color: #111;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* MOBILE MENU PANEL */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background: white;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    z-index: 1000;

    display: flex;
    align-items: flex-start;   /* ✅ TOP ALIGN */
    justify-content: flex-start;
    padding-top: 80px;         /* ✅ BELOW CLOSE BUTTON */
    padding-left: 20px;
    padding-right: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-content a {
    font-size: 15px;
    font-weight: 500;
    color: #111;

    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;

    text-align: left;
    transition: 0.3s;
}

.mobile-menu-content a:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.mobile-explore {
    margin-top: 18px;
    margin-bottom: 4px;

    font-size: 13px;
    font-weight: 600;
    color: #6b7280;

    text-align: left;
}

/* EXTRA BUTTONS */
.extra-btn {
    padding: 10px 20px;
    border-radius: 25px;
    background: linear-gradient(45deg, var(--purple), var(--pink));
    color: white !important;
    text-align: center;
}

.extra-btn.dark {
    background: #111;
    color: white !important;
    border: 1px solid #111;
}

.extra-btn.dark:hover {
    background: #000;
    border-color: #000;
}

/* MOBILE NAVBAR FIX */

@media (max-width: 768px) {

    /* Hide desktop menu */
    .menu {
        display: none;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Adjust navbar padding */
    .nav-bar {
        padding: 0 20px;
    }
}

/* HERO SECTION */
.hero {
    padding-top: 120px;
}

.row {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left section */
.left-sec {
    width: 55%;
}

.left-sec h2 {
    font-size: 82px;
    font-weight: 900;

    background: linear-gradient(45deg, var(--pink), var(--purple));

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.left-sec span {
    display: block;
    font-size: 32px;
    margin-top: 10px;
}

.left-sec p {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* HERO BUTTONS */
.btn-group {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.jw-btn,
.hw-btn {
    height: 48px;
    padding: 0 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    min-width: 200px;   /* increase width */
}

/* Join waitlist */
.jw-btn {
    background: transparent;
    border: 2px solid var(--purple);
}

.jw-btn a {
    color: var(--purple);
}

.jw-btn:hover {
    background: var(--purple);
}

.jw-btn:hover a {
    color: white;
}


/* How it works */
.hw-btn {
    background: transparent;
    border: 2px solid var(--purple);
}

.hw-btn a {
    color: var(--purple);
}

.hw-btn:hover {
    background: var(--purple);
}

.hw-btn:hover a {
    color: white;
}

/* HERO IMAGE */
.right-sec {
    align-self: flex-start;
}

.right-sec img {
    width: 630px;
    border-radius: 20px;
    margin-top: 10px;
}

/* HIGHLIGHT CARDS SECTION (DPIIT / AI / EV) */
.highlight-section {
    width: 100%;
    padding: 0 5%;
    margin-top: 50px;
}

/* HIGHLIGHT CARDS LAYOUT*/
.highlight-cards {
    margin-top: 20px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    /* prevents overflow */
}


/* HIGHLIGHT CARD */
.highlight-card {
    flex: 1 1 300px;
    /* responsive width */
    max-width: 440px;
    /* prevents cards from becoming too wide */
    padding: 30px;
    border-radius: 18px;
    background: #ffffff;
    border: 1.5px solid rgba(106, 44, 251, 0.15);
    transition: all 0.35s ease;
}

/* Hover gradient border */
.highlight-card:hover {
    border: 1.5px solid transparent;

    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(45deg, var(--purple), var(--pink)) border-box;
}

/* Hover border effect */
.highlight-card:hover {
    border: 1.5px solid transparent;

    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(45deg, var(--purple), var(--pink)) border-box;
}

/* Icon container */
.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--purple), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

/* Icon */
.card-icon i {
    color: white;
    font-size: 20px;
}

/* Title */
.highlight-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
    background: linear-gradient(45deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.highlight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 768px) {

    .row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .left-sec {
        width: 100%;
    }

    .right-sec {
        width: 100%;
    }

    .right-sec img {
        width: 100%;
        max-width: 350px;
        margin: auto;
    }

    .left-sec h2 {
        font-size: 42px;
    }

    .left-sec span {
        font-size: 20px;
    }

    .left-sec p {
        font-size: 15px;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .jw-btn, .hw-btn {
        width: 100%;
        max-width: 280px;
    }

    .highlight-cards {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .highlight-card {
        width: 100%;
        padding: 20px;
    }
}

/* Problem Solution Section */
.pw-problem-solution {
    padding: 120px 5%;
    background: #faf9ff;
    font-family: 'Montserrat', sans-serif;
}

.pw-container {
    max-width: 1200px;
    margin: auto;
}

.pw-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.pw-tag {
    background: #ede9fe;
    color: #6a2cfb;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.pw-section-header h2 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(45deg, #6a2cfb, #f45fbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pw-ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.pw-ps-card {
    background: #fff;
    padding: 45px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: box-shadow .3s;
}

.pw-ps-card:hover {
    box-shadow: 0 25px 60px rgba(106, 44, 251, 0.15);
}

.pw-ps-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.pw-ps-header h3 {
    font-size: 26px;
    font-weight: 800;
}

.pw-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.pw-icon.red {
    background: #fee2e2;
    color: #ef4444;
}

.pw-icon.green {
    background: #dcfce7;
    color: #22c55e;
}

.pw-ps-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.pw-ps-item i {
    font-size: 20px;
    color: #6a2cfb;
    margin-top: 4px;
}

.pw-ps-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: #3b1c7a;
}

.pw-ps-item p {
    font-size: 14px;
    color: #5f5f5f;
    line-height: 1.6;
}

@media(max-width:900px) {
    .pw-ps-grid {
        grid-template-columns: 1fr;
    }
}

/* HOW PARKWISE WORKS SECTION */
.how-it-works {
    padding: 70px 10%;
    background: #faf9ff;
    text-align: center;
}

/* Section Title */
.how-it-works h3 {

    font-size: 42px;
    margin-bottom: 70px;
    color: var(--deep-purple);
    font-weight: 700;
}

/* Cards layout */
.cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Individual card */
.card {
    background: white;
    padding: 45px 35px;
    width: 320px;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
    position: relative;
    transition: all 0.35s ease;
}

/* Hover */
.card:hover {
    box-shadow: 0 30px 70px rgba(106, 44, 251, 0.2);
}


/* Step Number */
.step-number {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--purple), var(--pink));
    color: white;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Icon */
.card i {
    font-size: 32px;
    color: var(--purple);
    margin-bottom: 18px;
}

/* Card Title */
.card h4 {
    color: var(--purple);
    margin-bottom: 12px;
    font-size: 20px;
}

/* Card Text */
.card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

/* App Launch Section */
.pw-app-launch {
    padding: 120px 5%;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.pw-app-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.pw-app-content {
    width: 50%;
}

.pw-app-content h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
}

.pw-gradient {
    background: linear-gradient(45deg, #6a2cfb, #f45fbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pw-app-desc {
    color: #5f5f5f;
    line-height: 1.7;
    margin-bottom: 25px;
}

.pw-app-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.pw-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.pw-feature i {
    color: #f45fbb;
}

.pw-app-availability {
    margin-bottom: 18px;
    font-size: 14px;
    color: #6b7280;
}

.pw-store-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.pw-store {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    min-width: 180px;
    transition: .3s;
}

.pw-store i {
    font-size: 24px;
}

.pw-store span {
    font-size: 11px;
    display: block;
    opacity: .8;
}

.pw-store strong {
    font-size: 15px;
}

.pw-store.play {
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

.pw-store.apple {
    background: linear-gradient(135deg, #111827, #374151);
}

.pw-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.pw-app-visual {
    width: 45%;
    display: flex;
    justify-content: center;
}

.pw-app-visual video {
    width: 100%;
    max-width: 420px;
    border-radius: 30px;
    border: 2px solid #0f172a;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

@media(max-width:900px) {

    .pw-app-container {
        flex-direction: column;
        text-align: center;
    }

    .pw-app-content,
    .pw-app-visual {
        width: 100%;
    }

    .pw-store-buttons {
        justify-content: center;
    }

}

/* RESPONSIVE DESIGN */
@media (max-width: 1000px) {

    .highlight-cards {
        flex-direction: column;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

}

@media (max-width: 600px) {

    .card {
        width: 100%;
    }

    .left-sec h2 {
        font-size: 60px;
    }

    .right-sec img {
        width: 100%;
    }

}

/* ===== SUPPORT SECTION ===== */
.support-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    text-align: center;
}

.support-container {
    max-width: 800px;
    margin: auto;
}

.support-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 44, 251, 0.2);
}

.contact-item i {
    font-size: 24px;
    color: var(--purple);
    min-width: 24px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--purple);
    text-decoration: none;
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--pink);
}

.contact-item small {
    font-size: 12px;
    color: var(--text-muted);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .support-section {
        padding: 60px 20px;
    }
    
    .support-content h2 {
        font-size: 28px;
    }
    
    .support-content p {
        font-size: 16px;
    }
    
    .contact-item {
        max-width: 100%;
        padding: 20px;
    }
}