:root {
    --primary-color: #004dc5;
    /* Navy Blue from app */
    --secondary-color: #87CEEB;
    /* Sky Blue - used sparingly */
    --accent-color: #ffcc00;
    /* Yellow from app */
    --background-color: #ffffff;
    --text-color: #003380;
    /* Deep Navy */
    --light-gray: #f0f7ff;
    /* Light Blue Tint */
    --shadow: 0 4px 15px rgba(0, 77, 197, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Navbar */
nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    height: 70px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-download {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 77, 197, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 77, 197, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Mockup Placeholder */
.mockup-container {
    width: 300px;
    height: 600px;
    background: var(--primary-color);
    border-radius: 40px;
    border: 10px solid var(--primary-color);
    box-shadow: 20px 20px 60px rgba(0, 77, 197, 0.2);
    position: relative;
    overflow: hidden;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-color);
    opacity: 0.7;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    color: white;
}

.category-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* CTA Buttons */
.btn-yellow {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
}

.btn-yellow:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

/* Post Cards */
.post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 77, 197, 0.1);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 77, 197, 0.15);
}

.post-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge.sale {
    background: var(--accent-color);
    color: var(--primary-color);
}

.post-info {
    padding: 20px;
}

.post-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-info .price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.post-info .location {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header h1,
header p,
.hero-btns,
.hero-visual {
    animation: fadeInUp 0.8s ease forwards;
}

header p {
    animation-delay: 0.2s;
}

.hero-btns {
    animation-delay: 0.4s;
}

.hero-visual {
    animation-delay: 0.6s;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #1e70ff;
    /* Vibrant blue similar to provided image */
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    opacity: 1 !important;
}

.social-icon:hover {
    transform: scale(1.1);
    background: var(--accent-color);
    color: var(--primary-color) !important;
}

/* Responsive */
/* Mobile Navigation */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1002;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        padding-top: 60px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .mockup-container {
        width: 250px;
        height: 500px;
        margin: 0 auto;
    }

    /* Stack flex containers on mobile */
    .container>[style*="display: flex"] {
        flex-direction: column;
    }

    /* Fix footer alignment */
    footer {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Hide download button in nav on small screens if needed, or adjust it */
    nav .btn-download {
        display: none;
    }

    /* Add it back inside the menu if we want, or just hide it for now to save space */
}

/* ========================================
   SUPPORT PAGES - CLEAN DESIGN
   Colors: Blue (#004dc5) and Yellow (#ffcc00) ONLY
   ======================================== */

/* Page Header */
.page-header {
    background: var(--primary-color);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.page-header h1 i {
    color: var(--accent-color);
    margin-right: 15px;
}

.page-header p {
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
}

/* Content Container */
.content-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* Content Sections */
.content-section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent-color);
    font-weight: 700;
}

.content-wrapper h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 700;
}

.content-wrapper p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--primary-color);
    /* Dark Gray for readability */
    margin-bottom: 15px;
}

.content-wrapper p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Policy Lists (A, B, C...) */
.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.policy-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.6;
}

.policy-list li strong {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 25px;
}

/* Bullet Lists */
.content-wrapper ul:not(.policy-list):not(.nav-links) {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.content-wrapper ul:not(.policy-list):not(.nav-links) li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--primary-color);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.content-wrapper ul:not(.policy-list):not(.nav-links) li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Highlight Box */
.highlight-box {
    background: white;
    border: 2px solid var(--accent-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.highlight-box p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-box i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Help Center Search */
.help-search-container {
    max-width: 600px;
    margin: 40px auto 0;
    position: relative;
}

.help-search-box {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
}

.help-search-box::placeholder {
    color: var(--primary-color);
    opacity: 0.6;
}

.help-search-box:focus {
    outline: none;
    border-color: var(--accent-color);
}

.help-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
}

.help-search-btn:hover {
    background: #e6b800;
}

/* Topic Cards */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.topic-card {
    background: white;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.topic-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.topic-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.topic-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.topic-card p {
    font-size: 0.9rem;
    color: var(--primary-color);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    max-width: 850px;
    margin: 0 auto 60px;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--primary-color);
    line-height: 1.8;
    display: none;
}

.faq-item:hover .faq-answer {
    display: block;
}

/* Contact CTA */
.contact-cta {
    background: var(--primary-color);
    color: white;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 60px;
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.contact-cta p {
    font-size: 1.05rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 25px;
}

.contact-cta .btn-yellow {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.contact-cta .btn-yellow:hover {
    background: #e6b800;
}

/* Simple Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.5s ease-out;
}

.topic-card {
    animation: fadeInUp 0.5s ease-out;
}

.faq-item {
    animation: fadeInUp 0.5s ease-out;
}