/*
Theme Name: WSN 2
Theme URI: https://wsn.co.id
Description: WordPress theme for PT Wedyata Solusi Nusantara
Version: 1.0
Author: PT Wedyata Solusi Nusantara
Text Domain: wsn
*/
/* Additional CSS for new sections */
/* Detector Section Styles */
/* Simple Detector Styles */
/* Detector Section Styles */
.detector-section {
    padding: 40px 20px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 30px 0;
}

.detector-section h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.detector-section p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.detector-section select {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-right: 10px;
    min-width: 250px;
    background: white;
}

.detector-section .btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.detector-section .btn:hover {
    background: #0056b3;
}

/* Result Styles */
#lightningResult {
    margin-top: 25px;
    text-align: left;
}

.result-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #007bff;
    margin-bottom: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}

.label {
    font-weight: bold;
    color: #333;
}

.value {
    color: #666;
}

.solution {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #28a745;
    font-weight: 500;
}
.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 25px 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #FF9900;
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #FF9900;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.service-item h3 {
    color: #003366;
    margin-bottom: 15px;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service-item li {
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.service-item li:last-child {
    border-bottom: none;
}

/* Products Section */
.products-section {
    background: #f8f9fa;
}

.product-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-price {
    font-size: 1.3em;
    font-weight: bold;
    color: #FF9900;
    margin: 10px 0;
}

.product-features {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-features span {
    color: #666;
    font-size: 0.9em;
}

.product-cta {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.product-cta:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Portfolio Section */
.portfolio-section {
    background: #003366;
    color: white;
}

.portfolio-section h2,
.portfolio-section .section-subtitle {
    color: white;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.portfolio-item {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #FF9900;
}

.portfolio-client {
    font-weight: bold;
    font-size: 1.1em;
    color: #FF9900;
    margin-bottom: 10px;
}

.portfolio-year {
    display: inline-block;
    background: #FF9900;
    color: #003366;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
    margin-top: 15px;
}

/* Testimonial Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-item::before {
    content: '"';
    font-size: 4em;
    color: #FF9900;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    color: #003366;
    display: block;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9em;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF9900, #FF6600);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

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

.feature {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}

/* Cost Summary */
.cost-summary {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.ppn-cost, .total-cost {
    font-size: 1.1em;
    margin: 10px 0;
}

.total-cost {
    font-size: 1.3em;
    font-weight: bold;
    color: #FF9900;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5em;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .cta-features {
        gap: 10px;
    }
    
    .feature {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

/* ===== OUR CLIENTS SECTION ===== */
.clients-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    padding: 80px 20px;
}

.clients-section h2 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 2.5em;
}

.clients-section .section-subtitle {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.client-logo {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,153,0,0.1), transparent);
    transition: left 0.6s ease;
}

.client-logo:hover::before {
    left: 100%;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-bottom: 4px solid #FF9900;
}

.client-logo img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.client-name {
    font-size: 0.85em;
    color: #666;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    margin-top: 10px;
}

/* Clients Stats */
.clients-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1000px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.clients-stats .stat-item {
    text-align: center;
    padding: 20px;
}

.clients-stats .stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FF9900;
    margin-bottom: 10px;
    display: block;
}

.clients-stats .stat-label {
    color: #003366;
    font-weight: 600;
    font-size: 0.9em;
}

/* Clients CTA */
.clients-cta {
    background: linear-gradient(135deg, #003366, #002244);
    color: white;
    padding: 50px 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.clients-cta p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #FF9900;
    font-weight: bold;
}

.clients-cta .cta-primary {
    background: linear-gradient(135deg, #FF9900, #FF6600);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.clients-cta .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,153,0,0.3);
    color: white;
}

/* Clients Slider Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.client-logo {
    animation: slideIn 0.6s ease forwards;
}

.client-logo:nth-child(1) { animation-delay: 0.1s; }
.client-logo:nth-child(2) { animation-delay: 0.2s; }
.client-logo:nth-child(3) { animation-delay: 0.3s; }
.client-logo:nth-child(4) { animation-delay: 0.4s; }
.client-logo:nth-child(5) { animation-delay: 0.5s; }
.client-logo:nth-child(6) { animation-delay: 0.6s; }
.client-logo:nth-child(7) { animation-delay: 0.7s; }
.client-logo:nth-child(8) { animation-delay: 0.8s; }
.client-logo:nth-child(9) { animation-delay: 0.9s; }
.client-logo:nth-child(10) { animation-delay: 1.0s; }

/* Responsive Design for Clients Section */
@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 15px;
    }
    
    .clients-section h2 {
        font-size: 2em;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .client-logo {
        padding: 20px 15px;
        min-height: 130px;
    }
    
    .client-logo img {
        max-width: 120px;
        max-height: 60px;
    }
    
    .client-name {
        font-size: 0.75em;
    }
    
    .clients-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
        margin: 40px auto;
    }
    
    .clients-stats .stat-number {
        font-size: 2em;
    }
    
    .clients-cta {
        padding: 40px 20px;
    }
    
    .clients-cta p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logo {
        padding: 15px 10px;
        min-height: 120px;
    }
    
    .client-logo img {
        max-width: 100px;
        max-height: 50px;
    }
    
    .clients-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .clients-stats .stat-item {
        padding: 15px;
    }
}
/* Additional CSS for new sections */
.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 25px 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #FF9900;
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #FF9900;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.service-item h3 {
    color: #003366;
    margin-bottom: 15px;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service-item li {
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.service-item li:last-child {
    border-bottom: none;
}

/* Products Section */
.products-section {
    background: #f8f9fa;
}

.product-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-price {
    font-size: 1.3em;
    font-weight: bold;
    color: #FF9900;
    margin: 10px 0;
}

.product-features {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-features span {
    color: #666;
    font-size: 0.9em;
}

.product-cta {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.product-cta:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Portfolio Section */
.portfolio-section {
    background: #003366;
    color: white;
}

.portfolio-section h2,
.portfolio-section .section-subtitle {
    color: white;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.portfolio-item {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #FF9900;
}

.portfolio-client {
    font-weight: bold;
    font-size: 1.1em;
    color: #FF9900;
    margin-bottom: 10px;
}

.portfolio-year {
    display: inline-block;
    background: #FF9900;
    color: #003366;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
    margin-top: 15px;
}

/* Testimonial Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-item::before {
    content: '"';
    font-size: 4em;
    color: #FF9900;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    color: #003366;
    display: block;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9em;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF9900, #FF6600);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

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

.feature {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}

/* Cost Summary */
.cost-summary {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.ppn-cost, .total-cost {
    font-size: 1.1em;
    margin: 10px 0;
}

.total-cost {
    font-size: 1.3em;
    font-weight: bold;
    color: #FF9900;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5em;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .cta-features {
        gap: 10px;
    }
    
    .feature {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

/* ===== RESET & GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s;
}

a:hover {
    color: #FF9900;
}

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

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, #FF9900, #FF6600);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-text {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.promo-text span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 60s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.promo-text:hover span {
    animation-play-state: paused;
}

.top-bar-contact {
    display: none;
}

.contact-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: #003366;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo-icon {
    font-size: 32px;
    background: #FF9900;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.logo-tagline {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FF9900;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header-contact {
    display: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.phone-link, .email-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.phone-link:hover, .email-link:hover {
    color: #FF9900;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #FF9900, #FF6600);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #003366;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.mobile-close {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.mobile-nav-menu {
    padding: 20px;
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 10px;
}

.mobile-menu li a {
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FF9900;
}

.mobile-contact {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-phone, .mobile-email, .mobile-cta {
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-align: left;
    border: none;
    background: none;
    font-size: 16px;
    width: 100%;
}

.mobile-phone, .mobile-email {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-cta {
    background: linear-gradient(135deg, #FF9900, #FF6600);
    justify-content: center;
    font-weight: bold;
}

.mobile-phone:hover, .mobile-email:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FF9900;
}

/* ===== MAIN CONTENT ===== */
.site-main {
    min-height: 60vh;
    padding-bottom: 80px;
}

/* Hero Section */
.hero-section {
    background-color: #003087;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.badge {
    background-color: #FF9900;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: bold;
}

.hero-section h1 {
    font-size: 28px;
    margin: 0 0 15px;
    line-height: 1.3;
}

.hero-section p {
    font-size: 16px;
    margin: 0 0 30px;
    opacity: 0.9;
}

.cta-primary, .cta-secondary {
    background-color: #FF9900;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 5px;
    margin: 5px;
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary {
    background-color: #0066cc;
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-2px);
    color: #FFFFFF;
}

/* Map Container */
.map-container {
    width: 100%;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#map {
    height: 300px;
    width: 100%;
    border-radius: 10px;
}

.alert {
    background: #ffcc00;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

/* Content Sections */
.content-section {
    background-color: #FFFFFF;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 30px;
}

.content-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #003366;
}

/* Lightning Detector */
.detector-section select,
.estimation-section select,
.estimation-section input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.btn {
    background-color: #FF9900;
    color: #FFFFFF;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e68a00;
}

#lightning-result {
    margin-top: 20px;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

#lightning-result .result-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#lightning-result .result-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed #ccc;
}

#lightning-result .result-item:last-child {
    border-bottom: none;
}

#lightning-result .label {
    font-weight: bold;
    color: #003366;
}

#lightning-result .value {
    color: #666;
}

#lightning-result .solution {
    margin-top: 15px;
    padding: 10px;
    background-color: #e6f3ff;
    border-radius: 5px;
    color: #003366;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #003366;
}

.product-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.portfolio-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-item h3 {
    font-size: 18px;
    margin: 15px;
    color: #003366;
}

.portfolio-item p {
    font-size: 14px;
    margin: 0 15px 15px;
    color: #666;
}

/* ===== ESTIMASI BIAYA STYLES ===== */
.estimasi-container {
    max-width: 800px;
    margin: 0 auto;
}

.estimasi-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.estimasi-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: #003366;
    margin-bottom: 20px;
    font-size: 20px;
    border-left: 4px solid #FF9900;
    padding-left: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-input, .form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.calculate-button {
    width: 100%;
    background: linear-gradient(135deg, #FF9900, #FF6600);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.calculate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.3);
}

.estimasi-result {
    background: #003366;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    display: none;
}

.estimasi-result.show {
    display: block;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.estimasi-result h3 {
    color: #FF9900;
    margin-bottom: 15px;
    font-size: 24px;
}

.result-note {
    color: #ffcc00;
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
}

.breakdown-container {
    margin: 25px 0;
}

.breakdown-container h4 {
    color: #FF9900;
    margin-bottom: 15px;
    font-size: 18px;
}

.breakdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breakdown-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e9ecef;
}

.breakdown-list li:last-child {
    border-bottom: none;
}

.subtotal-cost {
    font-size: 20px;
    font-weight: bold;
    margin: 25px 0;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    color: #FF9900;
}

.recommendation {
    font-size: 14px;
    color: #adb5bd;
    margin: 20px 0;
    line-height: 1.5;
}

.whatsapp-button {
    display: block;
    text-align: center;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white;
}

/* Download Section */
.download-section {
    text-align: center;
}

.download-section a {
    display: inline-block;
    background-color: #FF9900;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 5px;
    margin: 10px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-decoration: none;
}

.download-section a:hover {
    background-color: #e68a00;
}

/* ===== FOOTER STYLES ===== */
.main-footer {
    background: #002244;
    color: white;
    padding: 50px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #FF9900;
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid #FF9900;
    padding-bottom: 8px;
}

.footer-section h5 {
    color: #FF9900;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Company Info */
.company-info {
    grid-column: 1 / -1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 40px;
    background: #FF9900;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.footer-logo-text h3 {
    margin: 0;
    font-size: 20px;
    color: #FF9900;
}

.tagline {
    opacity: 0.8;
    margin: 5px 0 0 0;
    font-size: 14px;
}

.company-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.company-description strong {
    color: #FF9900;
}

/* SEO Keywords */
.seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.keyword-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FF9900;
}

/* Services List */
.services-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-list li {
    margin-bottom: 8px;
}

.services-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.services-list a:hover {
    color: #FF9900;
    padding-left: 5px;
}

/* Service Areas */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.area-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.area-group li {
    margin-bottom: 5px;
}

.area-group a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.area-group a:hover {
    color: #FF9900;
}

/* CTA & Social */
.footer-cta {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #FF9900;
}

.footer-cta p {
    margin: 0 0 10px 0;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.whatsapp-cta:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white;
}

/* Social Links */
.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.social-link:hover {
    background: #FF9900;
    transform: translateY(-2px);
    color: white;
}

.social-text {
    font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.copyright p {
    margin: 0 0 10px 0;
    color: rgba(255, 255, 255, 0.8);
}

.seo-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.seo-text strong {
    color: #FF9900;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF9900;
}

/* ===== BOTTOM NAVIGATION ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #003366;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.bottom-nav-item {
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
    flex: 1;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: #FF9900;
    background-color: rgba(255, 153, 0, 0.1);
}

.nav-icon {
    font-size: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) {
    .top-bar-contact {
        display: block;
    }
    
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .header-contact {
        display: block;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
        gap: 40px;
    }
    
    .company-info {
        grid-column: auto;
    }
    
    .mobile-nav {
        width: 400px;
        left: -400px;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section p {
        font-size: 18px;
    }
    
    #map {
        height: 400px;
    }
    
    .content-section {
        margin: 30px auto;
        max-width: 1200px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .social-icons {
        flex-direction: column;
    }
    
    .social-link {
        min-width: 150px;
        justify-content: flex-start;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        gap: 30px;
    }
    
    .header-actions {
        gap: 25px;
    }
    
    .hero-section {
        padding: 80px 20px;
    }
    
    .hero-section h1 {
        font-size: 42px;
    }
    
    .footer-content {
        gap: 50px;
    }
}

/* Utility Classes */
.icon {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* WordPress Admin Bar Compatibility */
.admin-bar .main-header {
    top: 32px;
}

.admin-bar .mobile-nav {
    top: 32px;
    height: calc(100vh - 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .main-header {
        top: 46px;
    }
    
    .admin-bar .mobile-nav {
        top: 46px;
        height: calc(100vh - 46px);
    }
}

/* ===== TABLE OF CONTENTS STYLES ===== */
.table-of-contents {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    position: relative;
    transition: all 0.3s ease;
}

.table-of-contents.sticky {
    position: fixed;
    top: 100px;
    left: 20px;
    right: 20px;
    z-index: 999;
    max-width: 300px;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    background: white;
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF9900;
}

.toc-header h3 {
    margin: 0;
    color: #003366;
    font-size: 1.2em;
}

.toc-toggle {
    display: none;
    background: #FF9900;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.toc-toggle:hover {
    background: #e68a00;
}

.toc-nav {
    transition: all 0.3s ease;
}

.toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-item {
    margin-bottom: 8px;
    position: relative;
}

.toc-item.toc-level-h2 {
    font-weight: 600;
    margin-left: 0;
}

.toc-item.toc-level-h3 {
    font-weight: 400;
    margin-left: 15px;
    font-size: 0.9em;
}

.toc-item.toc-level-h3::before {
    content: "•";
    color: #FF9900;
    margin-right: 8px;
}

.toc-link {
    color: #555;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    color: #003366;
    background: rgba(255, 153, 0, 0.1);
    border-left-color: #FF9900;
    padding-left: 15px;
}

.toc-link.active {
    color: #003366;
    background: rgba(255, 153, 0, 0.15);
    border-left-color: #FF9900;
    font-weight: 600;
    padding-left: 15px;
}

/* ===== STICKY TOP NAVIGATION ===== */
.sticky-top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #003366;
    color: white;
    padding: 15px 0;
    z-index: 1001;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-top-nav.active {
    transform: translateY(0);
}

.sticky-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-nav-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #FF9900;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

.sticky-nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sticky-nav-toc-toggle {
    background: #FF9900;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.sticky-nav-toc-toggle:hover {
    background: #e68a00;
    transform: translateY(-2px);
}

.back-to-top {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .table-of-contents.sticky {
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
}

@media (max-width: 768px) {
    .table-of-contents {
        margin: 20px 0;
        padding: 15px;
    }
    
    .table-of-contents.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        max-width: none;
        max-height: none;
        z-index: 1002;
        border-radius: 0;
        margin: 0;
    }
    
    .toc-toggle {
        display: block;
    }
    
    .toc-nav {
        max-height: 0;
        overflow: hidden;
    }
    
    .toc-nav.active {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .sticky-top-nav {
        padding: 12px 0;
    }
    
    .sticky-nav-title {
        font-size: 1em;
        max-width: 50%;
    }
    
    .sticky-nav-actions {
        gap: 10px;
    }
    
    .sticky-nav-toc-toggle,
    .back-to-top {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .sticky-nav-title {
        font-size: 0.9em;
        max-width: 40%;
    }
    
    .sticky-nav-actions {
        gap: 8px;
    }
    
    .sticky-nav-toc-toggle,
    .back-to-top {
        padding: 5px 10px;
        font-size: 11px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .main-header,
    .bottom-nav,
    .footer,
    .cta-button {
        display: none !important;
    }
    
    .site-main {
        padding-bottom: 0;
    }
    
    .content-section {
        box-shadow: none;
        margin: 10px 0;
    }
}