/* ===== HOMEPAGE PACKAGES MODULE ===== */
/* Single Responsibility: Sadece packages section ile ilgili stiller */

/* Base Packages Container */
.maksem-packages-container {
    background: #f8f9fa;
    position: relative;
    z-index: 1;
    transform: none !important;
    will-change: auto !important;
}

/* Section Header Module */
.maksem-section-header {
    margin-bottom: 3rem;
}

.maksem-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 1rem;
}

.maksem-section-description {
    font-size: 1.4rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Package Card Module */
.maksem-package-card {
    background: #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.maksem-package-card:hover {
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
    border-color: #275c75;
    transform: translateY(-5px);
}

.maksem-package-card--featured {
    border: 3px solid #275c75;
    background: #dee2e6;
}

/* Package Badge Module */
.maksem-package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4e92b7;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Package Header Module */
.maksem-package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.maksem-package-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #163b4a;
    margin-bottom: 0.5rem;
}

.maksem-package-subtitle {
    color: #6c757d;
    font-size: 1.4rem;
}

/* Pricing Module */
.maksem-package-pricing {
    margin-bottom: 2rem;
}

.maksem-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 2px solid #4e92b7;
    margin-bottom: 0.5rem;
    position: relative;
}

.maksem-price-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.maksem-price-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4e92b7, transparent);
    opacity: 0.3;
}

.maksem-room-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 1.1rem;
}

.maksem-room-type i {
    color: #4e92b7;
    font-size: 1.1rem;
}

.maksem-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #163b4a;
}

/* Features Module */
.maksem-package-features h6 {
    color: #163b4a;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.maksem-package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maksem-package-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    color: #6c757d;
    font-size: 1.1rem;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

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

.maksem-package-features li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4e92b7, transparent);
    opacity: 0.2;
}

.maksem-package-features i {
    color: #4e92b7;
    font-size: 1.4rem;
}

/* Package Footer Module */
.maksem-package-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #4e92b7;
    position: relative;
}

.maksem-package-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4e92b7, transparent);
    opacity: 0.3;
}

/* Button Module */
.maksem-btn-outline-primary {
    background: transparent;
    color: #4e92b7;
    border: 2px solid #4e92b7;
}

.maksem-btn-outline-primary:hover {
    background: #4e92b7;
    color: white;
    box-shadow: 0 8px 25px rgba(106, 127, 46, 0.3);
}

/* Child Pricing Module */
.maksem-child-pricing-card {
    background: #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #4e92b7;
    transition: all 0.3s ease;
}

.maksem-child-pricing-card:hover {
    box-shadow: 0 20px 40px rgba(78, 146, 183, 0.2);
    border-color: #275c75;
    transform: translateY(-5px);
}

.maksem-child-price-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #4e92b7;
}

.maksem-age-group {
    font-weight: 600;
    color: #163b4a;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.maksem-child-price-item .maksem-price {
    font-size: 1.7rem;
    font-weight: 700;
    color: #4e92b7;
    margin-bottom: 0.5rem;
}

.maksem-child-note {
    text-align: center;
    line-height: 1.6;
}

/* Responsive Module */
@media (max-width: 768px) {
    .maksem-section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .maksem-package-card {
        padding: 1.5rem;
    }
    
    .maksem-child-pricing-card {
        padding: 1.5rem;
    }
}
