/* =========================================
   LIFT PLZ - Responsive Website Styles
   Theme: Dark Blue + Saffron, White BG
   ========================================= */

:root {
    --primary-blue: #1a2b6d;
    --dark-blue: #0f1f5a;
    --saffron: #ff7a00;
    --saffron-light: #ff9933;
    --light-bg: #ffffff;
    --soft-gray: #f5f7fb;
    --text-dark: #1a2b6d;
    --text-body: #333333;
    --text-muted: #6b7280;
    --shadow: 0 8px 25px rgba(26, 43, 109, 0.08);
    --shadow-hover: 0 12px 35px rgba(26, 43, 109, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}
.nav-menu a.active {
    color: #ff7a00;
    font-weight: 600;
}
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
    background: var(--light-bg);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}



/* ============ HEADER / NAVIGATION ============ */
.header {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    width:100%;
}

.nav-container {
    width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-area img {
    height: 60px;
    width: auto;
}

/* Logo Image */
.liftplz-logo img{
    width: 85px;
    height: auto;
    display: block;
}

/* Container to align badge and text side-by-side */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Arial Black', Arial, sans-serif;
}



h1{
     margin: 0;
     line-height: 1;
    letter-spacing: 3px;
      padding-left: 5px;
}

          /* Lift Text */
.lift{
  color: #0a2c73;
  font-size: 50px;
  font-weight: 900;
}
         /* Plz Text */
.plz{
  color: #ff7a00;
  font-size: 50px;
  font-weight: 900;
 }

/* Location Pin absolute positioning directly over the dotless 'ı' */
.location-pin {
    position: absolute;
    top: 0px;      /* moves pin above the i */
    left: 39px;     /* align exactly above the ı */
    color: #ff7a00;
    font-size: 15px;
    font-style: normal;
    z-index: 10;
}

/* needed so absolute works relative to Lift text */
.lift-wrapper{
    position: relative;
    display: inline-block;
}


   p{
           margin: 3px 0 2px 0;  
           font-size: 12px;
           font-weight: 500;
           }

        /* -- Symbols Color */
           p{
             color: #ff7a00;
            }

        /* Text Color */
           p{
             color: #0a2c73;
            }




.nav-menu {
    list-style: none;
    display: flex;
    gap: 0px; /* Changed from 10px to 0 to completely remove the gaps */
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu li a {
    display: inline-block;
    padding: 10px 18px;
    background: var(--primary-blue);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
   border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
    transition: var(--transition);
    border: 3px solid transparent;
    box-shadow: 4px 4px 14px  rgba(38, 38, 98, 0.619);
}   

.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--saffron);
    color: #ffffff;   
}

.mobile-toggle {
    display: none;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 10px 14px;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
}

/* ============ HERO SECTION ============ */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    color: var(--saffron);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--primary-blue);
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero h1 span {
    color: var(--saffron);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-description {
    color: var(--text-body);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--saffron);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 43, 109, 0.3);
}

.btn-secondary {
    background: var(--primary-blue);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--saffron);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--saffron);
    color: #fff;
    border-color: var(--saffron);
}

.hero-video {
    text-align: center;
}

.hero-video video{
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ============ SECTION COMMON ============ */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--soft-gray);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title h2 span {
    color: var(--saffron);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-title .accent-line {
    width: 80px;
    height: 4px;
    background: var(--saffron);
    margin: 16px auto;
    border-radius: 2px;
}

/* ============ ABOUT / MOVEMENT ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.about-grid img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 auto;
    display: block;
}

.about-text h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-body);
    margin-bottom: 14px;
}

.about-text ul {
    list-style: none;
    margin: 16px 0;
}

.about-text ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-body);
}

.about-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: 700;
    font-size: 18px;
}

/* ============ FEATURE / BENEFIT CARDS ============ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--saffron);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-blue);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
}

.feature-card h3 {
    color: var(--primary-blue);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-body);
    font-size: 0.95rem;
}

/* ============ CONTRIBUTOR / SEEKER SECTION ============ */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.two-col-section.reverse {
    direction: rtl;
}

.two-col-section.reverse > * {
    direction: ltr;
}

.col-image img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 auto;
    display: block;
}

