/* =============================================
   Prime Elite - Premium Luxury Theme
   Gold & Black Color Scheme
   ============================================= */

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

:root {
    --gold: #C9A961;
    --gold-light: #E8D5A3;
    --gold-dark: #A88B3D;
    --black: #0A0A0A;
    --black-2: #111111;
    --black-3: #1A1A1A;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D0;
    --white: #FFFFFF;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.gold-text {
    color: var(--gold);
}

/* --- Navigation --- */
header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-2) 50%, var(--black-3) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a961' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--gold-light);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background: rgba(201, 169, 97, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
    font-size: 0.85rem;
    padding: 0.7rem 1.5rem;
}

.btn-outline:hover {
    background: rgba(201, 169, 97, 0.08);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* --- Sections Common --- */
section {
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(201, 169, 97, 0.1);
    color: var(--gold-dark);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* --- Cards Section --- */
.cards-section {
    background: var(--cream);
}

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.card-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

.card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-item.featured {
    border: 1px solid var(--gold);
    box-shadow: 0 0 0 1px var(--gold), 0 10px 30px rgba(201, 169, 97, 0.1);
}

.card-item.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 1.2rem;
    font-weight: 600;
}

.card-visual {
    width: 240px;
    height: 150px;
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-visual.platinum {
    background: linear-gradient(135deg, #e0e0e0, #b0b0b0, #808080);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-visual.gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.card-visual.signature {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.card-chip {
    width: 35px;
    height: 25px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    border-radius: 4px;
    margin-bottom: 0.5rem;
    position: relative;
}

.card-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.card-visual span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.card-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.card-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-features li {
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.88rem;
    color: var(--text);
}

.card-features li::before {
    content: '✓ ';
    color: var(--gold-dark);
    font-weight: 600;
}

/* --- Benefits Section --- */
.benefits-section {
    background: var(--white);
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(201, 169, 97, 0.2);
    background: rgba(201, 169, 97, 0.02);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.benefit-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Testimonial --- */
.testimonial-section {
    background: var(--black);
    color: var(--white);
    text-align: center;
}

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

.testimonial-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--black);
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
    background: linear-gradient(135deg, var(--black), var(--black-2));
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem 4rem;
}

.page-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--gold-light);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* --- Legal Content Pages --- */
.page-content {
    background: var(--white);
}

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

.legal-content .content-container h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin: 2.5rem 0 1rem;
}

.legal-content .content-container h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin: 2rem 0 0.8rem;
}

.legal-content .content-container p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.disclaimer-box {
    background: rgba(201, 169, 97, 0.05);
    border-left: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.disclaimer-box ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.disclaimer-box li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* --- Contact Page --- */
.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(201, 169, 97, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.detail-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: var(--black);
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--text);
}

.contact-detail span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- Form --- */
.contact-form {
    background: var(--cream);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--gold);
}

.checkbox-text {
    font-size: 0.82rem !important;
    color: var(--text-light) !important;
    line-height: 1.5;
    font-weight: 400 !important;
}

/* --- Footer --- */
footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 1.5rem;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p:first-child {
    color: var(--gold);
    letter-spacing: 0.5px;
}

/* --- Responsive --- */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    section {
        padding: 3rem 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}
