/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6C5CE7;
    --secondary: #00B894;
    --accent: #FF6B6B;
    --dark: #2D3436;
    --light: #DFE6E9;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Performance Optimization */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary);
}

.header-cta {
    display: flex;
    gap: 10px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.telegram-btn {
    background: #0088cc;
    color: white;
}

.btn-icon:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: #019874;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,184,148,0.4);
}

.btn-secondary {
    background: #0088cc;
    color: white;
}

.btn-secondary:hover {
    background: #006699;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 18px 50px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.badge-new {
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

/* Trust Badges */
.trust-badges {
    padding: 2rem 0;
    background: var(--light);
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Guest Posts Premium Section */
.guest-posts-premium {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.badge-hot {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.subtitle-big {
    font-size: 1.2rem;
    color: #636E72;
}

/* Guest Stats */
.guest-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.guest-stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.guest-stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.stat-text {
    color: #636E72;
    font-weight: 500;
}

/* Premium Sites Table */
.premium-sites-section {
    margin-top: 4rem;
}

.table-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
    font-weight: 600;
}

.table-heading i {
    color: #FFD700;
    font-size: 1.8rem;
}

.live-indicator {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.table-responsive {
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.guest-posts-table {
    width: 100%;
    border-collapse: collapse;
}

.guest-posts-table thead {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
}

.guest-posts-table th,
.guest-posts-table td {
    padding: 16px 12px;
    text-align: center;
    vertical-align: middle;
}

.guest-posts-table thead th {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.guest-posts-table tbody td {
    font-size: 0.95rem;
}

.guest-posts-table tbody td:nth-child(2) {
    text-align: left;
}

.guest-posts-table tbody td strong {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.guest-posts-table tbody td small {
    color: #666;
    font-size: 0.85rem;
}

.guest-posts-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.guest-posts-table tbody tr:hover {
    background: #f8f9fa;
}

.guest-posts-table tr.super-hot {
    background: rgba(255, 107, 107, 0.1);
}

.guest-posts-table tr.hot-deal {
    background: rgba(255, 165, 2, 0.1);
}

.guest-posts-table tr.premium {
    background: rgba(108, 92, 231, 0.05);
}

.guest-posts-table tr.vip {
    background: rgba(255, 215, 0, 0.1);
}

.metric-badge {
    background: #E8EAF6;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    color: #5E6C84;
    display: inline-block;
    min-width: 45px;
}

.metric-badge.high {
    background: #00D9B1;
    color: white;
}

/* DR Badge Colors */
.guest-posts-table tbody tr:nth-child(3) td:nth-child(3) .metric-badge,
.guest-posts-table tbody tr:nth-child(4) td:nth-child(3) .metric-badge,
.guest-posts-table tbody tr:nth-child(5) td:nth-child(3) .metric-badge {
    background: #00D9B1;
    color: white;
}

/* DA Badge Colors */
.guest-posts-table tbody tr:nth-child(3) td:nth-child(4) .metric-badge,
.guest-posts-table tbody tr:nth-child(4) td:nth-child(4) .metric-badge,
.guest-posts-table tbody tr:nth-child(5) td:nth-child(4) .metric-badge {
    background: #00D9B1;
    color: white;
}

/* PA Badge Colors */
.guest-posts-table tbody tr:nth-child(3) td:nth-child(5) .metric-badge,
.guest-posts-table tbody tr:nth-child(4) td:nth-child(5) .metric-badge,
.guest-posts-table tbody tr:nth-child(5) td:nth-child(5) .metric-badge {
    background: #00D9B1;
    color: white;
}

.price-tag {
    font-weight: 700;
    font-size: 1.15rem;
    color: #6C5CE7;
}

.price-tag.hot {
    color: #FF6B6B;
    font-weight: 700;
}

.price-tag.super-hot {
    color: #FFAA00;
    font-weight: 700;
}

.price-tag.premium {
    color: #6C5CE7;
    font-weight: 700;
}

.btn-order {
    background: #00D9B1;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-order:hover {
    background: #00BFA5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 217, 177, 0.4);
}

.table-footer-cta {
    text-align: center;
    margin-top: 2rem;
}

.urgent-text {
    color: #FF6B6B;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--light);
}

.package-title {
    text-align: center;
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
    color: var(--dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--secondary);
}

.pricing-card.premium {
    border: 3px solid var(--primary);
}

.pricing-card.vip {
    background: var(--gradient-gold);
    color: white;
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pricing-card p {
    color: #636E72;
    margin-bottom: 1.5rem;
}

/* Reviews */
.reviews-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4caf50;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
}

.add-review-section {
    max-width: 600px;
    margin: 3rem auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.add-review-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

#comment-form input,
#comment-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-size: 1rem;
}

#comment-form input:focus,
#comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.rating-input {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    font-size: 1.5rem;
    color: #FFD700;
    cursor: pointer;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card.whatsapp i {
    color: #25D366;
}

.contact-card.telegram i {
    color: #0088cc;
}

.contact-card.email i {
    color: var(--accent);
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #636E72;
    margin-bottom: 1.5rem;
}

.contact-card span {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--dark);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37,211,102,0.5);
    z-index: 999;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.admin-link {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    z-index: 999;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.admin-link:hover {
    opacity: 1;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .table-responsive {
        overflow-x: scroll;
    }
    
    .guest-posts-table {
        min-width: 800px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-lg, .btn-xl {
        width: 100%;
    }
}