/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left a,
.header-top-right a {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-top-left a:hover,
.header-top-right a:hover {
    color: white;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #8a2be2;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    color: #333;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #8a2be2;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #8a2be2;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 80px 30px 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    color: #8a2be2;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8a2be2, #6a11cb);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8a2be2;
    border: 2px solid #8a2be2;
}

.btn-secondary:hover {
    background: #8a2be2;
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #8a2be2;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

.hero-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #ffd700;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-image .placeholder-image {
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #9d50bb, #6a11cb);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.promo-badge {
    background: #ffd700;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
}

.promo-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.popular {
    border: 2px solid #8a2be2;
    transform: scale(1.05);
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #8a2be2;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.plan-speed {
    font-size: 2rem;
    font-weight: 700;
    color: #8a2be2;
    margin: 15px 0;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 15px 0;
}

.plan-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.plan-features {
    margin: 30px 0;
}

.plan-features ul {
    list-style: none;
}

.plan-features ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.plan-features ul li:last-child {
    border-bottom: none;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* TV Packages */
.tv-packages {
    padding: 80px 0;
    background: #f8f9fa;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.channel-count {
    background: #8a2be2;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

/* Channel List */
.channel-list {
    padding: 80px 0;
    background: white;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.channel-category h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.channel-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.channel-items span {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    border: 1px solid #e9ecef;
}

/* Business Features */
.business-features {
    padding: 60px 0;
    background: #f8f9fa;
}

.business-features .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Business Tabs */
.business-tabs {
    margin-top: 40px;
}

.tab-headers {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
}

.tab-header {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-header.active {
    color: #8a2be2;
    border-bottom-color: #8a2be2;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.business-plan-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.business-plan-card.popular {
    border-color: #8a2be2;
}

/* Business CTA */
.business-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8a2be2;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* Additional Purple Theme Elements */
.purple-theme {
    /* Additional purple theme styles can be added here */
}

/* Gradient backgrounds with purple theme */
.purple-gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.purple-gradient-2 {
    background: linear-gradient(135deg, #8a2be2 0%, #4b0082 100%);
}

.purple-gradient-3 {
    background: linear-gradient(135deg, #9d50bb 0%, #6a11cb 100%);
}

/* Purple accent elements */
.accent-purple {
    color: #8a2be2;
}

.bg-accent-purple {
    background-color: #8a2be2;
}

.border-accent-purple {
    border-color: #8a2be2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-main .container {
        flex-wrap: wrap;
    }

    nav ul {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-banner .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 2.2rem;
    }

    .banner-actions {
        justify-content: center;
    }

    .plans-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.popular {
        transform: none;
    }

    .plan-card.popular:hover {
        transform: translateY(-10px);
    }

    .tab-headers {
        flex-direction: column;
        align-items: center;
    }

    .tab-header {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    .hero-banner {
        padding: 80px 0;
    }

    .banner-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* Additional Styles for New Packages */

.plan-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #8a2be2, #6a11cb);
    border-radius: 2px;
}

.plan-discount {
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.discount-badge {
    background: #ff6b6b;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Gaming Plan Cards */
.plan-card.gaming {
    border-left: 4px solid #8a2be2;
}

.plan-card.gaming .plan-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.plan-card.gaming .plan-speed {
    color: #8a2be2;
}

/* Streamer Plan Cards */
.plan-card.streamer {
    border-left: 4px solid #9d50bb;
}

.plan-card.streamer .plan-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.plan-card.streamer .plan-speed {
    color: #9d50bb;
}

/* Special Promo Section */
.special-promo {
    padding: 80px 0;
    background: #f8f9fa;
}

.promo-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 60px 40px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

.promo-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.promo-card h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.promo-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.promo-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.promo-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.promo-item p {
    opacity: 0.9;
    margin: 0;
}

.promo-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Coverage Check Section */
.coverage-check {
    padding: 80px 0;
    background: white;
}

.coverage-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.address-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.address-input:focus {
    outline: none;
    border-color: #8a2be2;
}

.coverage-areas {
    text-align: center;
}

.coverage-areas h4 {
    margin-bottom: 20px;
    color: #333;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.area-list span {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.area-list span:hover {
    background: #8a2be2;
    color: white;
    border-color: #8a2be2;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .plan-category {
        margin-bottom: 60px;
    }
    
    .category-title {
        font-size: 1.7rem;
    }
    
    .promo-card {
        padding: 40px 20px;
    }
    
    .promo-card h2 {
        font-size: 2rem;
    }
    
    .promo-details {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .area-list {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .plan-discount {
        flex-direction: column;
        gap: 5px;
    }
    
    .promo-card h2 {
        font-size: 1.7rem;
    }
    
    .promo-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}
/* WhatsApp Button Animation */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

/* WhatsApp-specific button style */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
}

/* Enhanced Plan Card Hover Effects */
.plan-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plan-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.15);
}

.plan-card.popular:hover {
    transform: scale(1.07) translateY(-12px);
}

/* Button click animation */
.btn-primary:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Loading animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Pulse animation for popular cards */
@keyframes popularPulse {
    0% {
        box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(138, 43, 226, 0.5);
    }
    100% {
        box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
    }
}

.plan-card.popular {
    animation: popularPulse 3s ease-in-out infinite;
}

/* WhatsApp floating button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp::after {
    content: 'Konsultasi via WhatsApp';
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.floating-whatsapp:hover::after {
    opacity: 1;
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .floating-whatsapp::after {
        display: none;
    }
}