/* ==========================================
   PROPPPIXEL HEADER - FINAL BRAND VERSION
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Poppins:wght@400;500&display=swap');

/* Brand Variables */
:root {
    --pp-navy: #0A2342;
    --pp-navy-dark: #081C36;
    --pp-teal: #19B5A5;
    --pp-teal-hover: #27CFC0;
    --pp-white: #ffffff;
    --pp-gray: #94A3B8;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 90px; /* Prevent content hiding behind fixed header */
}

/* ==========================================
   HEADER
   ========================================== */

.pp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--pp-navy) 0%, var(--pp-navy-dark) 100%);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Shrink on Scroll */
.pp-header.scrolled {
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Container */
.pp-container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================
   LOGO
   ========================================== */

.pp-logo img {
    height: 42px;
    display: block;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.pp-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.pp-nav ul li a {
    text-decoration: none;
    color: var(--pp-white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
    position: relative;
    transition: all 0.3s ease;
}

/* Modern Animated Underline */
.pp-nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--pp-teal);
    transition: width 0.3s ease;
}

.pp-nav ul li a:hover {
    color: var(--pp-teal);
}

.pp-nav ul li a:hover::after {
    width: 100%;
}

/* ==========================================
   CTA BUTTON
   ========================================== */

.pp-btn-primary {
    background: var(--pp-teal);
    color: var(--pp-white);
    padding: 11px 28px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.pp-btn-primary:hover {
    background: var(--pp-teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(25, 181, 165, 0.35);
}

/* ==========================================
   MOBILE MENU
   ========================================== */

.pp-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.pp-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--pp-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 992px) {

    .pp-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--pp-navy);
        display: none;
        flex-direction: column;
        padding: 30px 0;
        text-align: center;
    }

    .pp-nav ul {
        flex-direction: column;
        gap: 25px;
    }

    .pp-nav.active {
        display: flex;
    }

    .pp-mobile-toggle {
        display: flex;
    }

    .pp-cta {
        display: none;
    }
}

/* ==========================================
   HERO SECTION - CINEMATIC VERSION
   ========================================== */

.pp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;

    /* Replace with your image path */
    background: url("Images/Proppixel\ -\ Realestate\ complete\ branding\ and\ video\ marketing.webp") no-repeat center center/cover;
}

/* Dark Overlay */
.pp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Professional cinematic overlay */
    background: linear-gradient(
        135deg,
        rgba(10, 35, 66, 0.85) 0%,
        rgba(8, 28, 54, 0.70) 10%
    );

    z-index: 1;
}

/* Container */
.pp-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: auto;
}

/* Headline */
.pp-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 25px;
}

/* Subtext */
.pp-hero-content p {
    font-size: 18px;
    color: #e2e8f0;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 35px auto;
}

/* Buttons */
.pp-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

/* Outline Button */
.pp-btn-outline {
    border: 2px solid #19B5A5;
    color: #19B5A5;
    padding: 11px 28px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pp-btn-outline:hover {
    background: #19B5A5;
    color: #ffffff;
}

/* Small Note */
.pp-hero-note {
    font-size: 14px;
    color: #94A3B8;
}

/* Responsive */
@media (max-width: 768px) {

    .pp-hero-content h1 {
        font-size: 34px;
    }

    .pp-hero-content p {
        font-size: 16px;
    }
}

/* ==========================================
   FOUNDING SECTION - CLEAN RESPONSIVE
   ========================================== */

.pp-founding {
    padding: 100px 20px;
    background: #F8FAFC;
}

.pp-founding-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT SIDE */
.pp-founding-left {
    flex: 1;
}

.pp-founding-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #0A2342;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pp-founding-left p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 450px;
}

.pp-limit-note {
    margin-top: 15px;
    font-size: 14px;
    color: #64748B;
}

/* RIGHT SIDE GRID */
.pp-founding-right {
    flex: 1.3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARDS */
.pp-founding-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(10, 35, 66, 0.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    transition: 0.3s ease;
}

.pp-founding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pp-founding-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #0A2342;
    margin-bottom: 12px;
}

.pp-founding-card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 992px) {

    .pp-founding-wrapper {
        flex-direction: column;
    }

    .pp-founding-right {
        grid-template-columns: 1fr;
    }

    .pp-founding-left p {
        max-width: 100%;
    }
}
/* ==========================================
   MARKETING FAIL SECTION (ISOLATED)
   ========================================== */

.pp-marketing-fail {
    padding: 100px 20px;
    background: #ffffff;
}

.pp-marketing-fail__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.pp-marketing-fail__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px auto;
}

.pp-marketing-fail__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0A2342;
    line-height: 1.2;
    margin-bottom: 20px;
}

.pp-marketing-fail__subtitle {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
}