.col-content h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 16px;
}

.col-content h2 span {
    color: var(--saffron);
}

.col-content > p {
    color: var(--text-body);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.benefit-list {
    list-style: none;
    margin-top: 20px;
}

.benefit-list li {
    background: #fff;
    padding: 16px 20px 16px 60px;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.benefit-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
}

.benefit-list li::before {
    content: '★';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--saffron);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.benefit-list li strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.benefit-list li span {
    color: var(--text-body);
    font-size: 0.95rem;
}

/* ============ MEMBERSHIP PLANS ============ */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.plan-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--saffron);
    box-shadow: var(--shadow-hover);
}

.plan-card.featured {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: #fff;
    transform: scale(1.05);
}

.plan-card.featured h3,
.plan-card.featured .plan-price {
    color: #fff;
}

.plan-card.featured .badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--saffron);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-card h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--saffron);
    margin: 20px 0;
}

.plan-price span {
    font-size: 1rem;
    color: inherit;
    opacity: 0.7;
}

.plan-card.featured .plan-price {
    color: var(--saffron-light);
}

.plan-card p {
    margin-bottom: 20px;
}

.why-membership {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.why-membership h3 {
    color: var(--primary-blue);
    margin-bottom: 16px;
    text-align: center;
}

.why-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.why-list li {
    padding: 10px 16px 10px 36px;
    position: relative;
    background: var(--soft-gray);
    border-radius: 8px;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--saffron);
    font-weight: 700;
}

/* ============ STATS / IMPACT BAR ============ */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 60px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--saffron);
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-item p {
    color: #e0e6ff;
    font-size: 1rem;
}

/* ============ ENVIRONMENT / EMOTIONAL ============ */
.emotional-section {
    background: linear-gradient(135deg, #fff5e6 0%, #ffeed1 100%);
    padding: 80px 0;
    text-align: center;
}

.emotional-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.emotional-section h2 span {
    color: var(--saffron);
}

.emotional-section .quote {
    font-size: 1.15rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 30px;
    font-style: italic;
    line-height: 1.8;
}

/* ============ APP DOWNLOAD ============ */
.app-download {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.app-download h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.app-download h2 span {
    color: var(--saffron);
}

.app-download p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-btn {
    background: #fff;
    color: var(--primary-blue);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.app-btn:hover {
    background: var(--saffron);
    color: #fff;
    transform: translateY(-3px);
}

/* ============ CONTACT SECTION ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 14px;
    padding-left: 32px;
    position: relative;
}

.contact-info p::before {
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: var(--saffron);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 11px;
}

.contact-info .email::before { content: '✉'; }
.contact-info .phone::before { content: '☎'; }
.contact-info .location::before { content: '📍'; }
.contact-info .web::before { content: '🌐'; }

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e6ff;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--saffron);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ============ FOOTER ============ */
.footer {
    background: #0a154d;
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 12px;
   
    padding: 8px;
    border-radius: 8px;
}


.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
     color: white;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color:white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--saffron);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 0.9rem;
   
}
.footer-bottom p {
    color:#ffffff;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.social-icons a:hover {
    background: var(--saffron);
    transform: translateY(-3px);
}

/* ============ FUTURE / INNOVATIONS LIST ============ */
.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.innovation-item {
    background: #fff;
    padding: 20px 20px 20px 60px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border-left: 4px solid var(--saffron);
}

.innovation-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.innovation-item::before {
    content: '⚡';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.innovation-item h4 {
    color: var(--primary-blue);
    font-size: 1rem;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 992px) {
    .hero-container,
    .about-grid,
    .two-col-section,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .two-col-section.reverse {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 24px;
        left: 24px;
        background: #fff;
        flex-direction: column;
        padding: 16px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        gap: 8px;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tagline-mini {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-area img {
        height: 48px;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
