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

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f0;
    color: #1a1a2e;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #0a0a2a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    color: white;
    font-size: 1.5rem;
}

.logo span {
    color: #e8491d;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #e8491d;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #e8491d;
    color: white;
}

.btn-primary:hover {
    background: #cc3d14;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #e8491d;
    color: #e8491d;
}

.btn-outline:hover {
    background: #e8491d;
    color: white;
}

.btn-wa {
    background: #25D366;
    color: white;
}

.btn-wa:hover {
    background: #128C7E;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 100%);
    color: white;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.highlight {
    color: #e8491d;
}

.tagline {
    font-size: 1.2rem;
    color: #e8491d;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.book-cover-large {
    width: 250px;
    height: 350px;
    background: linear-gradient(135deg, #e8491d, #ff6b35);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
    color: white;
    box-shadow: 0 20px 30px rgba(0,0,0,0.3);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0a0a2a;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e8491d;
    margin: 15px auto 0;
}

/* Latest Book */
.latest-book {
    padding: 60px 0;
    background: white;
}

.book-feature {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    background: #f8f8f5;
    padding: 40px;
    border-radius: 20px;
}

.book-cover-img {
    width: 200px;
    height: 280px;
    background: linear-gradient(135deg, #e8491d, #ff6b35);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.book-details {
    flex: 1;
}

.book-details h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.book-genre {
    color: #e8491d;
    margin-bottom: 15px;
}

.book-meta {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    color: #666;
}

/* Services Grid */
.services-preview {
    padding: 60px 0;
    background: #f5f5f0;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: #e8491d;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: #e8491d;
    margin-top: 15px;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f8f5;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #e8491d;
}

.testimonial-card i {
    color: #e8491d;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    margin-top: 15px;
}

/* WhatsApp Group CTA */
.whatsapp-group {
    background: #0a0a2a;
    color: white;
    text-align: center;
    padding: 60px 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f8f5;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
}

.faq-question i {
    transition: 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 20px;
    background: white;
    border-top: 1px solid #ddd;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    background: #0a0a2a;
    color: #aaa;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
}

.footer-section a:hover {
    color: #e8491d;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a1a4a;
}

/* AI Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: #e8491d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.chat-button i {
    font-size: 1.5rem;
    color: white;
}

.chat-button:hover {
    transform: scale(1.05);
}

.chat-box {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    height: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-box.show {
    display: flex;
}

.chat-header {
    background: #0a0a2a;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    cursor: pointer;
    font-size: 1.5rem;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f5f5f0;
}

.message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 85%;
}

.message.bot {
    background: #0a0a2a;
    color: white;
    border-bottom-left-radius: 5px;
}

.message.user {
    background: #e8491d;
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.chat-input {
    display: flex;
    padding: 10px;
    background: white;
    border-top: 1px solid #ddd;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
}

.chat-input button {
    background: #e8491d;
    color: white;
    border: none;
    width: 40px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .book-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .book-meta {
        justify-content: center;
    }
    /* Portfolio Page */
.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-item {
    display: flex;
    gap: 30px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.portfolio-cover {
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, #e8491d, #ff6b35);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.portfolio-info {
    flex: 1;
}

.portfolio-genre {
    color: #e8491d;
    font-size: 0.9rem;
    margin: 5px 0;
}

.badge {
    display: inline-block;
    background: #e8491d20;
    color: #e8491d;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-right: 10px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-top: 10px;
    display: inline-block;
}

/* Shop Page */
.shop-grid {
    max-width: 800px;
    margin: 0 auto;
}

.shop-item {
    display: flex;
    gap: 40px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    flex-wrap: wrap;
}

.shop-cover {
    width: 180px;
    height: 250px;
    background: linear-gradient(135deg, #e8491d, #ff6b35);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.shop-details {
    flex: 1;
}

.shop-genre {
    color: #e8491d;
    margin: 5px 0;
}

.shop-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    color: #666;
    font-size: 0.9rem;
}

.shop-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e8491d;
    margin: 15px 0;
}

.payment-info {
    max-width: 800px;
    margin: 50px auto 0;
    background: #f8f8f5;
    padding: 30px;
    border-radius: 20px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.payment-method {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.payment-method i {
    font-size: 2rem;
    color: #e8491d;
}

.payment-note {
    background: #e8491d10;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* Assistant Page */
.assistant-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.assistant-text {
    flex: 2;
}

.assistant-text ul {
    list-style: none;
    margin-top: 20px;
}

.assistant-text ul li {
    margin-bottom: 10px;
}

.assistant-text ul li i {
    color: #e8491d;
    margin-right: 10px;
}

.assistant-cta {
    flex: 1;
}

.cta-card {
    background: #0a0a2a;
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.step {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #e8491d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

/* Blog Page */
.blog-grid {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.blog-date {
    color: #e8491d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-post h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.read-more {
    color: #e8491d;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-box, .contact-form-box {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-detail, .whatsapp-group-link {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.contact-detail i, .whatsapp-group-link i {
    width: 40px;
    height: 40px;
    background: #f8f8f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8491d;
    font-size: 1.2rem;
}

.contact-detail a, .whatsapp-group-link a {
    color: #e8491d;
    text-decoration: none;
}

.contact-form-box input, .contact-form-box select, .contact-form-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.newsletter-section {
    padding: 60px 0;
    background: #f8f8f5;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 40px;
}
}