/* Pricing Page Specific Styles */

.pricing-hero {
    padding: 120px 0 80px;
    background: #131314;
    color: white;
    text-align: center;
    margin-top: 0;
}

.pricing-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.service-area-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Before/After Section */
.before-after-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.before-after-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.before-after-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.video-section-header {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 3rem 0 1rem 0;
    font-weight: bold;
}

.before-after-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--light-bg);
}

.before-after-item h3 {
    padding: 20px;
    margin: 0;
    background: #131314;
    color: white;
    text-align: center;
    font-size: 1.2rem;
}

.before-after-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.before-after-wrapper:active {
    cursor: grabbing;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.before-after-before,
.before-after-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-after {
    clip-path: inset(0 50% 0 0);
}

.before-after-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: grab;
    z-index: 10;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.before-after-slider:active {
    cursor: grabbing;
}

.before-after-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--primary-color);
}

.before-after-slider::after {
    content: '◀ ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
}

.before-after-label {
    position: absolute;
    top: 20px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 5px;
    z-index: 5;
}

.before-after-label.before {
    left: 20px;
}

.before-after-label.after {
    right: 20px;
}

/* Pricing Packages */
.pricing-packages {
    padding: 80px 0;
    background: var(--light-bg);
}

.pricing-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.package-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.package-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.package-price-period {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.package-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.package-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.package-button:hover {
    background: var(--secondary-color);
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: var(--bg-color);
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-item p {
    color: #666;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* CTA Section */
.pricing-cta {
    padding: 80px 0;
    background: white;
    color: var(--text-color);
    text-align: center;
}

.pricing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pricing-cta .cta-button {
    background: var(--secondary-color);
    color: white;
}

.pricing-cta .cta-button:hover {
    background: #c0392b;
}

/* GST Notice */
.gst-notice {
    padding: 40px 0;
    background: #131314;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.gst-text {
    color: white;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: bold;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .before-after-container {
        grid-template-columns: 1fr;
    }
    
    .before-after-item {
        margin-bottom: 20px;
    }
    
    .video-section-header {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-hero .subtitle {
        font-size: 1rem;
    }
    
    .service-area-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .before-after-wrapper {
        aspect-ratio: 4/3;
    }
}

