* {
    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;
}

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

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

.btn-link {
    color: #e8491d;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
}

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

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

.hero-stats {
    flex: 1;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.stat {
    text-align: center;
}

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

.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: #e8491d;
    margin: 15px auto 0;
}

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

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

.service-card {
    background: #f8f8f5;
    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: 15px 0;
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: #e8491d;
    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: #e8491d;
    margin-right: 10px;
}

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

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

.badge-hot {
    background: #e8491d;
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 10px;
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 60px 0;
    background: #f5f5f0;
}

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

.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

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

.portfolio-image {
    height: 150px;
    background: linear-gradient(135deg, #e8491d, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.portfolio-card h3 {
    padding: 20px 20px 10px;
}

.portfolio-card p {
    padding: 0 20px 20px;
    color: #666;
}

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

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

.portfolio-details {
    flex: 1;
}

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

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

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

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

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

.testimonial-card {
    background: white;
    padding: 25px;
    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;
}

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

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

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

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

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

.laptop-image {
    font-size: 4rem;
    color: #e8491d;
    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: #e8491d;
    margin: 15px 0;
}

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

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

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

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

/* Pricing Table */
.pricing-section {
    padding: 60px 0;
    background: white;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

.pricing-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #ddd;
}

.pricing-row.header {
    background: #0a0a2a;
    color: white;
    font-weight: bold;
}

.pricing-cell {
    padding: 15px;
    text-align: center;
}

.pricing-cell:first-child {
    text-align: left;
    font-weight: bold;
}

.pricing-cell small {
    font-size: 0.7rem;
    color: #666;
}

.pricing-note {
    background: #f8f8f5;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.pricing-cta {
    text-align: center;
}

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

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

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

.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: 18px 20px;
    background: #f8f8f5;
    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 #ddd;
    line-height: 1.6;
}

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

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

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

.work-content {
    flex: 2;
}

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

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

.positions ul li i {
    color: #e8491d;
    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: #e8491d;
    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 */
.contact-section {
    padding: 60px 0;
    background: white;
}

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

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

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

.contact-detail i, .whatsapp-group-link i {
    width: 45px;
    height: 45px;
    background: white;
    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;
}

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

.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: #f5f5f0;
}

.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;
    background: white;
}

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

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

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

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

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

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

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

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

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

/* 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;
}

/* 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%;
    }
    
    .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;
    }
    
    .pricing-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-row.header {
        display: none;
    }
    
    .pricing-cell {
        text-align: left;
        border-bottom: 1px solid #eee;
    }
    
    .pricing-cell:before {
        content: attr(data-label);
        font-weight: bold;
        display: inline-block;
        width: 120px;
    }
    
    .work-grid {
        flex-direction: column;
    }
    
    .cta-card {
        position: static;
    }
}