:root {
    --primary: #FF4155;
    --secondary: #009A66; /* Lust Talks Green */
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --bg-light: #FFFFFF;
    --bg-gray: #F8F9FA;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pally', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a.red-link,
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.language-selector select {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-family: 'Pally', sans-serif;
    font-weight: 700;
    outline: none;
    background: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
}

.login-button {
    background: var(--secondary);
    color: #fff;
    padding: 0.6rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,154,102,0.3);
}

main {
    margin-top: 70px;
}

/* ===== HERO & SLIDER ===== */
.hero-new {
    width: 100%;
    position: relative;
    padding-bottom: 2rem;
}

.hero-slider {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
}

.slide-content {
    flex: 1;
    color: white;
    text-align: left;
}

.slide-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.talk-now-btn {
    background: var(--secondary);
    color: white;
    font-weight: 700;
    padding: 1rem 3.5rem;
    border-radius: 40px;
    display: inline-block;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.talk-now-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,154,102,0.4);
}

.slide-mockup {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.slide-mockup img {
    height: 500px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-prev { left: 40px; }
.slider-next { right: 40px; }

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 4rem;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 10px;
}

/* ===== APP PITCH CARD ===== */
.app-pitch {
    max-width: 900px;
    margin: -80px auto 0;
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 20;
    text-align: center;
}

.app-pitch-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pitch-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
}

.app-pitch-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.app-pitch-details p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.app-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.app-stats h3 {
    font-size: 1.8rem;
}

.divider {
    width: 1px;
    height: 50px;
    background: #eee;
}

.download-now-btn {
    background: var(--secondary);
    color: white;
    font-weight: 700;
    padding: 1.2rem 4rem;
    border-radius: 40px;
    display: inline-block;
    cursor: pointer;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    box-shadow: 0 8px 25px rgba(0,154,102,0.3);
}

.pitch-screens {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.pitch-screens img {
    width: 200px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== FEATURES SECTION ===== */
.features-section-new {
    max-width: 1100px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.features-section-new h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 5rem;
}

.features-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(255,65,85,0.2);
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

.feature-text {
    font-size: 1.35rem;
    font-weight: 700;
}

.feature-image img {
    height: 450px;
    object-fit: contain;
}

/* ===== REVIEWS / SPEECH BUBBLES ===== */
.reviews-section {
    background: var(--bg-gray);
    padding: 8rem 2rem;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.8rem;
    margin-bottom: 5rem;
}

.reviews-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.review-card.bubble {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    position: relative;
    transition: transform 0.3s;
}

.review-card.bubble:hover {
    transform: translateY(-5px);
}

.review-card.bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--white);
}

.stars {
    color: #FFB800;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.review-text {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.reviewer img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reviewer span {
    font-weight: 900;
    font-size: 1.2rem;
}

/* ===== NEW PREMIUM FOOTER ===== */
.footer-new {
    background: #0B121C;
    position: relative;
    padding-top: 100px;
    color: white;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 80px;
}

.footer-wave .shape-fill {
    fill: #FFFFFF;
}

.footer-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo-main {
    height: 50px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.footer-brand-col p {
    color: #A0AEC0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.app-badges {
    display: flex;
    gap: 1rem;
}

/* ===== ICON-BASED APP BUTTONS ===== */
.app-buttons-new {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-store {
    background: #000;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-store:hover {
    background: #222;
    border-color: white;
    transform: translateY(-3px);
}

.btn-store i {
    font-size: 1.8rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-text span {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.btn-text strong {
    font-size: 1rem;
    font-weight: 700;
}

/* ===== ICON-BASED SOCIAL BUTTONS ===== */
.social-pills-new {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    transform: scale(1.1) rotate(5deg);
}

.social-btn.linkedin:hover {
    background: #0077b5;
    transform: scale(1.1) rotate(-5deg);
}

.social-btn i {
    transition: transform 0.3s ease;
}

.social-btn:hover i {
    transform: scale(1.2);
}

.footer-links-col, 
.footer-contact-col {
    display: flex;
    flex-direction: column;
}

.footer-links-col a, 
.footer-contact-col a {
    color: #A0AEC0 !important;
    text-decoration: none !important;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links-col a:hover, 
.footer-contact-col a:hover {
    color: white !important;
}

.footer-bottom-new {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #4A5568;
    font-size: 0.9rem;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        display: flex !important; /* Override the none display from earlier if any */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .slide-overlay {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 2rem;
    }
    
    .slide-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-mockup {
        display: none;
    }
    
    .features-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .slider-dots {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .app-pitch {
        padding: 2rem 1rem;
        margin-top: -40px;
    }

    .app-stats {
        gap: 1rem;
    }

    .app-stats h3 {
        font-size: 1.4rem;
    }

    .pitch-screens img {
        width: 30%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .app-badges, .social-pills {
        justify-content: center;
    }
    .footer-new {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .talk-now-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .app-pitch-details {
        flex-direction: column;
    }

    .app-stats {
        flex-wrap: wrap;
    }

    .divider {
        display: none;
    }

    .features-section-new h2 {
        font-size: 2rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ===== SUB-PAGES PREMIUM DESIGN ===== */
.subpage-hero {
    background: linear-gradient(135deg, #FF4155 0%, #7000FF 100%);
    padding: 8rem 2rem;
    text-align: center;
    color: white;
}

.subpage-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.subpage-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.policy-container {
    max-width: 1000px;
    margin: -4rem auto 6rem;
    padding: 0 2rem;
    position: relative;
    z-index: 20;
}

.policy-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.policy-section {
    margin-bottom: 4rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.policy-section h2::before {
    content: '';
    width: 8px;
    height: 32px;
    background: var(--primary);
    border-radius: 10px;
}

.policy-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-section ul {
    list-style: none;
    margin-left: 0;
}

.policy-section ul li {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.policy-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 900;
}

@media (max-width: 768px) {
    .subpage-hero h1 {
        font-size: 2.5rem;
    }
    .policy-card {
        padding: 2rem;
        border-radius: 20px;
    }
}

