:root {
    --bg-dark: #0f172a;
    --surface-dark: #1e293b;
    --primary: #fbbf24;
    --primary-hover: #f59e0b;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --border: #334155;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 35px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 22px;
    color: var(--primary);
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    padding: 100px 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.highlight {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-app {
    background-color: var(--surface-dark);
    color: var(--text-light);
    border: 1px solid var(--border);
    padding: 12px 24px;
    gap: 10px;
}

.btn-app:hover {
    background-color: #2c3e50;
    border-color: var(--primary);
}

.icon {
    font-size: 20px;
    opacity: 0.9;
}

/* FLOATING QUOTES */
.floating-quotes {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

.quote-card {
    background-color: var(--surface-dark);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: absolute;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
    max-width: 300px;
}

.quote-card.q1 {
    top: 0;
    left: 20px;
    transform: rotate(-5deg);
    animation-delay: 0s;
}

.quote-card.q2 {
    top: 150px;
    right: 0;
    transform: rotate(3deg);
    animation-delay: 1s;
}

.quote-card.q3 {
    bottom: 20px;
    left: 40px;
    transform: rotate(-2deg);
    animation-delay: 2s;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.quote-author {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

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

/* FEATURES */
.features {
    padding: 100px 0;
    background-color: #0b1121;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--surface-dark);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-muted);
}

/* FOOTER */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    background-color: var(--bg-dark);
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Legal Pages Styling */
.legal-content {
    padding: 50px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: var(--text-light);
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* FAQ Accordion */
.faq-item {
    background-color: var(--surface-dark);
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 15px;
    padding: 20px;
}

.faq-question {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    cursor: default;
}

.faq-answer {
    color: var(--text-muted);
}

/* Contact Form */
.contact-form {
    background-color: var(--surface-dark);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.text-center {
    text-align: center;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .floating-quotes {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }
}