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

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    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: #2c7be5;
}

.tagline {
    color: #aaa;
    font-size: 0.7rem;
}

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

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

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

.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: #2c7be5;
    color: white;
}

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

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

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

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

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

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

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

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    flex: 2;
}

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

.highlight {
    color: #2c7be5;
}

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

.hero-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
}

.stat-card h3 {
    font-size: 2rem;
    color: #2c7be5;
}

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

/* 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: #2c7be5;
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* Two Brands Section */
.two-brands {
    padding: 60px 0;
    background: #f8f9fa;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.brand-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eef2f6;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.brand-icon i {
    font-size: 3rem;
    color: #2c7be5;
    margin-bottom: 20px;
}

.brand-card h2 {
    margin-bottom: 15px;
}

.brand-features {
    margin: 20px 0;
}

.brand-features span {
    display: inline-block;
    background: #f0f7ff;
    color: #2c7be5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 5px;
}

/* Services Grid */
.services-preview, .services-full, .author-services {
    padding: 60px 0;
}

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

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

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

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

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

.price {
    font-weight: bold;
    color: #2c7be5;
    margin: 15px 0;
}

.services-grid-full {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail {
    display: flex;
    gap: 30px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    flex-wrap: wrap;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #2c7be5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-info {
    flex: 1;
}

.service-info ul {
    list-style: none;
    margin: 15px 0;
}

.service-info ul li {
    margin-bottom: 8px;
}

.service-info ul li i {
    color: #2c7be5;
    margin-right: 10px;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c7be5;
    margin: 15px 0;
}

.delivery {
    color: #666;
    font-size: 0.9rem;
}

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

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

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

.book-info {
    flex: 1;
}

.book-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

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

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

/* Books Section */
.books-section {
    padding: 60px 0;
}

.books-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.book-card {
    display: flex;
    gap: 30px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    flex-wrap: wrap;
}

.book-cover-img {
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, #2c7be5, #1a5cb5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* Laptops Section */
.laptops-section {
    padding: 60px 0;
}

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

.laptop-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.laptop-card:hover {
    transform: translateY(-5px);
}

.laptop-image {
    font-size: 4rem;
    color: #2c7be5;
    margin-bottom: 15px;
}

.laptop-specs {
    text-align: left;
    margin: 15px 0;
}

.laptop-specs p {
    margin-bottom: 5px;
}

.laptop-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c7be5;
    margin: 15px 0;
}

.laptop-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.info-card ul {
    list-style: none;
    margin-top: 15px;
}

.info-card ul li {
    margin-bottom: 10px;
}

/* Portfolio */
.portfolio-section {
    padding: 60px 0;
}

.portfolio-tabs, .testimonials-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background: #eef2f6;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.tab-btn.active {
    background: #2c7be5;
    color: white;
}

.portfolio-tab, .testimonials-tab {
    display: none;
}

.portfolio-tab.active, .testimonials-tab.active {
    display: block;
}

