/* Professional Coaching Packages Styles */
.coaching-section {
    position: relative;
    overflow: hidden;
}

.coaching-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(192, 160, 76, 0.2);
}

.coaching-subtitle {
    color: #888;
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Package Grid Layout */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Individual Package Card */
.package-card {
    background: linear-gradient(145deg, #0f0f0f, #080808);
    border: 2px solid rgba(192, 160, 76, 0.15);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 160, 76, 0.4);
    box-shadow: 0 20px 60px rgba(192, 160, 76, 0.2);
}

.package-card.featured {
    border-color: var(--premium-gold);
    border-width: 3px;
    box-shadow: 0 0 40px rgba(192, 160, 76, 0.3);
}

.package-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--premium-gold), #A88A3F);
    color: #000;
    padding: 8px 50px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(192, 160, 76, 0.4);
}

/* Package Header */
.package-header {
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(180deg, rgba(192, 160, 76, 0.08), rgba(192, 160, 76, 0.02));
    border-bottom: 1px solid rgba(192, 160, 76, 0.1);
}

.package-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--premium-gold), #A88A3F);
    color: #000;
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
    box-shadow: 0 4px 12px rgba(192, 160, 76, 0.3);
}

.package-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--premium-gold);
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.package-subtitle {
    color: #888;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.package-path-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(192, 160, 76, 0.15);
    border: 1px solid rgba(192, 160, 76, 0.3);
    border-radius: 20px;
    color: var(--premium-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Package Duration Badge */
.package-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(192, 160, 76, 0.1);
    border: 1px solid rgba(192, 160, 76, 0.2);
    border-radius: 12px;
    color: var(--premium-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.package-duration-icon {
    width: 20px;
    height: 20px;
}

/* Package Body */
.package-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-purpose {
    background: rgba(192, 160, 76, 0.05);
    border-left: 4px solid var(--premium-gold);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.purpose-label {
    font-size: 0.85rem;
    color: var(--premium-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.purpose-text {
    color: #ddd;
    line-height: 1.6;
    font-size: 1rem;
}

/* Features List */
.package-features {
    margin-bottom: 2rem;
    flex: 1;
}

.features-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--premium-gold);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-title::before {
    content: "";
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--premium-gold), #A88A3F);
    border-radius: 2px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    color: var(--premium-gold);
    flex-shrink: 0;
}

/* Outcome Section */
.package-outcome {
    background: linear-gradient(135deg, rgba(192, 160, 76, 0.1), rgba(192, 160, 76, 0.05));
    border: 1px solid rgba(192, 160, 76, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.outcome-label {
    font-size: 0.85rem;
    color: var(--premium-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.outcome-label::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--premium-gold);
    color: #000;
    font-weight: 900;
    font-size: 0.75rem;
}

.outcome-text {
    color: #ddd;
    line-height: 1.7;
    font-size: 1rem;
}

/* Package CTA */
.package-cta {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(192, 160, 76, 0.1);
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, var(--premium-gold), #A88A3F);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 160, 76, 0.4);
}

.cta-button-secondary {
    background: transparent;
    color: var(--premium-gold);
    border: 2px solid var(--premium-gold);
    margin-top: 0.75rem;
}

.cta-button-secondary:hover {
    background: rgba(192, 160, 76, 0.1);
    box-shadow: 0 4px 16px rgba(192, 160, 76, 0.2);
}

.cta-icon {
    width: 20px;
    height: 20px;
}

/* Essence Footer */
.coaching-essence {
    text-align: center;
    padding: 2rem;
    background: rgba(192, 160, 76, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(192, 160, 76, 0.1);
    margin-top: 3rem;
}

.essence-title {
    font-size: 1.25rem;
    color: var(--premium-gold);
    font-weight: 700;
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
}

.essence-formula {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: #ddd;
    font-size: 1.1rem;
}

.formula-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(192, 160, 76, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(192, 160, 76, 0.2);
}

.formula-label {
    font-weight: 600;
    color: var(--premium-gold);
}

.formula-arrow {
    color: var(--premium-gold);
    font-size: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-card.featured::before {
        top: 15px;
        right: -30px;
        padding: 6px 40px;
        font-size: 0.7rem;
    }

    .package-header,
    .package-body {
        padding: 1.5rem;
    }

    .essence-formula {
        flex-direction: column;
        gap: 1rem;
    }

    .formula-arrow {
        transform: rotate(90deg);
    }
}

