/* === Reseller Page Styles === */
:root {
    --primary-red: #B71C1C;
    --secondary-orange: #FF6F00;
    --accent-gold: #FFD700;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #FFF8E1;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF3E0 100%);
    min-height: 100vh;
    color: var(--text-dark);
}

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

/* Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, #8B0000 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,215,0,0.05)"/></svg>');
    background-size: 100px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Main Navigation - LandingPage Style */
.menu-items-col .main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    align-items: center;
}

.menu-items-col .menu-lnk {
    margin: 0;
}

.menu-items-col .nav-link {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
}

.menu-items-col .nav-link:hover {
    color: white;
    background: rgba(255,255,255,0.2);
}

.menu-items-col .nav-link.active {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.menu-items-col .nav-link i {
    font-size: 0.9rem;
}

.page-title {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .menu-items-col {
        display: none;
    }
    
    .header-content {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo-section {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Hero Section */
.menu-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF3E0 100%);
    position: relative;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="rgba(255,215,0,0.03)"/></svg>');
    background-size: 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.menu-hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-red);
    margin-bottom: 20px;
}

.menu-hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--secondary-orange), var(--accent-gold));
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-red);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Reseller Pricing Table */
.pricing-section {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF3E0 100%);
    padding: 80px 0;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(183,28,28,0.03)"/></svg>');
    background-size: 80px;
}

.pricing-content {
    position: relative;
    z-index: 1;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 700px;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary-red) 0%, #8B0000 100%);
    color: white;
}

.pricing-table th {
    padding: 25px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table th:first-child {
    text-align: left;
    border-radius: 20px 0 0 0;
}

.pricing-table th:last-child {
    border-radius: 0 20px 0 0;
}

.pricing-table tbody tr {
    transition: all 0.3s ease;
}

.pricing-table tbody tr:nth-child(even) {
    background: rgba(255,215,0,0.05);
}

.pricing-table tbody tr:hover {
    background: rgba(255,215,0,0.1);
    transform: scale(1.01);
}

.pricing-table td {
    padding: 20px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.1rem;
}

.pricing-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 20px;
}

.pricing-table tbody tr:last-child td:last-child {
    border-radius: 0 0 20px 0;
}

.package-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 10px;
}

.badge-pemula {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: white;
}

.badge-medium {
    background: linear-gradient(45deg, #2196F3, #03A9F4);
    color: white;
}

.badge-besar {
    background: linear-gradient(45deg, var(--accent-gold), #FFB300);
    color: var(--text-dark);
}

.profit-highlight {
    color: #4CAF50;
    font-weight: 700;
}

.break-even-badge {
    background: rgba(183,28,28,0.1);
    color: var(--primary-red);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
}

.pricing-note {
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border-left: 5px solid var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 20px;
}

.pricing-note i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.pricing-note p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.pricing-note strong {
    color: var(--text-dark);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, #8B0000 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,215,0,0.05)"/></svg>');
    background-size: 80px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn-light {
    background: linear-gradient(45deg, var(--accent-gold), #FFB300);
    color: var(--text-dark);
}

.cta-btn-dark {
    background: white;
    color: var(--primary-red);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.footer a {
    color: var(--accent-gold);
    text-decoration: none;
}

