/* ============================================
   ADVANCED UI REDESIGN - CURVE DESIGN
   ============================================ */

:root {
    --primary-color: #ffa500;
    --primary-dark: #ff8c00;
    --secondary-color: #1a1a2e;
    --secondary-dark: #16213e;
    --bg-light: #ffffff;
    --bg-curve: #f8f9fa;
    --text-main: #0f0f1e;
    --text-muted: #666666;
    --border-radius-lg: 30px;
    --border-radius-md: 20px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CURVE DESIGN HELPERS */
.curve-top {
    position: relative;
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
    overflow: hidden;
}

.curve-bottom {
    position: relative;
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
    overflow: hidden;
}

.section-curve {
    background: var(--bg-curve);
    border-radius: 50px;
    margin: 40px 20px;
    padding: 80px 40px;
}

/* ADVANCED PRICING CARD */
.pricing-card-advance {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 165, 0, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pricing-card-advance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.pricing-plan-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.pricing-amount-wrap {
    margin: 30px 0;
}

.pricing-amount-large {
    font-size: 80px;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 700;
    vertical-align: top;
    margin-right: 5px;
}

.pricing-period {
    font-size: 18px;
    color: var(--text-muted);
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
}

.pricing-features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--text-main);
}

.pricing-features-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 900;
}

/* ADVANCED REGISTRATION FORM */
.registration-wrap-advance {
    background: var(--secondary-color);
    border-radius: 40px;
    padding: 60px;
    color: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.form-group-advance {
    margin-bottom: 25px;
}

.form-group-advance label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.form-input-advance {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 15px 20px;
    color: white;
    transition: var(--transition-smooth);
}

.form-input-advance:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
    outline: none;
}

/* COURSE CONDUCT SECTION */
.conduct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.conduct-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary-color);
}

.conduct-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.conduct-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.conduct-info {
    font-size: 16px;
    color: var(--text-muted);
}

/* TRAINER IMAGE FIX */
.trainer-image-wrapper {
    height: 450px !important; /* Increased height */
}

.trainer-image {
    object-position: center 5% !important; /* Move image down to show more head */
}

/* BRANDING FIX */
.site-logo a, .hero-title {
    color: white !important; /* Ensure always white regardless of dark mode */
}

body.dark-mode .site-logo a, body.dark-mode .hero-title {
    color: white !important;
}

/* MANIFESTO PILLARS ADVANCED */
.pillar-advance {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid #f0f0f0;
}

.pillar-advance:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.1);
}

.foundation-grid-advance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.foundation-card-advance {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.foundation-card-advance h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}