/* Grid */
.pp-marketing-fail__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.pp-marketing-fail__card {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(10,35,66,0.05);
    transition: 0.3s ease;
    height: 100%;
}

.pp-marketing-fail__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.pp-marketing-fail__icon {
    color: #19B5A5;
    margin-bottom: 18px;
}

.pp-marketing-fail__icon svg {
    width: 32px;
    height: 32px;
}

.pp-marketing-fail__card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #0A2342;
    margin-bottom: 12px;
}

.pp-marketing-fail__card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
    .pp-marketing-fail__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {

    .pp-marketing-fail {
        padding: 70px 16px;
    }

    .pp-marketing-fail__title {
        font-size: 26px;
    }

    .pp-marketing-fail__subtitle {
        font-size: 14px;
    }

    .pp-marketing-fail__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pp-marketing-fail__card {
        padding: 22px;
    }

    .pp-marketing-fail__icon svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================
   GROWTH FRAMEWORK SECTION
   ========================================== */

.pp-growth-framework {
    padding: 110px 20px;
    background: #F8FAFC;
}

.pp-growth-framework__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.pp-growth-framework__header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px auto;
}

.pp-growth-framework__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0A2342;
    margin-bottom: 20px;
}

.pp-growth-framework__subtitle {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
}

/* Grid */
.pp-growth-framework__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Card */
.pp-growth-framework__card {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    border: 1px solid rgba(10,35,66,0.05);
    transition: 0.3s ease;
}

.pp-growth-framework__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pp-growth-framework__icon {
    color: #19B5A5;
    margin-bottom: 20px;
}

.pp-growth-framework__icon svg {
    width: 36px;
    height: 36px;
}

.pp-growth-framework__card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0A2342;
    margin-bottom: 15px;
}

.pp-growth-framework__card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
    .pp-growth-framework__grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .pp-growth-framework {
        padding: 80px 16px;
    }

    .pp-growth-framework__title {
        font-size: 26px;
    }

    .pp-growth-framework__subtitle {
        font-size: 14px;
    }

    .pp-growth-framework__card {
        padding: 25px;
    }

    .pp-growth-framework__icon svg {
        width: 30px;
        height: 30px;
    }
}

/* ==========================================
   LAUNCH FLOW SECTION (UNIQUE STYLE)
   ========================================== */

.pp-launch-flow {
    padding: 120px 20px;
    background: #0A2342;
    color: #ffffff;
}

.pp-launch-flow__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.pp-launch-flow__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.pp-launch-flow__header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pp-launch-flow__header p {
    font-size: 16px;
    color: #cbd5e1;
}

/* Steps container */
.pp-launch-flow__steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 30px;
}

/* Horizontal line */
.pp-launch-flow__steps::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(25, 181, 165, 0.3);
    z-index: 0;
}

/* Step */
.pp-launch-flow__step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
}

.pp-launch-flow__number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #19B5A5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0 auto 20px auto;
    font-size: 18px;
}

.pp-launch-flow__step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 12px;
}

.pp-launch-flow__step p {
    font-size: 14px;
    color: #cbd5e1;
}

/* Tablet */
@media (max-width: 992px) {
    .pp-launch-flow__steps {
        flex-wrap: wrap;
        gap: 50px;
    }

    .pp-launch-flow__steps::before {
        display: none;
    }

    .pp-launch-flow__step {
        flex: 1 1 45%;
    }
}
/* ==========================================
   MOBILE REFINED VERSION - LAUNCH FLOW
   ========================================== */

@media (max-width: 768px) {

    .pp-launch-flow {
        padding: 90px 20px;
    }

    .pp-launch-flow__header h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .pp-launch-flow__header p {
        font-size: 14px;
    }

    /* Convert to vertical timeline */
    .pp-launch-flow__steps {
        flex-direction: column;
        gap: 50px;
        position: relative;
        padding-left: 30px;
    }

    /* Vertical accent line */
    .pp-launch-flow__steps::before {
        content: "";
        position: absolute;
        left: 28px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(25, 181, 165, 0.4);
    }

    .pp-launch-flow__step {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
        position: relative;
    }

    .pp-launch-flow__number {
        width: 48px;
        height: 48px;
        font-size: 15px;
        flex-shrink: 0;
        margin: 0;
        z-index: 2;
    }

    .pp-launch-flow__step h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .pp-launch-flow__step p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ==========================================
   IMPACT SECTION - PREMIUM CREATIVE VERSION
   ========================================== */

.pp-impact {
    padding: 130px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

.pp-impact__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.pp-impact__header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 90px auto;
}

.pp-impact__header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #0A2342;
    margin-bottom: 20px;
}

.pp-impact__header p {
    font-size: 16px;
    color: #64748B;
}

/* Grid */
.pp-impact__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

/* Card */
.pp-impact__card {
    position: relative;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    overflow: hidden;
}

.pp-impact__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px rgba(0,0,0,0.08);
}

