﻿* {
    font-family: 'Inter', sans-serif;
}

:root {
    --star-gold: #c9a03d;
    --star-gold-dark: #a07e2f;
    --star-navy: #0a1a2f;
    --star-navy-light: #132a45;
}

body {
    background-color: #ffffff;
}

.btn-star {
    background-color: var(--star-gold);
    border-color: var(--star-gold);
    color: #0a1a2f;
    font-weight: 700;
    transition: all 0.3s ease;
}

    .btn-star:hover {
        background-color: var(--star-gold-dark);
        border-color: var(--star-gold-dark);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(201, 160, 61, 0.3);
    }

.btn-outline-star {
    border: 2px solid var(--star-gold);
    color: var(--star-gold);
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline-star:hover {
        background-color: var(--star-gold);
        color: var(--star-navy);
        transform: translateY(-2px);
    }

.navbar {
    background: rgba(10, 26, 47, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--star-gold);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

    .navbar-brand span:first-child {
        color: var(--star-gold);
    }

    .navbar-brand span:last-child {
        color: white;
    }

.nav-link {
    font-weight: 600;
    margin: 0 0.5rem;
    color: #e0e0e0 !important;
    transition: 0.2s;
}

    .nav-link:hover {
        color: var(--star-gold) !important;
    }

.hero-section {
    background: linear-gradient(135deg, #0a1a2f 0%, #0d1f38 50%, #0a1a2f 100%);
    color: white;
    padding: 120px 0 90px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        border-color: var(--star-gold);
    }

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 2rem;
    color: var(--star-gold);
    margin-bottom: 0.5rem;
}

.badge-star {
    background-color: var(--star-gold);
    color: var(--star-navy);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
}

.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--star-navy);
}

    .section-title span {
        color: var(--star-gold);
    }

.footer {
    background-color: #0a1a2f;
    color: #adb5bd;
    padding: 50px 0 25px;
    border-top: 3px solid var(--star-gold);
}

    .footer a {
        color: var(--star-gold);
        text-decoration: none;
    }

        .footer a:hover {
            color: white;
        }

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 99;
    transition: 0.2s;
    text-decoration: none;
}

    .floating-whatsapp:hover {
        transform: scale(1.1);
        background: #20b859;
    }

.floating-call {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--star-gold);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--star-navy);
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 99;
    transition: 0.2s;
    text-decoration: none;
}

    .floating-call:hover {
        transform: scale(1.1);
        background: white;
        color: var(--star-gold);
    }

.hero-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--star-gold);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
.legal-modal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.legal-modal .modal-header {
    background: var(--star-navy);
    color: white;
    border-bottom: 2px solid var(--star-gold);
    border-radius: 20px 20px 0 0;
    padding: 1.2rem 1.5rem;
}

.legal-modal .modal-title i {
    color: var(--star-gold);
    margin-right: 8px;
}

.legal-modal .modal-body {
    padding: 1.8rem;
    max-height: 70vh;
    overflow-y: auto;
}

.legal-modal h6 {
    color: var(--star-navy);
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-modal p, .legal-modal li {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #2c3e50;
}
.body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 70px;
    margin-bottom: 50px;
}

.auth-card {
    background: white;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    max-width: 600px;
    width: 100%;
}

.auth-header {
    background: linear-gradient(135deg, var(--star-navy) 0%, var(--star-navy-light) 100%);
    padding: 32px;
    text-align: center;
}

    .auth-header h2 {
        color: var(--star-gold);
        font-weight: 800;
        margin-bottom: 8px;
    }

    .auth-header p {
        color: #94a3b8;
        margin-bottom: 0;
    }

.auth-body {
    padding: 32px;
}

.form-control {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
}

    .form-control:focus {
        border-color: var(--star-gold);
        box-shadow: 0 0 0 3px rgba(201, 160, 61, 0.1);
    }

    .form-control.is-invalid {
        border-color: #dc2626;
    }

    .form-control.is-valid {
        border-color: #10b981;
    }

.invalid-feedback {
    font-size: 11px;
    margin-top: 5px;
}

.input-group-text {
    background: transparent;
    border-right: none;
    border-radius: 12px 0 0 12px;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

.btn-star-submit {
    background: var(--star-gold);
    border: none;
    color: var(--star-navy);
    font-weight: 700;
    padding: 12px;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s;
}

    .btn-star-submit:hover {
        background: var(--star-gold-dark);
        color: white;
        transform: translateY(-2px);
    }

    .btn-star-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-outline-star {
    border: 2px solid var(--star-gold);
    background: transparent;
    color: var(--star-gold);
    font-weight: 600;
    padding: 10px;
    border-radius: 12px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

    .btn-outline-star:hover {
        background: var(--star-gold);
        color: var(--star-navy);
    }

.auth-link {
    color: var(--star-gold);
    text-decoration: none;
    font-weight: 600;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

    .divider::before, .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #e2e8f0;
    }

    .divider span {
        padding: 0 10px;
        color: #94a3b8;
        font-size: 12px;
    }

.password-strength {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-top: 8px;
}

.strength-bar {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s;
}

.toast-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1100;
}

@@media (max-width: 576px) {
    .auth-body {
        padding: 24px;
    }

    .auth-header {
        padding: 24px;
    }
}