/* styles.css - Gold & Black Luxury Theme */

/* styles.css - UPDATED WITH FIXES */
@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #F4E8C1;
    --gold-dark: #B8860B;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --transition: all 0.4s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-gray);
    overflow-x: hidden;
}

/* Rest of your existing CSS remains the same... */




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

:root {
    --gold: #D4AF37;
    --gold-light: #F4E8C1;
    --gold-dark: #B8860B;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    line-height: 1.7;
    color: #333;
    background-color: var(--light-gray);
    overflow-x: hidden;
}

/* Luxury Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Header & Navigation - Luxury Style */
.luxury-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.luxury-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.luxury-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.luxury-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    position: relative;
    letter-spacing: 1px;
}

.luxury-logo span {
    color: var(--gold);
    position: relative;
}

.luxury-logo span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.luxury-logo:hover span::after {
    transform: scaleX(1);
}

.luxury-nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.luxury-nav-links li {
    position: relative;
}

.luxury-nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    transition: var(--transition);
    position: relative;
}

.luxury-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.luxury-nav-links a:hover {
    color: var(--gold);
}

.luxury-nav-links a:hover::after,
.luxury-nav-links a.active::after {
    transform: scaleX(1);
}

.luxury-nav-links a.active {
    color: var(--gold);
}

.luxury-mobile-toggle {
    display: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.luxury-mobile-toggle:hover {
    transform: rotate(90deg);
}

/* Luxury Hero Section */
.luxury-hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.85) 100%),
                url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 200px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.luxury-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 65%, rgba(212, 175, 55, 0.1) 100%);
}

.luxury-hero h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.luxury-hero h1 .gold-text {
    color: var(--gold);
    display: block;
    font-size: 5rem;
    margin-bottom: 10px;
}

.luxury-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 50px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.8;
}

/* Gold Button */
.gold-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gold-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.gold-btn:hover::before {
    left: 100%;
}

.gold-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.gold-btn i {
    font-size: 1.2rem;
}

/* Main Content */
.luxury-main {
    padding: 100px 0;
}

/* Section Titles */
.luxury-section-title {
    color: var(--black);
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.luxury-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
}

/* Content Cards */
.luxury-card {
    background: var(--white);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold) 0%, var(--gold-dark) 100%);
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* Gold Warning Box */
.gold-warning-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.05) 100%);
    border-left: 4px solid var(--gold);
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.gold-warning-box h4 {
    color: var(--gold-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
}

.gold-warning-box h4 i {
    color: var(--gold);
}

/* Gold Lesson Box */
.gold-lesson-box {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.05) 0%, rgba(26, 26, 26, 0.03) 100%);
    border: 2px solid var(--gold);
    padding: 35px;
    margin: 30px 0;
    border-radius: 10px;
    position: relative;
}

.gold-lesson-box::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    pointer-events: none;
}

/* Image Frames */
.image-frame {
    position: relative;
    margin: 30px 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    pointer-events: none;
    z-index: 2;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

/* Strategy Cards Grid */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.strategy-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.strategy-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.strategy-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.strategy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.strategy-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.strategy-body {
    padding: 30px;
}

.strategy-body p {
    margin-bottom: 20px;
    color: #555;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.pros, .cons {
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.pros {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cons {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(255, 0, 0, 0.02) 100%);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.pros h4, .cons h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros h4 {
    color: var(--gold-dark);
}

.pros h4 i {
    color: var(--gold);
}

.cons h4 {
    color: #C41E3A;
}

.cons h4 i {
    color: #FF6B6B;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--black);
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Luxury Footer */
.luxury-footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.luxury-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--gold);
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-column p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-links a i {
    color: var(--gold);
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.95rem;
}

/* Privacy Policy Page */
.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h3 {
    color: var(--black);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    position: relative;
}

.privacy-section h3::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-dark);
}

.privacy-section p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.privacy-section ul {
    margin: 20px 0 20px 30px;
}

.privacy-section ul li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
}

.privacy-section ul li::before {
    content: '•';
    color: var(--gold);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .luxury-hero h1 {
        font-size: 3.5rem;
    }
    
    .luxury-hero h1 .gold-text {
        font-size: 4rem;
    }
    
    .strategy-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 992px) {
    .luxury-hero {
        padding: 180px 0 120px;
    }
    
    .luxury-hero h1 {
        font-size: 3rem;
    }
    
    .luxury-hero h1 .gold-text {
        font-size: 3.5rem;
    }
    
    .luxury-section-title {
        font-size: 2.5rem;
    }
    
    .luxury-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .luxury-mobile-toggle {
        display: block;
    }
    
    .luxury-nav-links {
        position: fixed;
        top: 100px;
        left: 0;
        background: var(--black);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        transform: translateY(-150%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .luxury-nav-links.active {
        transform: translateY(0);
    }
    
    .luxury-nav-links li {
        margin: 15px 0;
    }
    
    .luxury-nav-links a {
        font-size: 1.2rem;
    }
    
    .luxury-hero {
        padding: 150px 0 100px;
        background-attachment: scroll;
    }
    
    .luxury-hero h1 {
        font-size: 2.5rem;
    }
    
    .luxury-hero h1 .gold-text {
        font-size: 3rem;
    }
    
    .luxury-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .luxury-hero h1 {
        font-size: 2rem;
    }
    
    .luxury-hero h1 .gold-text {
        font-size: 2.5rem;
    }
    
    .luxury-section-title {
        font-size: 2rem;
    }
    
    .luxury-card {
        padding: 30px 25px;
    }
    
    .gold-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
}