/* Big Accent Number */
.pp-impact__number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-weight: 700;
    color: rgba(25, 181, 165, 0.08);
    font-family: 'Montserrat', sans-serif;
}

/* Title */
.pp-impact__card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #19B5A5;
    margin-bottom: 15px;
}

/* Text */
.pp-impact__card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
    .pp-impact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .pp-impact {
        padding: 90px 20px;
    }

    .pp-impact__header h2 {
        font-size: 26px;
    }

    .pp-impact__header p {
        font-size: 14px;
    }

    .pp-impact__card {
        padding: 35px 25px;
    }

    .pp-impact__number {
        font-size: 50px;
        top: 10px;
        right: 15px;
    }

    .pp-impact__card h3 {
        font-size: 18px;
    }

    .pp-impact__card p {
        font-size: 14px;
    }
}

/* ==========================================
   AUTHORITY BLOCK SECTION
   ========================================== */

.pp-authority-block {
    padding: 140px 20px;
    background: #0A2342;
    color: #ffffff;
    position: relative;
}

.pp-authority-block__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

/* LEFT SIDE */
.pp-authority-block__left {
    flex: 1;
}

.pp-authority-block__left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.pp-authority-block__left p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* RIGHT SIDE */
.pp-authority-block__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pp-authority-block__item {
    position: relative;
    padding-left: 25px;
}

/* Teal Accent Line */
.pp-authority-block__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 100%;
    background: #19B5A5;
    border-radius: 4px;
}

.pp-authority-block__item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.pp-authority-block__item p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
    .pp-authority-block__wrapper {
        flex-direction: column;
        gap: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .pp-authority-block {
        padding: 90px 20px;
    }

    .pp-authority-block__left h2 {
        font-size: 26px;
    }

    .pp-authority-block__left p {
        font-size: 14px;
    }

    .pp-authority-block__item h3 {
        font-size: 17px;
    }

    .pp-authority-block__item p {
        font-size: 14px;
    }
}

/* ==========================================
   ELITE CTA SECTION (VISUAL BREAK)
   ========================================== */

.pp-elite-cta {
    padding: 140px 20px;
    background: #F3F7FB;
}

.pp-elite-cta__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

/* LEFT SIDE */

.pp-elite-cta__left {
    flex: 1;
}

.pp-elite-cta__badge {
    display: inline-block;
    background: rgba(25,181,165,0.1);
    color: #19B5A5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

.pp-elite-cta__left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #0A2342;
    line-height: 1.2;
    margin-bottom: 25px;
}

.pp-elite-cta__left p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 30px;
}

.pp-elite-cta__points div {
    margin-bottom: 10px;
    color: #0A2342;
    font-weight: 500;
}

/* RIGHT SIDE */

.pp-elite-cta__right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.pp-elite-cta__card {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 400px;
}

.pp-elite-cta__card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #0A2342;
}

.pp-elite-cta__card p {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 30px;
}

.pp-elite-cta__button {
    display: inline-block;
    background: linear-gradient(135deg, #19B5A5 0%, #27CFC0 100%);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.pp-elite-cta__button:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(25,181,165,0.4);
}

/* Tablet */
@media (max-width: 992px) {
    .pp-elite-cta__wrapper {
        flex-direction: column;
        gap: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .pp-elite-cta {
        padding: 90px 20px;
    }

    .pp-elite-cta__left h2 {
        font-size: 26px;
    }

    .pp-elite-cta__left p {
        font-size: 14px;
    }

    .pp-elite-cta__card {
        padding: 40px 30px;
    }
}

/* ==========================================
   ELITE FAQ SECTION
   ========================================== */

.pp-elite-faq {
    padding: 140px 20px;
    background: linear-gradient(180deg, #0A2342 0%, #081C36 100%);
    color: #ffffff;
}

.pp-elite-faq__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */

.pp-elite-faq__header {
    text-align: center;
    margin-bottom: 70px;
}

.pp-elite-faq__header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pp-elite-faq__header p {
    color: #94A3B8;
    font-size: 15px;
}

/* Accordion */

.pp-elite-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pp-elite-faq__item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

.pp-elite-faq__item:hover {
    border-color: rgba(25,181,165,0.5);
}

/* Question Button */

.pp-elite-faq__question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 25px;
    text-align: left;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

/* Teal Indicator */

.pp-elite-faq__question::after {
    content: "+";
    position: absolute;
    right: 25px;
    font-size: 20px;
    color: #19B5A5;
    transition: 0.3s ease;
}

/* Answer */

.pp-elite-faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #CBD5E1;
    font-size: 14px;
    line-height: 1.6;
    transition: 0.4s ease;
}

/* Active State */

.pp-elite-faq__item.active .pp-elite-faq__answer {
    max-height: 200px;
    padding: 0 25px 20px 25px;
}

.pp-elite-faq__item.active .pp-elite-faq__question::after {
    content: "–";
}

/* Mobile */

@media (max-width: 768px) {

    .pp-elite-faq {
        padding: 90px 20px;
    }

    .pp-elite-faq__header h2 {
        font-size: 26px;
    }

    .pp-elite-faq__question {
        font-size: 14px;
        padding: 18px 20px;
    }

    .pp-elite-faq__answer {
        font-size: 13px;
    }
}

/* ==========================================
   PROPIXEL PREMIUM FOOTER - FINAL VERSION
   ========================================== */

.pp-footer {
    position: relative;
    background: linear-gradient(
        180deg,
        #0A2342 0%,
        #091F3D 40%,
        #081C36 100%
    );
    color: #CBD5E1;
    padding-top: 100px;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

/* Subtle Top Divider Line */

.pp-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

/* Container Grid */

.pp-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 70px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 70px;
}

/* Logo */

.pp-footer__logo {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.pp-footer__logo span {
    color: #19B5A5;
}

.pp-footer__brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
    color: #94A3B8;
}

/* Column */

.pp-footer__column h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 22px;
    color: #ffffff;
    letter-spacing: 0.4px;
}

.pp-footer__column a {
    display: block;
    margin-bottom: 14px;
    font-size: 14px;
    text-decoration: none;
    color: #CBD5E1;
    transition: all 0.3s ease;
    position: relative;
}

.pp-footer__column a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #19B5A5;
    transition: 0.3s ease;
}

