: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: 15px 0;
    border-bottom: 1px solid var(--border);
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

/* Burger Menu */
.nav-toggle {
    display: none !important;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--text-light);
    height: 2px;
    width: 25px;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

/* Menu Toggle Animation */
.nav-toggle:checked~.nav-toggle-label span {
    background: transparent;
}

.nav-toggle:checked~.nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle:checked~.nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 10px;
    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);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* HERO SECTION */
.hero {
    padding: clamp(60px, 10vh, 120px) 0;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
    margin-left: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

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

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

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

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

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

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

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

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

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

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

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

.quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(var(--rot, 0deg));
    }

    50% {
        transform: translateY(-15px) rotate(calc(var(--rot, 0deg) + 2deg));
    }
}

.q1 {
    --rot: -5deg;
}

.q2 {
    --rot: 3deg;
}

.q3 {
    --rot: -2deg;
}

/* FEATURES */
.features {
    padding: clamp(60px, 8vh, 100px) 0;
    background-color: #0b1121;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px;
    font-weight: 800;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 44px;
    margin-bottom: 24px;
    display: block;
}

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

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(15px, 4vw, 30px);
}

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

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

/* Legal Pages Styling */
.legal-content {
    padding: clamp(40px, 8vh, 80px) 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: clamp(1.5rem, 4.vw, 2rem);
    margin: 40px 0 20px;
    color: var(--text-light);
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 1.05rem;
}

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

.faq-question {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

/* Contact Form */
.contact-form {
    background-color: var(--surface-dark);
    padding: clamp(25px, 5vw, 50px);
    border-radius: 24px;
    border: 1px solid var(--border);
    max-width: 650px;
    margin: 0 auto;
}

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

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

.form-control {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.btn-block {
    width: 100%;
    justify-content: center;
}

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

.subtitle {
    margin-bottom: 40px;
    color: var(--text-muted);
}

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid transparent;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.mt-4 {
    margin-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .floating-quotes {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 140px;
        padding-bottom: 40px;
    }

    .quote-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: rotate(var(--rot, 0deg)) !important;
        animation: none;
        max-width: 90%;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }

    .hero-content {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        padding: 40px;
    }

    .nav-toggle:checked~.nav-menu {
        right: 0;
    }

    .nav-link {
        margin: 15px 0;
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
    }

    .nav-menu .btn {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-app {
        width: 100%;
        justify-content: center;
    }
}