:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --dark: #292F36;
    --light: #F7FFF7;
    --highlight: #FF9F1C;
}

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

body {
    font-family: 'Jua', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px; /* For fixed navbar */
}

.logo {
    width: 50px;
    height: 50px;
    padding: 5px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

.navbar-brand i {
    margin-right: 0.5rem;
    color: var(--highlight);
}

.navbar-links {
    display: flex;
    list-style: none;
}

.navbar-links li {
    margin-left: 1.5rem;
}

.navbar-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.2rem;
    transition: color 0.3s;
    position: relative;
}

.navbar-links a:hover {
    color: var(--primary);
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight);
    transition: width 0.3s;
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

header {
    background: linear-gradient(135deg, var(--primary), var(--highlight));
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: -70px; /* Offset for fixed navbar */
    padding-top: 90px;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.1)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
    background-size: 100% 100%;
    opacity: 0.3;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: bounceInDown 1s;
}

header p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    animation: fadeIn 1.5s;
}

.hero {
    padding: 4rem 1rem;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    color: white;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-bottom: -3rem;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    animation: fadeInUp 1s;
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    animation: fadeIn 1.5s;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    background: var(--light);
}

.cta-button:active {
    transform: translateY(1px);
}

.section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--highlight));
    border-radius: 2px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 5px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature p {
    font-size: 1.2rem;
    color: var(--dark);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--highlight);
}

.contact-section {
    background: linear-gradient(135deg, var(--light), #e0f7fa);
    padding: 5rem 1rem;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
}

form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--highlight));
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--dark);
}

form input, form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Jua', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s;
}

form input:focus, form textarea:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
}

form button {
    padding: 1rem 2.5rem;
    background: linear-gradient(to right, var(--primary), var(--highlight));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    font-family: 'Jua', sans-serif;
    transition: all 0.3s;
    display: block;
    margin: 2rem auto 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

form button:active {
    transform: translateY(1px);
}

#form-message {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.screenshot:hover {
    transform: scale(1.05);
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

footer {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--dark), #1a1a2e);
    color: white;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(to right, var(--primary), var(--highlight));
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--highlight);
    transform: translateY(-3px);
}

.download-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.download-badge {
    height: 50px;
    transition: all 0.3s;
}

.download-badge:hover {
    transform: translateY(-3px);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.2;
    animation: float 15s infinite linear;
}

.shape:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 60%;
    left: 80%;
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.shape:nth-child(3) {
    top: 30%;
    left: 70%;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    animation-delay: 4s;
    animation-duration: 25s;
}

.shape:nth-child(4) {
    top: 80%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: var(--highlight);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 1s;
    animation-duration: 18s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }
    
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem;
    }
    
    .navbar-brand {
        margin-bottom: 1rem;
    }
    
    .navbar-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-links.active {
        display: flex;
    }
    
    .navbar-links li {
        margin: 0.5rem 0;
    }
    
    .navbar-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    header {
        margin-top: -60px;
        padding-top: 80px;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    header p {
        font-size: 1.2rem;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    form {
        padding: 2rem 1.5rem;
    }
}

/* Animation classes */
.animate-delay-1 {
    animation-delay: 0.3s;
}

.animate-delay-2 {
    animation-delay: 0.6s;
}

.animate-delay-3 {
    animation-delay: 0.9s;
}


/* Privacy Section Styling */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Jua', sans-serif;
    color: #1f2937;
    background-color: #f9fafb;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Individual Privacy Sections */
.privacy-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    border-left: 6px solid #3b82f6;
    transition: box-shadow 0.3s ease;
}

.privacy-section:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

/* Section Headers */
.privacy-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Paragraphs */
.privacy-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #374151;
}

/* Lists */
.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.privacy-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #111827;
}

.privacy-section ul li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
}

/* Email links */
.privacy-section a {
    color: #2563eb;
    text-decoration: underline;
}

.privacy-section a:hover {
    color: #1d4ed8;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-content {
        padding: 1.5rem 1rem;
    }

    .privacy-section {
        padding: 1.5rem 1.25rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 0.95rem;
    }
}