@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --primary-gradient: linear-gradient(90deg, #A734BD 0%, #FF006A 100%);
    --bg-dark: #100612;
    --card-bg: #1e1124;
    --text-white: #ffffff;
    --text-gray: #bda8c4;
    --accent-pink: #d925d4;
    --icon-bg: #2d1e34;
    --text-pink: #FF006A;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-image: url('img/Dark Gradient bg.png');
    background-size: 600px;
    background-position: top left;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Navbar */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #fff !important;
}

/* Typography & Utilities */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.text-pink {
    color: var(--text-pink);
}

/* Hero Section */
.hero-section {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.hero-text-col h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

.store-btn {
    height: 48px;
    transition: transform 0.2s;
}

.store-btn:hover {
    transform: translateY(-2px);
}

/* Phone & Decor */
.phone-container {
    position: relative;
    z-index: 10;
}

.hero-phone {
    max-height: 550px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 2;
}

.decor-icon {
    position: absolute;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.decor-left {
    top: 15%;
    left: -15%;
    width: 140px;
}

.decor-right {
    bottom: 20%;
    right: -10%;
    width: 60px;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Stats Section */
.stats-section {
    position: relative;
    z-index: 2;
}

.stats-box {
    background: rgba(167, 52, 189, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.stats-box h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stats-box p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Main Wrapper for Features */
.main-wrapper {
    padding: 20px 0;
}

/* Heading Styles */
.main-heading {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Content Card */
.content-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Feature Item Styles */
.feature-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 10px;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Icon Boxes */
.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--icon-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-private i {
    color: #ffcc00;
}

.icon-authentic i {
    background: linear-gradient(135deg, #3b82f6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ec4899;
}

.icon-transparent i {
    color: #ff3366;
}

.icon-global i {
    color: #22c55e;
}

/* Why You Need to Get DOWN Section */
.why-down-section {
    width: 100%;
    margin-top: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
}

.section-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-image-wrapper {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image-wrapper img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Badges/Tags styling */
.badge {
    font-weight: 500;
    color: var(--text-gray) !important;
}

/* Desktop Only Styles */
@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .col-md-3:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Mobile & Tablet Styles */
@media (max-width: 991.98px) {
    .hero-text-col {
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-text-col h1 {
        font-size: 2.8rem;
    }

    .decor-left {
        left: -5%;
        width: 100px;
    }

    .decor-right {
        right: -5%;
        width: 50px;
    }

    .navbar-toggler {
        border: none;
        box-shadow: none;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .section-text {
        text-align: center;
    }

    .tags-container {
        text-align: center;
    }

    .feature-row {
        margin-bottom: 3rem !important;
    }

    .main-heading {
        font-size: 2rem;
        text-align: center;
        max-width: 250px;
        margin: 0 auto;
        line-height: 1.2;
    }

    /* 2x2 Grid Borders for Features */
    .col-6:nth-child(1),
    .col-6:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .col-6:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 20px;
    }

    .col-6:nth-child(even) {
        padding-left: 20px;
    }
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    z-index: 2;
}

.testimonial-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ff3399;
    /* Fallback */
    background: linear-gradient(90deg, #b030d9 0%, #ff0f7b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(30, 17, 36, 0.9) 0%, rgba(16, 6, 18, 0.95) 100%);
    border-radius: 20px;
    border: 1px solid rgba(217, 37, 212, 0.3);
    /* Subtle pink border */
    box-shadow: 0 0 30px rgba(217, 37, 212, 0.15);
    /* Pink Glow */
}

/* Green border glow effect from image */
.testimonial-card.green-theme {
    border: 1px solid #22c55e !important;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.quote-icon {
    font-size: 3rem;
    color: #d925d4;
}

/* Override Quote Icon color inside green theme if needed, usually keeps pink */
.testimonial-card.green-theme .quote-icon {
    color: #e83e8c;
    /* Or keep pink as per design */
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    font-weight: 500;
}

.user-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #d925d4;
}

.user-name {
    font-size: 1.1rem;
}

/* Pagination Dots */
.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-block;
}

.dot.active {
    background-color: #d925d4;
}

/* CTA Section */
.cta-heading {
    font-size: 3rem;
    font-weight: 800;
}

.store-btn-lg img {
    height: 60px;
    transition: transform 0.2s;
}

.store-btn-lg:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .testimonial-heading {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .pagination-dots {
        justify-content: center !important;
    }
}

/* Testimonial Stack Effect */
.testimonial-stack {
    position: relative;
    padding: 20px 0;
}

.faded-card {
    opacity: 0.4;
    transform: scale(0.95);
    filter: blur(1px);
    pointer-events: none;
    border: none;
    /* No border for faded cards */
}

.focus-card {
    z-index: 10;
    transform: scale(1);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.stack-overlay-top,
.stack-overlay-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    /* Fade height */
    z-index: 20;
    pointer-events: none;
}

.stack-overlay-top {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-dark), transparent);
    /* Adjust --bg-dark to match your body bg exactly if needed, usually #100612 */
    background: linear-gradient(to bottom, #100612 20%, transparent 100%);
}

.stack-overlay-bottom {
    bottom: 0;
    background: linear-gradient(to top, #100612 20%, transparent 100%);
}

.user-avatar.small {
    width: 40px;
    height: 40px;
}

.small-stars {
    font-size: 0.8rem;
}

/* Footer Section */
.footer-section {
    background-color: #0b040d;
    /* Slightly darker than body */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links a {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Clean Social Icons (No Circle) */
.social-icon-clean {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.2s;
}

.social-icon-clean:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

/* Press Section */
.press-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d925d4;
    text-transform: uppercase;
    position: relative;
    background-color: var(--bg-dark);
    /* Match background to hide line behind text */
    z-index: 2;
}

.press-heading-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d925d4, transparent);
    z-index: 1;
}

.press-card {
    background-color: var(--card-bg);
    /* Or match the specific dark card color */
    border-radius: 20px;
    border: 1px solid #d925d4;
    box-shadow: 0 0 15px rgba(217, 37, 212, 0.2);
}

.press-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 4rem;
}

.press-logo img {
    filter: grayscale(100%) brightness(200%);
    /* Make logos white/light */
    opacity: 0.8;
    max-height: 30px;
    transition: all 0.3s;
}

.press-logo img:hover {
    filter: none;
    opacity: 1;
}

@media (max-width: 767px) {
    .press-logos-grid {
        gap: 2rem;
    }

    .press-heading-container::before {
        width: 200px;
    }
}