/* Social Media Packages Styles */

/* Override default service-card overflow for package badges */
.service-card {
    overflow: visible !important;
    margin-top: 20px;
    padding: 1.5rem 1.2rem !important;
}

/* Package Header */
.package-header {
    margin-bottom: 1rem;
}

.package-header h3 {
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.package-subtitle {
    font-size: 0.85rem;
    color: var(--color-hover);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Price Tag */
.price-tag {
    margin: 1.2rem 0;
    padding: 0.8rem;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.price-tag .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    display: inline-block;
}

.price-tag .price-period {
    font-size: 0.9rem;
    color: var(--color-hover);
    margin-left: 0.2rem;
}

/* Package Features */
.package-features {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--color-text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: #10b981;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Package Button */
.package-button {
    display: inline-block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-text);
    border: 2px solid rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.package-button:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.package-button.primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border: none;
}

.package-button.primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* Featured Card (Paket M) */
.service-card.featured {
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.6);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.12) 0%, rgba(30, 30, 30, 0.6) 100%);
    transform: scale(1.05);
    z-index: 2;
    overflow: visible;
    margin-top: 20px;
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.35);
}

/* Best Price Badge */
.best-price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    z-index: 10;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.best-price-badge i {
    color: #fbbf24;
    font-size: 1rem;
}

/* Package Icons */
.service-card .service-icon-large {
    margin: 1rem auto;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.service-card.featured .service-icon-large {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .service-card {
        margin-top: 20px;
    }
    
    .service-card.featured {
        transform: scale(1.02);
    }
    
    .service-card.featured:hover {
        transform: scale(1.02) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin-top: 20px;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .package-header h3 {
        font-size: 1.8rem;
    }
    
    .price-tag .price {
        font-size: 2rem;
    }
    
    .best-price-badge {
        top: -12px;
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 2rem 1.2rem;
    }
    
    .package-header h3 {
        font-size: 1.6rem;
    }
    
    .price-tag {
        margin: 1.5rem 0;
    }
    
    .price-tag .price {
        font-size: 1.8rem;
    }
    
    .package-features li {
        font-size: 0.95rem;
        padding: 0.7rem 0;
    }
    
    .best-price-badge {
        padding: 0.4rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .package-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* Success Stats Section */
.success-section {
    max-width: 1400px;
    margin: 4rem auto 2rem;
    padding: 2rem;
}

.success-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.success-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.success-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    border: 2px solid rgba(37, 99, 235, 0.3);
}

.success-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.success-badge i {
    color: #10b981;
}

.success-content h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-intro {
    font-size: 1.2rem;
    color: var(--color-hover);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(37, 99, 235, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-5px);
}

.stat-item.highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(30, 64, 175, 0.15));
    border: 2px solid rgba(37, 99, 235, 0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-hover);
    line-height: 1.3;
}

.success-cta {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.7;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.08);
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

/* Responsive for Success Section */
@media (max-width: 1024px) {
    .success-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
    }

    .success-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .success-section {
        margin: 2rem auto 1rem;
    }

    .success-container {
        padding: 2rem;
    }

    .success-content h2 {
        font-size: 2rem;
    }

    .success-intro {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .success-container {
        padding: 1.5rem;
    }

    .success-content h2 {
        font-size: 1.6rem;
    }

    .success-intro,
    .success-cta {
        font-size: 1rem;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

/* Imagefilm Section */
.imagefilm-section {
    max-width: 1400px;
    margin: 4rem auto 2rem;
    padding: 2rem;
}

.imagefilm-container {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, rgba(30, 30, 30, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.imagefilm-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #2563eb, #1e40af, #2563eb, transparent);
}

.imagefilm-header {
    text-align: center;
    margin-bottom: 3rem;
}

.imagefilm-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 20px 50px rgba(37, 99, 235, 0.6);
        transform: scale(1.05);
    }
}

.imagefilm-header h2 {
    font-size: 2.8rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.imagefilm-subtitle {
    font-size: 1.2rem;
    color: var(--color-hover);
    max-width: 600px;
    margin: 0 auto;
}

.imagefilm-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.imagefilm-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.imagefilm-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(37, 99, 235, 0.05);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
}

.imagefilm-feature:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateX(5px);
}

.imagefilm-feature i {
    font-size: 1.5rem;
    color: #2563eb;
    flex-shrink: 0;
}

.imagefilm-feature span {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
}

.imagefilm-cta {
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.imagefilm-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--color-hover);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text);
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.imagefilm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.imagefilm-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
}

.imagefilm-note {
    font-size: 0.9rem;
    color: var(--color-hover);
    margin: 0;
}

/* Responsive for Imagefilm Section */
@media (max-width: 1024px) {
    .imagefilm-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .imagefilm-features {
        grid-template-columns: 1fr;
    }

    .imagefilm-cta {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .imagefilm-section {
        margin: 2rem auto 1rem;
    }

    .imagefilm-container {
        padding: 2rem;
    }

    .imagefilm-header h2 {
        font-size: 2rem;
    }

    .imagefilm-subtitle {
        font-size: 1rem;
    }

    .imagefilm-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .imagefilm-features {
        gap: 1rem;
    }

    .imagefilm-feature {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .imagefilm-container {
        padding: 1.5rem;
    }

    .imagefilm-header h2 {
        font-size: 1.6rem;
    }

    .imagefilm-feature i {
        font-size: 1.2rem;
    }

    .imagefilm-feature span {
        font-size: 0.9rem;
    }

    .imagefilm-cta {
        padding: 1.5rem;
    }

    .price-value {
        font-size: 1.8rem;
    }
}
