/* CAMERA PACKAGES HERO SECTION */
.camera-packages-hero-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.camera-packages-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.camera-packages-hero {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

/* LEFT SLIDER */
.camera-packages-left-slider {
    flex: 3;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: white;
    border: 1px solid #f1f5f9;
}

.camera-packages-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 400px;
}

.camera-packages-slide {
    min-width: 100%;
    position: relative;
}

.camera-packages-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.camera-packages-slide:hover img {
    transform: scale(1.02);
}

.camera-packages-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 35px 40px;
    color: white;
}

.camera-packages-tag {
    background: #3b82f6;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.camera-packages-overlay h2 {
    font-size: 28px;
    margin: 0 0 12px 0;
    color: white;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.camera-packages-overlay p {
    font-size: 15px;
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 600px;
}

.camera-packages-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.camera-packages-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.camera-packages-meta i {
    font-size: 14px;
    opacity: 0.8;
}

.camera-packages-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.camera-packages-btn:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* NAVIGATION CONTROLS */
.camera-packages-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    color: #475569;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.camera-packages-nav-btn:hover {
    background: white;
    color: #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.camera-packages-prev-btn {
    left: 20px;
}

.camera-packages-next-btn {
    right: 20px;
}

/* PROGRESS BAR */
.camera-packages-progress {
    position: absolute;
    bottom: 80px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.camera-packages-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    width: 20%;
    transition: width 0.3s ease;
}

.camera-packages-indicators {
    position: absolute;
    bottom: 30px;
    left: 40px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.camera-packages-dots {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 8px;
}

.camera-packages-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.camera-packages-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.camera-packages-dots .dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* RIGHT PACKAGES */
.camera-packages-right-packages {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    align-self: flex-start;
}

.camera-packages-right-packages h3 {
    color: #1e293b;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.camera-packages-right-packages h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #3b82f6;
}

.camera-packages-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.camera-package-card {
    display: flex;
    align-items: center;
    padding: 18px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #334155;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.camera-package-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #3b82f6;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.camera-package-card:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.camera-package-card:hover::before {
    transform: scaleY(1);
}

.camera-package-icon {
    font-size: 24px;
    margin-right: 16px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.camera-package-card:hover .camera-package-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.camera-package-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.camera-package-arrow {
    color: #64748b;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.camera-package-card:hover .camera-package-arrow {
    color: #3b82f6;
    transform: translateX(5px);
    opacity: 1;
}

/* CAMERA PACKAGES SECTION */
.camera-packages-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.camera-packages-header {
    text-align: center;
    margin-bottom: 50px;
}

.camera-packages-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.camera-packages-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.camera-packages-header p {
    color: #64748b;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* PACKAGES CONTAINER */
.camera-packages-container {
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.camera-packages-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 5px;
}

.camera-package-item {
    min-width: calc(25% - 19px);
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
}

.camera-package-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.camera-package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
}

.camera-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.camera-package-item:hover .camera-package-image img {
    transform: scale(1.08);
}

.camera-package-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.camera-package-install-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.camera-package-content {
    padding: 24px;
}

.camera-package-title {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.camera-package-description {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
    min-height: 42px;
}

.camera-package-brand,
.camera-package-type,
.camera-package-price {
    display: inline-flex;
    align-items: center;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 8px;
    margin: 0 8px 8px 0;
    font-size: 12px;
    color: #475569;
    border: 1px solid #e2e8f0;
    gap: 4px;
}

.camera-package-price {
    background: #fef3c7;
    color: #92400e;
    border-color: #fcd34d;
    font-weight: 600;
}

.camera-package-dates {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 13px;
    color: #64748b;
}

.camera-package-dates span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.camera-package-dates i {
    color: #94a3b8;
    font-size: 14px;
}

.camera-package-cta {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.camera-package-cta:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* EMPTY STATES */
.no-banners,
.empty-camera-packages {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 60px 40px;
    color: #64748b;
}

.empty-camera-packages {
    min-width: 100%;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.3;
    background: #f8fafc;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e2e8f0;
}

.empty-camera-packages h3 {
    color: #475569;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.empty-camera-packages p {
    color: #94a3b8;
    font-size: 16px;
}

/* SLIDER CONTROLS */
.camera-packages-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.camera-packages-btn {
    background: white;
    color: #475569;
    border: 1px solid #e2e8f0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.camera-packages-btn:hover:not(:disabled) {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
}

.camera-packages-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    background: #f8fafc;
}

.camera-packages-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.camera-packages-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.camera-packages-slider-dots .dot:hover {
    background: #cbd5e1;
}

.camera-packages-slider-dots .dot.active {
    background: #3b82f6;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .camera-packages-hero {
        max-width: 100%;
    }
    
    .camera-packages-section {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .camera-package-item {
        min-width: calc(33.333% - 17px);
    }
    
    .camera-packages-hero {
        flex-direction: column;
        gap: 25px;
    }
    
    .camera-packages-left-slider {
        width: 100%;
        height: 380px;
    }
    
    .camera-packages-right-packages {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .camera-package-item {
        min-width: calc(50% - 13px);
    }
    
    .camera-packages-slider-track {
        height: 320px;
    }
    
    .camera-packages-overlay {
        padding: 25px 30px;
    }
    
    .camera-packages-overlay h2 {
        font-size: 24px;
    }
    
    .camera-packages-overlay p {
        font-size: 14px;
    }
    
    .camera-packages-header h2 {
        font-size: 28px;
    }
    
    .camera-packages-header p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .camera-packages-hero-section {
        padding: 30px 0;
    }
    
    .camera-packages-hero {
        padding: 0 15px;
    }
    
    .camera-packages-left-slider {
        height: 280px;
        border-radius: 12px;
    }
    
    .camera-packages-overlay {
        padding: 20px;
    }
    
    .camera-packages-overlay h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .camera-packages-overlay p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .camera-packages-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .camera-packages-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .camera-packages-progress {
        left: 20px;
        right: 20px;
        bottom: 70px;
    }
    
    .camera-packages-indicators {
        left: 20px;
        bottom: 25px;
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .camera-packages-dots {
        right: 20px;
        bottom: 25px;
    }
}

@media (max-width: 480px) {
    .camera-package-item {
        min-width: 100%;
        margin: 0 10px;
    }
    
    .camera-packages-container {
        padding: 15px;
        border-radius: 12px;
    }
    
    .camera-packages-track {
        gap: 20px;
        padding: 10px;
    }
    
    .camera-packages-controls {
        display: none;
    }
    
    .camera-packages-dots {
        display: none;
    }
    
    .camera-package-card {
        flex-direction: row;
        text-align: left;
        padding: 15px;
    }
    
    .camera-package-icon {
        margin-right: 15px;
        margin-bottom: 0;
        width: 48px;
        height: 48px;
    }
    
    .camera-packages-section {
        margin: 40px auto;
    }
    
    .camera-packages-header {
        margin-bottom: 30px;
    }
    
    .camera-packages-header h2 {
        font-size: 24px;
    }
    
    .camera-packages-header p {
        font-size: 15px;
    }
}