/* ======================================
   FOOD PHOTOGRAPHY STYLES
   Separated from food-photography.blade.php
   ====================================== */

/* ==== MATRIX BACKGROUND STYLES ==== */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.matrix-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.matrix-rain::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200%;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 118px,
            rgba(230, 166, 48, 0.06) 120px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 118px,
            rgba(230, 166, 48, 0.06) 120px
        );
    animation: matrixFlow 35s linear infinite;
}

.matrix-rain::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 25%, rgba(230, 166, 48, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 75% 70%, rgba(223, 151, 16, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 45% 85%, rgba(230, 166, 48, 0.04) 0%, transparent 60%);
    animation: matrixPulse 12s ease-in-out infinite alternate;
}

.matrix-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, transparent 25%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.9) 100%),
        linear-gradient(45deg, rgba(230, 166, 48, 0.02) 0%, transparent 30%, transparent 70%, rgba(223, 151, 16, 0.02) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 15%, transparent 85%, rgba(0, 0, 0, 0.85) 100%);
    opacity: 0.9;
}

@keyframes matrixFlow {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0%); }
}

@keyframes matrixPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.2; }
    100% { opacity: 0.4; }
}

/* Mobile optimization for Matrix effect */
@media (max-width: 768px) {
    .matrix-rain {
        opacity: 0.2;
    }

    .matrix-rain::before {
        background-image:
            repeating-linear-gradient(
                90deg,
                transparent,
                transparent 140px,
                rgba(230, 166, 48, 0.04) 142px
            );
        animation: matrixFlow 45s linear infinite;
    }

    .matrix-overlay {
        opacity: 0.85;
        background:
            radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.7) 100%),
            linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.9) 100%);
    }
}

/* ==== MOBILE FIRST HERO SECTION ==== */

/* Base Mobile Styles (320px+) */
.hero-conversion-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    position: relative;
}