.portfolio-grid-full {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.portfolio-item {
    display: flex;
    gap: 30px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    flex-wrap: wrap;
}

.portfolio-img {
    width: 120px;
    height: 120px;
    background: #2c7be5;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.portfolio-details {
    flex: 1;
}

.portfolio-category {
    color: #2c7be5;
    font-size: 0.9rem;
    margin: 5px 0;
}

.portfolio-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.portfolio-tech span {
    background: #eef2f6;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Testimonials */
.testimonials-full {
    padding: 60px 0;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #2c7be5;
}

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

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

.testimonial-card span {
    color: #666;
    font-size: 0.85rem;
}

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

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2c7be5;
    display: inline-block;
}

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

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

.faq-question h3 {
    font-size: 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 #eef2f6;
}

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

/* Work With Us */
.work-with-us {
    padding: 60px 0;
}

.work-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.work-content {
    flex: 2;
}

.positions ul, .benefits ul {
    list-style: none;
    margin: 20px 0;
}

.positions ul li, .benefits ul li {
    margin-bottom: 10px;
}

.positions ul li i, .benefits ul li i {
    color: #2c7be5;
    width: 25px;
}

.how-it-works {
    margin-top: 30px;
}

.steps {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.step-num {
    width: 40px;
    height: 40px;
    background: #2c7be5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}

.work-cta {
    flex: 1;
}

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

.cta-card i {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 15px;
}

.cta-card .note {
    font-size: 0.8rem;
    margin-top: 15px;
    color: #aaa;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-box, .contact-form-box {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
}

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

.contact-detail i {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c7be5;
    font-size: 1.2rem;
}

.contact-detail a {
    color: #2c7be5;
    text-decoration: none;
}

.payment-info-contact {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.whatsapp-group-link {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.whatsapp-group-link i {
    font-size: 2rem;
    color: #25D366;
}

.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 */
.newsletter-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.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;
}

/* Blog */
.blog-section {
    padding: 60px 0;
}

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

.blog-post {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.blog-date {
    color: #2c7be5;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

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

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

/* Media Kit */
.mediakit-section {
    padding: 60px 0;
}

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

.mediakit-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.mediakit-card i {
    font-size: 2rem;
    color: #2c7be5;
    margin-bottom: 15px;
}

.mediakit-card h3 {
    margin-bottom: 15px;
}

.brand-colors {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.color-box {
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.7rem;
}

.color-box span {
    display: block;
}

.mediakit-card ul {
    list-style: none;
    margin-top: 15px;
}

.mediakit-card ul li {
    margin-bottom: 8px;
}

.copy-btn {
    margin-top: 15px;
    width: 100%;
}

/* Portal */
.portal-section {
    padding: 60px 0;
}

.portal-login {
    max-width: 450px;
    margin: 0 auto;
}

.portal-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.portal-card i {
    font-size: 3rem;
    color: #2c7be5;
    margin-bottom: 20px;
}

.portal-card input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.portal-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #666;
}

.portal-dashboard {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
}

.project-list, .message-list {
    margin: 20px 0;
}

.project-item, .message-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: #2c7be5;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-section .btn-wa {
    background: white;
    color: #2c7be5;
    margin-top: 20px;
}

.cta-section .btn-wa:hover {
    background: #f0f0f0;
}

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

/* 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: #2c7be5;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #2c7be5;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: 0.3s;
}

.back-to-top.show {
    display: block;
}

.back-to-top:hover {
    background: #1a5cb5;
}

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

.chat-button {
    width: 60px;
    height: 60px;
    background: #2c7be5;
    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: #f8f9fa;
}

.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: #2c7be5;
    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: #2c7be5;
    color: white;
    border: none;
    width: 40px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
}

/* 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;
    }
    
    .hero-stats {
        width: 100%;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin: 0 auto;
    }
    
    .portfolio-item {
        flex-direction: column;
        text-align: center;
    }
    
    .portfolio-img {
        margin: 0 auto;
    }
    
    .book-card {
        flex-direction: column;
        text-align: center;
    }
    
    .book-cover-img {
        margin: 0 auto;
    }
    
    .book-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .book-cover {
        margin: 0 auto;
    }
    
    .work-grid {
        flex-direction: column;
    }
    
    .cta-card {
        position: static;
    }
    
    .contact-grid {
        flex-direction: column;
    }
    
    .mediakit-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-tabs, .testimonials-tabs {
        flex-direction: column;
        align-items: center;
    }
    /* External Links & Facebook Group */
.external-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-external {
    background: transparent;
    border: 2px solid #2c7be5;
    color: #2c7be5;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-external:hover {
    background: #2c7be5;
    color: white;
}

.btn-facebook {
    background: #1877f2;
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-facebook:hover {
    background: #0d6ad1;
    transform: translateY(-2px);
}

.facebook-group {
    padding: 60px 0;
    background: linear-gradient(135deg, #1877f2, #0d6ad1);
    color: white;
}

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

.facebook-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.facebook-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.facebook-card .btn-facebook {
    background: white;
    color: #1877f2;
    margin-top: 20px;
}

.facebook-card .btn-facebook:hover {
    background: #f0f0f0;
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 40px;
    transition: 0.3s;
}

.cta-links a:hover {
    background: rgba(255,255,255,0.3);
}

.btn-sm {
    padding: 6px 15px;
    font-size: 0.8rem;
}

.brand-card .btn-external {
    margin-top: 10px;
    display: inline-block;
}
}