/* Packages Page Specific Styles */

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.package-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Package Header with unique colors */
.package-header {
    padding: 20px;
    color: white;
    text-align: center;
    position: relative;
}

.package-card.clarity .package-header {
    background: linear-gradient(135deg, #b28adb 0%, #764ba2 40%);
}

.package-card.align .package-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 40%);
}

.package-card.shift .package-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 40%);
}

.package-card.lead .package-header {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 40%);
}

.package-card.transform .package-header {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 40%);
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.duration {
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 15px;
    display: inline-block;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

/* Package Body */
.package-body {
    padding: 20px;
}

.perfect-for {
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 12px 15px;
    background: rgba(156, 39, 176, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    line-height: 1.5;
}

.includes h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.includes ul {
    list-style: none;
    margin-bottom: 20px;
}

.includes li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.includes li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 0.9rem;
}

.tagline {
    font-style: italic;
    font-size: 1rem;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    color: var(--secondary-color);
    font-weight: 500;
    border: 1px solid #e0e0e0;
    line-height: 1.4;
    margin-bottom: 20px;
}

.package-cta {
    text-align: center;
    padding: 0 20px 5px;
}

.enquire-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
    position: relative;
    overflow: hidden;
}

.enquire-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.enquire-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(156, 39, 176, 0.3);
}

/* Add-ons Section */
.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.addon-card {
    background: linear-gradient(135deg, #b28adb 0%, #764ba2 40%);
    color: white;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.addon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.addon-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

.addon-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.addon-header h3 {
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.addon-body p {
    line-height: 1.6;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.addon-body p:last-child {
    margin-bottom: 0;
}

.addon-cta {
    text-align: center;
    margin-top: 20px;
}

.addon-enquire-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.addon-enquire-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .package-header {
        padding: 18px 15px;
    }
    
    .package-header h3 {
        font-size: 1.3rem;
    }
    
    .package-body {
        padding: 18px 15px;
    }
    
    .add-ons-grid {
        grid-template-columns: 1fr;
    }
    
    .addon-card {
        padding: 20px 15px;
    }
    
    .enquire-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .addon-enquire-button {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        margin: 0 5px;
    }
    
    .package-header {
        padding: 15px 12px;
    }
    
    .package-header h3 {
        font-size: 1.2rem;
    }
    
    .package-body {
        padding: 15px 12px;
    }
    
    .intro-text {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .addon-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .addon-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .addon-header h3 {
        font-size: 1.2rem;
    }
}