.hero-row {
    min-height: calc(100vh - 140px);
    align-items: center;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-content-wrapper {
    padding: 20px 0;
}

/* Limited Badge - Mobile First */
.limited-badge {
    background: linear-gradient(45deg, #e6a630, #df9710);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(230,166,48,0.3);
}

.badge-text {
    display: none; /* Hide text on very small screens */
}

/* Hero Title - Mobile First */
.hero-title {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.1;
    font-weight: 800;
}

/* Hero Subtitle - Mobile First */
.hero-subtitle {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 24px;
    line-height: 1.4;
}

/* Trust Indicators - Mobile First (Stacked) */
.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    align-items: center;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 1.5rem;
    color: #e6a630;
    font-weight: bold;
    line-height: 1;
}

.trust-label {
    color: #999;
    font-size: 0.8rem;
    margin-top: 4px;
}

/* CTA Buttons - Mobile First (Stacked) */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-primary-large,
.btn-secondary-large {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-height: 48px; /* Minimum touch target */
    box-sizing: border-box;
}

.btn-primary-large {
    background: linear-gradient(45deg, #e6a630, #df9710);
    color: #000;
    border: none;
    box-shadow: 0 4px 16px rgba(230,166,48,0.3);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,166,48,0.4);
    color: #000;
}

.btn-secondary-large {
    background: transparent;
    color: #e6a630;
    border: 2px solid #e6a630;
}

.btn-secondary-large:hover {
    background: #e6a630;
    color: #000;
    transform: translateY(-2px);
}

/* Guarantee Badges - Mobile First */
.guarantee-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.guarantee-badges span {
    color: #999;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.guarantee-badges i {
    color: #4caf50;
    font-size: 1rem;
}

/* Images - Mobile First */
.hero-images {
    margin-top: 40px;
}

.hero-image-showcase {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
    object-fit: cover;
}

/* Animations - Simplified for Mobile */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==== TABLET STYLES (480px+) ==== */
@media (min-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .badge-text {
        display: inline; /* Show full text */
    }

    .limited-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .trust-indicators {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .trust-number {
        font-size: 1.75rem;
    }

    .main-image-container {
        max-width: 320px;
        height: 320px;
    }

    .hero-images {
        margin-top: 50px;
    }

    .hero-image-showcase {
        height: 320px;
    }
}

/* ==== TABLET LANDSCAPE (768px+) ==== */
@media (min-width: 768px) {
    .hero-conversion-section {
        padding: 100px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: auto;
        min-width: 180px;
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .guarantee-badges {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .guarantee-badges span {
        font-size: 0.9rem;
    }

    .trust-indicators {
        gap: 32px;
        margin-bottom: 40px;
    }

    .trust-number {
        font-size: 2rem;
    }

    .trust-label {
        font-size: 0.9rem;
    }
}

/* ==== DESKTOP (992px+) ==== */
@media (min-width: 992px) {
    .hero-conversion-section {
        height: 100vh;
        padding: 0;
    }

    .hero-row {
        height: 100vh;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content-wrapper {
        padding: 40px 0;
        max-width: 90%;
    }

    .hero-title {
        font-size: 3.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }

    .trust-indicators {
        justify-content: flex-start;
        margin-bottom: 50px;
    }

    .hero-cta-group {
        justify-content: flex-start;
        margin-bottom: 40px;
        gap: 20px;
    }

    .btn-primary-large,
    .btn-secondary-large {
        padding: 15px 35px;
        font-size: 1.2rem;
    }

    .guarantee-badges {
        justify-content: flex-start;
    }

    .hero-images {
        margin-top: 0;
    }

    .hero-image-showcase {
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-image-container {
        max-width: none;
        width: 85%;
        height: 400px;
        margin: 0 auto;
        position: relative;
    }

    .hero-main-img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
}

/* ==== LARGE DESKTOP (1200px+) ==== */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-content-wrapper {
        max-width: 85%;
    }

    .trust-indicators {
        gap: 40px;
    }

    .trust-number {
        font-size: 2.2rem;
    }
}

/* ==== URGENCY BANNER - MOBILE FIRST ==== */

/* Mobile Base Styles */
.urgency-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 2px solid #e6a630;
    border-bottom: 2px solid #e6a630;
    padding: 16px 0;
    color: #fff;
    position: relative;
}

.urgency-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.urgency-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.promo-label {
    color: #999;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-code-wrapper {
    position: relative;
    display: inline-block;
}

.promo-code {
    background: linear-gradient(45deg, #e6a630, #df9710);
    color: #000;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(230,166,48,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    min-height: 44px; /* Touch target */
}

.promo-code:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(230,166,48,0.4);
}

.promo-code .bx-copy {
    font-size: 0.9rem;
    opacity: 0.8;
}

.copy-feedback {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(40, 167, 69, 0.95);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
}

.copy-feedback.show {
    opacity: 1;
    visibility: visible;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.promo-discount {
    color: #e6a630;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.urgency-timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.timer-label {
    color: #999;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-blocks {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.timer-block {
    background: rgba(230,166,48,0.1);
    border: 1px solid rgba(230,166,48,0.3);
    padding: 8px 10px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.timer-block span:first-child {
    color: #e6a630;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
}

.timer-unit {
    color: #999;
    font-size: 0.65rem;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Tablet Urgency Banner (480px+) */
@media (min-width: 480px) {
    .urgency-banner {
        padding: 18px 0;
    }

    .urgency-promo {
        flex-direction: row;
        gap: 16px;
    }

    .promo-code {
        font-size: 1.1rem;
        padding: 10px 18px;
    }

    .timer-blocks {
        gap: 10px;
    }

    .timer-block {
        padding: 10px 12px;
        min-width: 55px;
    }

    .timer-block span:first-child {
        font-size: 1.6rem;
    }

    .timer-unit {
        font-size: 0.7rem;
    }
}

/* Desktop Urgency Banner (768px+) */
@media (min-width: 768px) {
    .urgency-banner {
        padding: 20px 0;
    }

    .urgency-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 30px;
    }

    .urgency-promo {
        flex-direction: row;
        align-items: center;
    }

    .promo-label {
        font-size: 1rem;
    }

    .promo-code {
        font-size: 1.3rem;
        padding: 8px 20px;
        letter-spacing: 2px;
    }

    .promo-discount {
        font-size: 0.95rem;
        text-align: left;
    }

    .timer-blocks {
        gap: 12px;
    }

    .timer-block {
        padding: 12px 15px;
        min-width: 60px;
    }

    .timer-block span:first-child {
        font-size: 1.8rem;
    }

    .timer-label {
        font-size: 0.9rem;
    }

    .timer-unit {
        font-size: 0.75rem;
    }
}

/* Stats Section - Mobile First */
.stats-section {
    /* Mobile base */
    padding: 40px 0;
    position: relative;
    color: #ffffff;
}

.stats-section h2 {
    /* Mobile base - override inline styles */
    font-size: 1.75rem !important;
    font-weight: 700;
    color: #e6a630;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.stats-section .lead {
    /* Mobile base */
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.section-title {
    /* Mobile base */
    font-size: 1.75rem;
    font-weight: 700;
    color: #e6a630;
    margin-bottom: 1rem;
    text-transform: capitalize;
    font-family: 'AlgerianBasD', serif;
    line-height: 1.2;
}

.stat-card {
    text-align: center;
    /* Mobile base - compact padding */
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    /* Reduced transition for mobile performance */
    transition: transform 0.2s ease;
    margin-bottom: 1rem;
}

.stat-number {
    /* Mobile base - smaller numbers */
    font-size: 2.2rem;
    font-weight: bold;
    color: #e6a630;
    display: inline-block;
}

.stat-symbol {
    /* Mobile base */
    font-size: 1.6rem;
    color: #e6a630;
    display: inline-block;
}

.stat-text {
    color: #ffffff;
    margin-top: 8px;
    /* Mobile base - smaller text */
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Stats Tablet (480px+) */
@media (min-width: 480px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-section h2,
    .section-title {
        font-size: 2.25rem !important;
        margin-bottom: 1.5rem;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-symbol {
        font-size: 2rem;
    }

    .stat-text {
        font-size: 0.9rem;
    }
}

/* Stats Desktop (768px+) */
@media (min-width: 768px) {
    .stats-section {
        padding: 80px 0;
    }

    .stats-section h2,
    .section-title {
        font-size: 3rem !important;
        margin-bottom: 2rem;
    }

    .stat-card {
        padding: 30px 20px;
        border-radius: 15px;
        margin-bottom: 0;
        /* Full hover effects on desktop */
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(230,166,48,0.2);
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stat-symbol {
        font-size: 2.5rem;
    }

    .stat-text {
        font-size: 0.95rem;
        margin-top: 10px;
    }
}

/* Package Section - Mobile First */
.package-section {
    position: relative;
    /* Mobile base - no min-height, simpler layout */
    color: #ffffff;
    padding: 40px 0;
}

.package-section h2 {
    /* Mobile base */
    font-size: 1.75rem !important;
    margin-bottom: 1rem;
}

.package-section p {
    /* Mobile base */
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* ==== ANIMATED BACKGROUNDS ==== */

/* Mesh Gradient Background for One-Time Packages */
.animated-bg-mesh {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.animated-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.mesh-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(230, 166, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(223, 151, 16, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(230, 166, 48, 0.05) 0%, transparent 40%);
    animation: meshShift 20s ease-in-out infinite;
}

@keyframes meshShift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        filter: hue-rotate(0deg);
    }
    25% {
        transform: translate(-5%, -5%) scale(1.05);
        filter: hue-rotate(10deg);
    }
    50% {
        transform: translate(5%, 0) scale(0.95);
        filter: hue-rotate(-10deg);
    }
    75% {
        transform: translate(0, 5%) scale(1.02);
        filter: hue-rotate(5deg);
    }
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(230, 166, 48, 0.4), transparent);
    filter: blur(40px);
    opacity: 0.6;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    animation: floatOrb1 25s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    bottom: 20%;
    right: -150px;
    animation: floatOrb2 30s ease-in-out infinite;
}

.orb-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation: floatOrb3 20s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    33% { transform: translate(100px, -50px) scale(1.2); opacity: 0.4; }
    66% { transform: translate(-50px, 100px) scale(0.8); opacity: 0.7; }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-100px, -100px) rotate(180deg); }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    25% { transform: translate(-30%, -70%) scale(1.3); }
    50% { transform: translate(-70%, -30%) scale(0.7); }
    75% { transform: translate(-40%, -40%) scale(1.1); }
}

/* Aurora Background for Monthly Plans */
.animated-bg-aurora {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
}

.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

.pricing-card {
    background: rgba(22, 22, 22, 0.98);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease;
    margin-bottom: 1.5rem;
}

.pricing-card:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    border-color: rgba(230, 166, 48, 0.25);
}

.pricing-card.featured {
    border-color: rgba(230, 166, 48, 0.4);
    background: rgba(26, 26, 26, 0.98);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e6a630, transparent);
}

/* Package Tablet (480px+) */
@media (min-width: 480px) {
    .package-section {
        padding: 60px 0;
    }

    .package-section h2 {
        font-size: 2.25rem !important;
        margin-bottom: 1.5rem;
    }

    .pricing-card {
        padding: 36px 28px;
        border-radius: 14px;
    }

    .pricing-card:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    }
}

/* Package Desktop (768px+) */
@media (min-width: 768px) {
    .package-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 100px 0;
    }

    .package-section h2 {
        font-size: 3rem !important;
        margin-bottom: 2rem;
    }

    .pricing-card {
        border-radius: 16px;
        padding: 40px 32px;
        margin-bottom: 0;
    }

    .pricing-card:hover {
        transform: translateY(-4px) scale(1.025);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
    }

    .pricing-card.featured {
        transform: scale(1.02);
        border-color: rgba(230, 166, 48, 0.5);
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px) scale(1.045);
    }
}

/* Badge Styles */
.badge-popular, .badge-value, .badge-new {
    position: absolute;
    top: -18px;
    right: 24px;
    background: #e6a630;
    color: #000;
    padding: 6px 18px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge-value {
    background: #4caf50;
    color: white;
}

.badge-new {
    background: #f44336;
    color: white;
}

/* Pricing Typography - Mobile First */
.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.price {
    margin-bottom: 24px;
}

.price .currency {
    font-size: 1.1rem;
    color: #e6a630;
    vertical-align: top;
    font-weight: 500;
}

.price .amount {
    font-size: 2.8rem;
    color: #e6a630;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
}

.price .period {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    vertical-align: baseline;
    margin-left: 4px;
}

.contract-info {
    color: #999;
    /* Mobile base */
    font-size: 0.8rem;
    margin-top: 8px;
}

/* Pricing Tablet (480px+) */
@media (min-width: 480px) {
    .pricing-header h3 {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .price {
        margin-bottom: 25px;
    }

    .price .currency {
        font-size: 1.3rem;
    }

    .price .amount {
        font-size: 3rem;
    }

    .price .period {
        font-size: 1.1rem;
    }

    .contract-info {
        font-size: 0.85rem;
        margin-top: 9px;
    }
}

/* Pricing Desktop (768px+) */
@media (min-width: 768px) {
    .pricing-header h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .price {
        margin-bottom: 30px;
    }

    .price .currency {
        font-size: 1.5rem;
    }

    .price .amount {
        font-size: 3.5rem;
    }

    .price .period {
        font-size: 1.2rem;
    }

    .contract-info {
        font-size: 0.9rem;
        margin-top: 10px;
    }
}

.savings-info {
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    margin: 12px auto;
    display: inline-block;
}

.savings-text {
    color: #4caf50;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.savings-amount {
    font-size: 0.95rem;
    color: #4caf50;
    font-weight: 700;
}

.package-icon {
    font-size: 3rem;
    color: #e6a630;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #e6a630;
    margin-right: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-footer {
    margin-top: auto;
    padding-top: 24px;
}

.ideal-for {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: normal;
    letter-spacing: 0.2px;
}

.package-btn {
    background: #e6a630;
    color: #000;
    border: none;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.package-btn:hover {
    background: #df9710;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    color: #000;
}

.package-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-featured {
    background: #e6a630 !important;
    font-weight: 700;
}

.btn-featured:hover {
    background: #df9710 !important;
}

/* Duration Selector Styles */
.duration-selector-container {
    text-align: center;
    margin-bottom: 40px;
}

.duration-selector {
    /* Mobile base - stacked grid layout */
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    background: rgba(22, 22, 22, 0.95) !important;
    border-radius: 15px !important;
    padding: 8px !important;
    border: 1px solid rgba(230,166,48,0.3) !important;
    max-width: 350px !important;
    margin: 0 auto !important;
}

.duration-btn {
    /* Mobile base - compact padding */
    padding: 10px 15px !important;
    border-radius: 12px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    min-height: 44px !important; /* Touch-friendly */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent;
    color: #999;
    border: none;
    cursor: pointer;
    position: relative;
}

.duration-btn:hover {
    color: #e6a630;
}

.duration-btn.active {
    background: linear-gradient(45deg, #e6a630, #df9710);
    color: #000;
    box-shadow: 0 5px 15px rgba(230,166,48,0.3);
}

.duration-btn.best-value {
    position: relative;
}

.duration-btn.best-value::after {
    content: 'BEST' !important;
    position: absolute;
    /* Mobile base - adjusted position */
    top: -6px !important;
    right: 5px !important;
    background: #4caf50 !important;
    color: white !important;
    padding: 2px 6px !important;
    border-radius: 8px !important;
    font-size: 0.6rem !important;
    font-weight: bold !important;
    letter-spacing: 0.3px !important;
}

.payment-notice {
    color: #999;
    /* Mobile base */
    font-size: 0.75rem !important;
    margin-top: 12px !important;
    line-height: 1.4 !important;
    padding: 0 10px !important;
    font-style: italic;
}

/* Duration Selector Tablet (480px+) */
@media (min-width: 480px) {
    .duration-selector {
        /* Tablet - inline flex for 4 buttons */
        display: inline-flex !important;
        border-radius: 25px !important;
        padding: 6px !important;
        gap: 4px !important;
        max-width: none !important;
    }

    .duration-btn {
        padding: 10px 20px !important;
        border-radius: 20px !important;
        font-size: 0.9rem !important;
    }

    .duration-btn.best-value::after {
        content: 'BEST VALUE' !important;
        top: -8px !important;
        right: 8px !important;
        padding: 2px 7px !important;
        font-size: 0.62rem !important;
    }

    .payment-notice {
        font-size: 0.8rem !important;
        margin-top: 14px !important;
        padding: 0 !important;
    }
}

/* Duration Selector Desktop (768px+) */
@media (min-width: 768px) {
    .duration-selector {
        border-radius: 50px !important;
        padding: 5px !important;
        gap: 5px !important;
    }

    .duration-btn {
        padding: 12px 30px !important;
        border-radius: 45px !important;
        font-size: 1rem !important;
        transition: all 0.3s !important;
    }

    .duration-btn.active {
        box-shadow: 0 5px 15px rgba(230,166,48,0.3) !important;
    }

    .duration-btn.best-value::after {
        content: 'BEST VALUE' !important;
        top: -10px !important;
        right: 10px !important;
        padding: 2px 8px !important;
        border-radius: 10px !important;
        font-size: 0.65rem !important;
        letter-spacing: 0.5px !important;
    }

    .payment-notice {
        font-size: 0.85rem !important;
        margin-top: 15px !important;
    }
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    position: relative;
    color: #ffffff;
}

.comparison-wrapper {
    overflow-x: auto;
    margin-bottom: 50px;
}

.comparison-table-container {
    min-width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
}

.comparison-table {
    width: 100%;
    min-width: 900px;
    background: rgb(22 22 22);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.comparison-table thead {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.comparison-table thead th {
    padding: 20px 15px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    vertical-align: top;
}

.comparison-table thead th.feature-col {
    text-align: left;
    background: #1a1a1a;
    position: sticky;
    left: 0;
    z-index: 2;
}

.comparison-table thead th.plan-col {
    min-width: 120px;
}

.comparison-table thead th.plan-col.featured {
    background: linear-gradient(135deg, rgba(230,166,48,0.2) 0%, rgba(223,151,16,0.1) 100%);
}

.price-label {
    display: block;
    color: #e6a630;
    font-size: 0.9rem;
    margin-top: 5px;
}

.price-sublabel {
    display: block;
    color: #999;
    font-size: 0.75rem;
    margin-top: 2px;
    font-style: italic;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table tbody tr:hover {
    background: rgba(230,166,48,0.03);
}

.comparison-table tbody td {
    padding: 15px;
    color: #ffffff;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.comparison-table tbody td.feature-name {
    text-align: left;
    font-weight: 600;
    background: rgba(0,0,0,0.3);
    position: sticky;
    left: 0;
    z-index: 1;
}

.comparison-table tbody td.featured {
    background: rgba(230,166,48,0.05);
}

.text-success {
    color: #4caf50 !important;
}

.text-muted {
    color: #666 !important;
}

/* Enhanced comparison table */
.savings-row {
    background: rgba(230,166,48,0.1);
}

.savings-row td {
    font-weight: bold;
    color: #4caf50 !important;
}

.cta-row td {
    padding: 20px 15px !important;
    background: rgba(0,0,0,0.5);
}

.btn-golden {
    background: linear-gradient(45deg, #e6a630, #df9710);
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-golden:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230,166,48,0.3);
}

.btn-outline-golden {
    background: transparent;
    color: #e6a630;
    border: 1px solid #e6a630;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s;
}

.btn-outline-golden:hover {
    background: #e6a630;
    color: #000;
}

/* Individual Services Quick Buy */
.individual-services-section {
    padding: 80px 0;
    position: relative;
    color: #ffffff;
}

.service-pricing-card {
    position: relative;
    background: rgb(22 22 22);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(230,166,48,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230,166,48,0.2);
    border-color: #e6a630;
}

.popular-badge, .trending-badge, .hot-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e6a630;
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
}

.trending-badge {
    background: #9c27b0;
    color: white;
}

.hot-badge {
    background: #f44336;
    color: white;
}

.service-pricing-card .service-icon {
    font-size: 2.5rem;
    color: #e6a630;
    margin-bottom: 15px;
}

.service-pricing-card h5 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-pricing-card .service-price {
    font-size: 2rem;
    color: #e6a630;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-pricing-card .service-detail {
    color: #999;
    font-size: 0.9rem;
    margin: 0 0 20px 0;
}

.btn-quick-buy {
    background: linear-gradient(45deg, #e6a630, #df9710);
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-quick-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(230,166,48,0.3);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e6a630;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    padding-left: 40px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #e6a630;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    z-index: 1;
}

.timeline-content h4 {
    color: #e6a630;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #ffffff;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    position: relative;
    color: #ffffff;
}

.trust-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.trust-card:hover {
    transform: translateY(-5px);
    background: rgba(230,166,48,0.1);
}

.trust-card i {
    font-size: 3rem;
    color: #e6a630;
    margin-bottom: 15px;
}

.trust-card h4 {
    color: #e6a630;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.trust-card p {
    color: #999;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    position: relative;
    color: #ffffff;
}

.faq-item {
    background: rgb(22 22 22);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(230,166,48,0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #e6a630;
    transform: translateX(5px);
}

.faq-item h4 {
    color: #e6a630;
    margin-bottom: 15px;
}

.faq-item i {
    margin-right: 10px;
}

.faq-item p {
    color: #ccc;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e6a630, transparent);
}

.cta-wrapper {
    background: rgba(22, 22, 22, 0.95);
    border: 2px solid rgba(230, 166, 48, 0.2);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.cta-title {
    color: #e6a630;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-subtitle {
    color: #ccc;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

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

.btn-cta-primary {
    background: linear-gradient(45deg, #e6a630, #df9710);
    color: #000;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(230,166,48,0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: #e6a630;
    padding: 20px 50px;
    font-size: 1.3rem;
    border: 2px solid #e6a630;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: #e6a630;
    color: #000;
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-guarantee p {
    color: #999;
    margin: 0;
}

.cta-guarantee i {
    color: #4caf50;
    margin-right: 5px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-showcase {
        margin-top: 50px;
        height: 300px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item .timeline-content {
        margin-left: 80px !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-marker {
        left: 30px !important;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .trust-indicators {
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }

    .urgency-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .urgency-promo {
        justify-content: center;
    }

    .promo-code {
        font-size: 1.1rem;
        padding: 6px 15px;
        gap: 5px;
    }

    .promo-code .bx-copy {
        font-size: 0.9rem;
    }

    .timer-blocks {
        gap: 5px;
    }

    .timer-block {
        min-width: 50px;
        padding: 8px 10px;
    }

    .timer-block span:first-child {
        font-size: 1.4rem;
    }

    .cta-wrapper {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
}

/* Hero Floating Images Enhancement - Tablet (768px+) */
@media (min-width: 768px) {
    .hero-float-img-1 {
        width: 30% !important;
        height: 120px !important;
        left: -5% !important;
        top: 15% !important;
        animation: float 6s ease-in-out infinite !important;
    }

    .hero-float-img-2 {
        width: 25% !important;
        height: 100px !important;
        right: -5% !important;
        bottom: 20% !important;
        left: auto !important;
        animation: float 6s ease-in-out infinite reverse !important;
    }
}

/* Animation Keyframes */
@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes rippleEffect {
    to {
        width: 200px;
        height: 200px;
        margin-left: -100px;
        margin-top: -100px;
        opacity: 0;
    }
}

.pricing-card {
    transition: transform 0.3s ease !important;
}