/* Package Detail Page Styles */

/* Hero Section */
.package-detail-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 60vh;
}

.package-detail-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.package-detail-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.package-detail-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.package-detail-shape.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.package-detail-shape.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.package-detail-content {
    position: relative;
    z-index: 2;
}

.modern-breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
}

.modern-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-breadcrumbs a:hover {
    color: white;
}

.modern-breadcrumbs .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.modern-breadcrumbs .current {
    color: white;
    font-weight: 500;
}

.package-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-type-badge.standart {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.package-type-badge.premium {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.package-detail-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.package-detail-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.package-price-info {
    margin-bottom: 30px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f1c40f;
}

.price-currency {
    font-size: 2rem;
    font-weight: 600;
    color: #f1c40f;
}

.price-period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.price-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.package-quick-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.quick-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.quick-feature i {
    color: #f1c40f;
}

.package-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-package-primary,
.btn-package-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-package-primary {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.btn-package-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.4);
    color: #2c3e50;
}

.btn-package-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-package-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.package-detail-visual {
    position: relative;
    z-index: 2;
    text-align: center;
}

.package-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.package-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.package-placeholder i {
    font-size: 4rem;
    color: #f1c40f;
    margin-bottom: 20px;
}

.package-placeholder span {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Content Section */
.package-details-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.detail-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.detail-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
    position: relative;
}

.detail-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #f1c40f;
}

.detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.technical-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.spec-title {
    font-weight: 600;
    color: #2c3e50;
}

.spec-value {
    font-weight: 500;
    color: #3498db;
}

.included-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.service-item i {
    color: #27ae60;
    font-size: 1.2rem;
}

/* Sidebar */
.package-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-label {
    color: #7f8c8d;
    font-weight: 500;
}

.summary-value {
    color: #2c3e50;
    font-weight: 600;
}

.summary-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 2px solid #3498db;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

.btn-summary-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-summary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    color: white;
}

.contact-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: #3498db;
    color: white;
}

.other-package-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ecf0f1;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.other-package-item:hover {
    border-color: #3498db;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.1);
}

.other-package-info {
    flex: 1;
}

.other-package-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.other-package-info p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

.other-package-price {
    font-weight: 700;
    color: #3498db;
}

.other-package-link {
    color: #3498db;
    text-decoration: none;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.other-package-link:hover {
    background: #3498db;
    color: white;
}

.no-other-packages {
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .package-detail-hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .package-detail-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .package-quick-features {
        justify-content: center;
    }
    
    .package-cta-buttons {
        justify-content: center;
    }
    
    .detail-section {
        padding: 25px;
    }
    
    .technical-specs,
    .included-services {
        grid-template-columns: 1fr;
    }
    
    .package-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .sidebar-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .package-detail-title {
        font-size: 1.8rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .quick-feature {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .btn-package-primary,
    .btn-package-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