.pp-footer__column a:hover {
    color: #ffffff;
}

.pp-footer__column a:hover::after {
    width: 40%;
}

.pp-footer__column p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #CBD5E1;
}

/* Bottom Bar */

.pp-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 25px 0;
}

.pp-footer__bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pp-footer__bottom-container span {
    font-size: 13px;
    color: #94A3B8;
}

.pp-footer__bottom-links a {
    margin-left: 22px;
    font-size: 13px;
    text-decoration: none;
    color: #94A3B8;
    transition: 0.3s ease;
}

.pp-footer__bottom-links a:hover {
    color: #19B5A5;
}

/* ======================
   RESPONSIVE
   ====================== */

@media (max-width: 992px) {

    .pp-footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

}

@media (max-width: 768px) {

    .pp-footer {
        padding-top: 70px;
    }

    .pp-footer__container {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .pp-footer__brand p {
        margin: 0 auto;
    }

    .pp-footer__bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .pp-footer__bottom-links a {
        margin: 0 10px;
    }
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */

.pp-whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #19B5A5 0%, #27CFC0 100%);
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(25,181,165,0.35);
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Icon */
.pp-whatsapp-float__icon {
    display: flex;
    align-items: center;
}

/* Hover Effect */
.pp-whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(25,181,165,0.45);
}

/* Mobile - Icon Only */
@media (max-width: 768px) {

    .pp-whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }

    .pp-whatsapp-float__text {
        display: none;
    }
}

/* ==========================================
   APPLICATION MODAL
========================================== */

.pp-apply-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

/* Show State */
.pp-apply-modal.active {
    display: flex;
}

/* Overlay */
.pp-apply-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 30, 0.85);
    backdrop-filter: blur(6px);
}

/* Content */
.pp-apply-modal__content {
    position: relative;
    width: 95%;
    max-width: 520px;
    background: linear-gradient(180deg, #0E2A4D 0%, #081C36 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    animation: ppModalFade 0.3s ease;
    color: #ffffff;
}

/* Animation */
@keyframes ppModalFade {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Close Button */
.pp-apply-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 26px;
    color: #94A3B8;
    cursor: pointer;
}

/* Headings */
.pp-apply-modal__content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pp-apply-modal__content p {
    font-size: 14px;
    color: #94A3B8;
    margin-bottom: 30px;
}

/* Form */

.pp-apply-form__group {
    margin-bottom: 18px;
}

.pp-apply-form input,
.pp-apply-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.pp-apply-form input:focus,
.pp-apply-form textarea:focus {
    border-color: #19B5A5;
    box-shadow: 0 0 0 2px rgba(25,181,165,0.3);
}

/* Submit Button */
.pp-apply-form__submit {
    width: 100%;
    background: linear-gradient(135deg, #19B5A5 0%, #27CFC0 100%);
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.pp-apply-form__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(25,181,165,0.4);
}

/* Mobile */
@media (max-width: 768px) {
    .pp-apply-modal__content {
        padding: 35px 25px;
    }
}

/* Success Message */

.pp-form-success {
    display: none;
    margin-top: 15px;
    padding: 12px;
    background: rgba(25,181,165,0.15);
    border: 1px solid #19B5A5;
    border-radius: 8px;
    font-size: 14px;
    color: #19B5A5;
    text-align: center;
}
