/* ============================================
   CSS Variables - Historical Luxury Theme
   ============================================ */
:root {
    --deep-black: #050505;
    --dark-grey: #1a1a1a;
    --dark-matte: #2a2a2a;
    --metallic-gold: #D4AF37;
    --antique-gold: #C5A059;
    --text-light: #e5e5e5;
    --text-gray: #9ca3af;
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #000000;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

/* ============================================
   Navbar Styles
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    border-bottom: 2px solid var(--metallic-gold);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled {
    background: #000000;
    backdrop-filter: blur(10px);
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--metallic-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--metallic-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    background-color: #000000;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    padding: 120px 1rem 80px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--metallic-gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.75rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* ============================================
   Book Mockup
   ============================================ */
.book-mockup {
    width: 100%;
    max-width: 400px;
    height: 500px;
    background: #000000;
    border: 3px solid var(--metallic-gold);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--metallic-gold);
    font-size: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.book-mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-mockup-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* ============================================
   Gold Button
   ============================================ */
.btn-gold {
    background: linear-gradient(135deg, var(--metallic-gold) 0%, var(--antique-gold) 100%);
    color: var(--deep-black);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.btn-gold:active {
    transform: translateY(0);
}

/* ============================================
   WhatsApp Button
   ============================================ */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.btn-whatsapp i {
    font-size: 1.2em;
}

/* ============================================
   Section Styles
   ============================================ */
.section-dark {
    background-color: #000000;
}

.section-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--metallic-gold);
    text-align: center;
    margin-bottom: 4rem;
}

/* ============================================
   Pain Points Section
   ============================================ */
.pain-point-item {
    border-right: 4px solid var(--metallic-gold);
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pain-point-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 1rem;
}

.pain-point-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Solution Section
   ============================================ */
.solution-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.solution-icon {
    font-size: 1.875rem;
    color: var(--metallic-gold);
    margin-left: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.solution-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Author Story Section
   ============================================ */
.author-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--metallic-gold);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.author-story-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--metallic-gold);
    margin-bottom: 1.5rem;
}

.author-story-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ============================================
   Accordion Styles
   ============================================ */
.accordion-item {
    background-color: #000000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--metallic-gold);
}

.accordion-header {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.accordion-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--metallic-gold);
    margin: 0;
}

.accordion-icon {
    color: var(--metallic-gold);
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.25rem;
}

.accordion-content.active {
    max-height: 500px;
    padding: 1.25rem;
}

.accordion-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Transformation Section
   ============================================ */
.transformation-card {
    border: 2px solid;
    border-radius: 0.5rem;
    padding: 2rem;
}

.before-card {
    border-color: #dc2626;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, transparent 100%);
}

.after-card {
    border-color: var(--metallic-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

.transformation-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #ef4444;
}

.transformation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transformation-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.transformation-item span {
    flex: 1;
}

/* ============================================
   Target Audience Section
   ============================================ */
.audience-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkmark {
    color: var(--metallic-gold);
    margin-left: 0.5rem;
    font-size: 1.5rem;
    margin-top: 0.125rem;
}

.audience-item p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ============================================
   Bonuses Section
   ============================================ */
.bonus-card {
    background-color: #000000;
    border: 2px solid var(--metallic-gold);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--metallic-gold);
    margin-bottom: 1rem;
}

.bonus-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.bonus-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--metallic-gold);
}

.bonus-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--metallic-gold);
    margin-bottom: 0.5rem;
}

.bonus-total-sub {
    font-size: 1.125rem;
    color: var(--text-gray);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonial-card {
    background-color: #000000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--metallic-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--metallic-gold);
    position: absolute;
    top: -10px;
    right: 20px;
    opacity: 0.3;
    font-family: 'Cinzel', serif;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--metallic-gold);
    color: var(--deep-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-left: 0.75rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--metallic-gold);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-value-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--metallic-gold);
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
}

.value-total {
    border-bottom: 2px solid var(--metallic-gold);
    padding-bottom: 1rem;
}

.pricing-card {
    background: #000000;
    border: 3px solid var(--metallic-gold);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--metallic-gold) 0%, var(--antique-gold) 100%);
}

.pricing-card-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--metallic-gold);
    margin-bottom: 1rem;
}

.pricing-card-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--metallic-gold);
    margin-bottom: 0.5rem;
}

.pricing-card-old-price {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    text-decoration: line-through;
}

.pricing-card-savings {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--metallic-gold);
    margin-bottom: 2rem;
}

.pricing-guarantee {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #000000;
    border-top: 2px solid var(--metallic-gold);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--metallic-gold);
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--metallic-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-gray);
}

/* ============================================
   Sticky Footer CTA
   ============================================ */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    border-top: 2px solid var(--metallic-gold);
    padding: 1rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.sticky-footer.hidden {
    transform: translateY(100%);
}

.sticky-footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--metallic-gold);
    margin-bottom: 0.25rem;
}

.sticky-footer-subtitle {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* ============================================
   Utility Classes
   ============================================ */
.gold-text {
    color: var(--metallic-gold);
}

.gold-border {
    border-color: var(--metallic-gold);
}

.gold-shadow {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.gold-glow {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.5rem;
    }
    
    .section-headline {
        font-size: 2rem;
    }
    
    .book-mockup {
        max-width: 300px;
        height: 400px;
    }
    
    .author-photo {
        width: 150px;
        height: 150px;
    }
    
    .pricing-card-price {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 100px 1rem 60px;
    }
}

@media (max-width: 640px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.25rem;
    }
    
    .section-headline {
        font-size: 1.75rem;
    }
    
    .btn-gold {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .sticky-footer,
    .mobile-menu-btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

