@font-face {
    font-family: IRANSans;
    src: url('../../fonts/IRANSansWeb.eot');
    src: url('../../fonts/IRANSansWeb.eot') format('embedded-opentype'),
    url('../../fonts/IRANSansWeb.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root{
    --ink:#1b1f2a;
    --muted:#6b7280;
    --paper:#f5f3ee;
    --card:#ffffff;
    --primary:#0e5a4a;
    --primary-deep:#083c31;
    --accent:#e8804f;
    --accent-soft:#fbe3d3;
    --line:#e6e1d6;
    --danger:#c0403a;
    --ok:#1f8a5f;
    --radius:22px;
    --shadow-soft: 0 20px 45px -20px rgba(14,90,74,0.25);
}

*{
    box-sizing: border-box;
}

body{
    direction: rtl;
    font-family: 'IRANSans', 'Vazir', Tahoma, sans-serif !important;
    background: var(--paper);
    color: var(--ink);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image:
        radial-gradient(circle at 100% 0%, rgba(14,90,74,0.08) 0, transparent 45%),
        radial-gradient(circle at 0% 100%, rgba(232,128,79,0.10) 0, transparent 45%);
}

main{
    flex: 1 0 auto;
}

.section-heading{
    max-width: 640px;
    margin: 0 auto 2.6rem;
}

.eyebrow{
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.section-title{
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-deep);
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header{
    background: var(--primary-deep);
    box-shadow: 0 6px 20px -10px rgba(0,0,0,0.4);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
}

.brand{
    color: #fdf6ec;
    gap: 0.6rem;
}

.brand-logo{
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.brand-text{
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #fdf6ec;
}

.header-nav{
    gap: 0.4rem;
}

.nav-item-link{
    color: #e9e3d6;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.55rem 0.9rem;
    border-radius: 100px;
    transition: 0.2s;
}

.nav-item-link:hover{
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.btn-header-cta{
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: #1b1f2a;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    margin-right: 0.4rem;
    transition: 0.2s;
}

.btn-header-cta:hover{
    background: #f19a63;
    color: #1b1f2a;
    transform: translateY(-1px);
}

.header-toggle{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fdf6ec;
    font-size: 1.4rem;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav{
    padding: 0.5rem 1.5rem 1.2rem;
    gap: 0.3rem;
}

.mobile-nav .nav-item-link{
    background: rgba(255,255,255,0.05);
}

.mobile-nav .btn-header-cta{
    justify-content: center;
    margin-right: 0;
}

/* ===================== HERO / REGISTER CARD ===================== */
.hero-section{
    padding: 3rem 1rem 2.5rem;
}

.register-card{
    background: var(--card);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    max-width: 620px;
    width: 100%;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.register-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 28px 55px -22px rgba(14,90,74,0.35);
}

.badge-pill{
    display: inline-flex;
    align-items: center;
    background: var(--accent-soft);
    color: #a85a26;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1.4rem;
}

.logo-wrapper{
    margin-bottom: 1.6rem;
}

.logo-wrapper img{
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    border: 4px solid var(--accent-soft);
    box-shadow: 0 12px 25px -10px rgba(0,0,0,0.25);
    margin: 0 auto;
    transition: 0.3s;
}

.logo-wrapper img:hover{
    border-color: var(--accent);
}

.register-title{
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: 0.4rem;
}

.register-subtitle{
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 1.6rem;
}

/* ===================== ALERTS ===================== */
.alert-box{
    border-radius: 100px;
    padding: 0.85rem 1.5rem;
    font-size: 0.98rem;
    margin: 0 auto 1.2rem;
    max-width: 90%;
}

.alert-success-box{
    background: rgba(31,138,95,0.1);
    color: var(--ok);
    border: 1px solid rgba(31,138,95,0.3);
}

.alert-error-box{
    background: rgba(192,64,58,0.1);
    color: var(--danger);
    border: 1px solid rgba(192,64,58,0.3);
}

/* ===================== ACTION / BUTTON ===================== */
.action-row{
    display: flex;
    justify-content: center;
}

.btn-register{
    background: linear-gradient(135deg, var(--accent) 0%, #d9662f 100%);
    border: none;
    padding: 0.85rem 2.6rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 100px;
    color: #fff;
    box-shadow: 0 14px 28px -10px rgba(217,102,47,0.55);
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.btn-register i{
    font-size: 1.4rem;
}

.btn-register:hover{
    transform: translateY(-3px);
    box-shadow: 0 20px 34px -8px rgba(217,102,47,0.65);
    color: #fff;
}

.btn-register:active{
    transform: scale(0.97);
}

/* ===================== STATS ===================== */
.stats-section{
    background: var(--primary-deep);
    padding: 2.4rem 1rem;
}

.stats-inner{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1.5rem;
}

.stat-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fdf6ec;
    min-width: 130px;
}

.stat-number{
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label{
    font-size: 0.95rem;
    color: #d9d2c2;
    margin-top: 0.3rem;
}

/* ===================== FEATURES ===================== */
.features-section{
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.features-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 2rem 1.4rem;
    text-align: center;
    box-shadow: 0 14px 30px -18px rgba(14,90,74,0.2);
    transition: 0.25s;
}

.feature-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 22px 40px -18px rgba(14,90,74,0.3);
    border-color: var(--accent);
}

.feature-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-title{
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: 0.5rem;
}

.feature-text{
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
}

/* ===================== STEPS (LANDING) ===================== */
.steps-section{
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.steps-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.step-item{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 2.2rem 1.6rem;
    text-align: center;
    position: relative;
}

.step-number{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-deep);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-title{
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: 0.5rem;
}

.step-text{
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
}

/* ===================== FAQ ===================== */
.faq-section .section-desc {
    font-size: 0.95rem;
    color: var(--muted);
    margin-top: 0.3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border-radius: 16px !important;
    margin-bottom: 0.85rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    border: 1px solid var(--line) !important;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(14, 90, 74, 0.08);
    transform: translateY(-1px);
}

.faq-accordion .accordion-button {
    font-weight: 700;
    color: var(--primary-deep);
    background: var(--card);
    padding: 1rem 1.4rem;
    gap: 0.6rem;
    border-radius: 16px !important;
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 0.98rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: 16px 16px 0 0 !important;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.faq-accordion .accordion-button .faq-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.faq-accordion .accordion-body {
    color: var(--muted);
    line-height: 1.9;
    font-size: 0.95rem;
    padding: 1rem 1.4rem 1.4rem;
    background: #fafaf8;
    border-radius: 0 0 16px 16px;
}

.faq-accordion .accordion-body strong {
    color: var(--primary-deep);
}

@media (max-width: 576px) {
    .faq-accordion .accordion-button {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    .faq-accordion .accordion-body {
        font-size: 0.88rem;
        padding: 0.8rem 1rem 1.2rem;
    }
    .faq-section .section-desc {
        font-size: 0.85rem;
    }
}

/* ===================== FINAL CTA ===================== */
.cta-section{
    padding: 1rem 1.5rem 4rem;
}

.cta-box{
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-soft);
}

.cta-title{
    color: #fdf6ec;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.cta-text{
    color: #d9d2c2;
    font-size: 1rem;
    margin-bottom: 1.6rem;
}
/* =====================================================
   NEW PAGES — همکاری با ما / معرفی مدرسین / درباره و تماس با ما
   Append this file's content to the end of assets/css/style.css
   (reuses the existing --primary / --accent / --card / --line tokens)
   ===================================================== */

/* ===================== GENERIC INNER-PAGE HERO ===================== */
.page-hero{
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    padding: 4rem 1.5rem 3.5rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before{
    content:"";
    position:absolute; inset:0;
    background-image:repeating-linear-gradient(135deg, rgba(244,239,225,.035) 0 2px, transparent 2px 26px);
    pointer-events:none;
}

.page-hero-inner{
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.page-hero .eyebrow{
    color: var(--accent-soft);
}

.page-hero-title{
    color: #fdf6ec;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.page-hero-text{
    color: #d9d2c2;
    font-size: 1.02rem;
    line-height: 1.9;
}

/* ===================== EMPTY STATE ===================== */
.empty-state{
    max-width: 1100px;
    margin: 3rem auto;
    padding: 3rem 1.5rem;
}

.empty-state-icon{
    font-size: 2.6rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.empty-state-text{
    color: var(--muted);
    font-size: 1rem;
}

/* ===================== INSTRUCTORS ===================== */
.instructors-section{
    max-width: 1200px;
    margin: 3.5rem auto;
    padding: 0 1.5rem;
}

.instructors-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.instructor-card{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 30px -20px rgba(14,90,74,0.2);
    transition: 0.25s;
}

.instructor-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 22px 40px -18px rgba(14,90,74,0.3);
    border-color: var(--accent);
}

.instructor-photo-wrap{
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--accent-soft);
}

.instructor-photo{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-body{
    padding: 1.4rem 1.4rem 1.6rem;
    text-align: center;
}

.instructor-name{
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: 0.2rem;
}

.instructor-role{
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a85a26;
    background: var(--accent-soft);
    padding: 0.25rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 0.9rem;
}

.instructor-bio{
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.instructor-stats{
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    padding-top: 0.8rem;
    margin-top: 0.6rem;
    border-top: 1px dashed var(--line);
}

.instructor-stat{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instructor-stat-num{
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}

.instructor-stat-label{
    font-size: 0.78rem;
    color: var(--muted);
}

.instructor-social{
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

.instructor-social .social-icon{
    width: 34px; height: 34px;
    background: var(--accent-soft);
    color: #a85a26;
}

.instructor-social .social-icon:hover{
    background: var(--accent);
    color: #fff;
}

/* ===================== COLLABORATE FORM ===================== */
.collab-form-section{
    max-width: 900px;
    margin: 1rem auto 4rem;
    padding: 0 1.5rem;
}

.form-card{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 2.2rem 2rem;
}

/* ===================== ABOUT — STORY ===================== */
.about-story-section{
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.about-story-grid{
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.6rem;
    align-items: center;
}

.about-story-media img{
    width: 100%;
    border-radius: var(--radius);
    border: 4px solid var(--accent-soft);
    box-shadow: 0 20px 40px -20px rgba(14,90,74,0.3);
}

.about-story-text p{
    color: var(--muted);
    line-height: 1.9;
    font-size: 0.98rem;
    margin-bottom: 1rem;
}

/* ===================== CONTACT ===================== */
.contact-section{
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.contact-grid{
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2.4rem;
}

.contact-info-col{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card{
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.1rem 1.3rem;
}

.contact-info-card h4{
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: 0.15rem;
}

.contact-info-card span,
.contact-info-card a{
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
}

.contact-info-card a:hover{
    color: var(--accent);
}

.contact-form-col .contact-form{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1.8rem;
    height: 100%;
}

.map-frame{
    width: 100%;
    height: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}

.map-frame iframe{
    width: 100%;
    height: 100%;
    border: 0;
}

/* =====================================================
   RESPONSIVE — new pages
   ===================================================== */
@media (max-width: 992px){
    .instructors-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .about-story-grid{
        grid-template-columns: 1fr;
    }
    .contact-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px){
    .instructors-grid{
        grid-template-columns: 1fr;
    }
    .page-hero{
        padding: 3rem 1.2rem 2.6rem;
    }
    .form-card{
        padding: 1.6rem 1.2rem;
    }
}
/* =====================================================
   FOOTER
   ===================================================== */
.site-footer{
    flex-shrink: 0;
    background: var(--primary-deep);
    color: #d9d2c2;
}

.footer-top{
    padding: 3.2rem 1.5rem 2rem;
}

.footer-grid{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.4rem;
}

.footer-about .brand-text{
    color: #fdf6ec;
}

.footer-desc{
    font-size: 0.9rem;
    line-height: 1.9;
    color: #b9b2a0;
    margin-bottom: 1.2rem;
}

.social-links{
    display: flex;
    gap: 0.7rem;
}

.social-icon{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fdf6ec;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.2s;
}

.social-icon:hover{
    background: var(--accent);
    color: #1b1f2a;
    transform: translateY(-2px);
}

.footer-heading{
    color: #fdf6ec;
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
}

.footer-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-link{
    color: #b9b2a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}

.footer-link:hover{
    color: var(--accent);
}

.footer-contact li{
    color: #b9b2a0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i{
    color: var(--accent);
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.2rem 1.5rem;
}

.footer-copy{
    font-size: 0.85rem;
    color: rgba(217,210,194,0.7);
}

/* =====================================================
   RESPONSIVE — landing/header/footer
   ===================================================== */
@media (max-width: 992px){
    .footer-grid{
        grid-template-columns: 1fr 1fr;
    }
    .features-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px){
    .header-inner{
        padding: 0.7rem 1rem;
    }
    .brand-text{
        font-size: 1rem;
    }
    .brand-logo{
        width: 36px;
        height: 36px;
    }
    .footer-grid{
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-top{
        padding: 2.4rem 1.2rem 1.6rem;
    }
    .register-card{
        padding: 2rem 1.3rem;
        border-radius: 18px;
    }
    .register-title{
        font-size: 1.5rem;
    }
    .btn-register{
        font-size: 1.05rem;
        padding: 0.7rem 1.8rem;
    }
    .features-grid{
        grid-template-columns: 1fr;
    }
    .section-title{
        font-size: 1.4rem;
    }
    .cta-box{
        padding: 2.2rem 1.4rem;
    }
}

/* =====================================================
   STUDENT REGISTRATION WIZARD
   (fixed: now uses --primary/--primary-deep/--accent/--accent-soft
   instead of the old, no-longer-defined --deep/--deep-2/--gold/--gold-soft)
   ===================================================== */
.mast{
    background:linear-gradient(135deg,var(--primary) 0%,var(--primary-deep) 100%);
    color:#f4efe1;
    border-radius:0 0 28px 28px;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px -12px rgba(22,53,51,.5);
}
.mast::before{
    content:"";
    position:absolute; inset:0;
    background-image:repeating-linear-gradient(135deg, rgba(244,239,225,.035) 0 2px, transparent 2px 26px);
    pointer-events:none;
}
.mast .eyebrow{
    letter-spacing:.12em;
    color:var(--accent-soft);
    font-size:.78rem;
    font-weight:600;
}
.mast h1{
    font-weight:800;
    font-size:clamp(1.5rem,3vw,2.1rem);
    color:#f4efe1;
}

.id-chip{
    border:1px dashed rgba(244,239,225,.45);
    border-radius:12px;
    padding:.6rem .9rem;
    font-size:.82rem;
    color:#f4efe1cc;
    background:rgba(244,239,225,.05);
}

/* ===== Stepper ===== */
.stepper{
    display:flex;
    gap:.4rem;
    list-style:none;
    padding:0; margin:0;
    overflow-x:auto;
}
.stepper li{
    flex:1 0 auto;
    display:flex;
    align-items:center;
    gap:.5rem;
    padding:.6rem .9rem;
    border-radius:999px;
    background:rgba(244,239,225,.07);
    color:#f4efe1a8;
    font-size:.85rem;
    white-space:nowrap;
    cursor:pointer;
    border:1px solid transparent;
    transition:.2s;
}
.stepper li .num{
    width:22px;height:22px;
    border-radius:50%;
    background:rgba(244,239,225,.15);
    display:flex;align-items:center;justify-content:center;
    font-size:.72rem;
    font-weight:700;
}
.stepper li.active{
    background:var(--accent);
    color:#221802;
    font-weight:700;
    box-shadow:0 4px 14px -4px rgba(200,145,47,.6);
}
.stepper li.active .num{background:#221802;color:var(--accent);}
.stepper li.done{color:#f4efe1;}
.stepper li.done .num{background:var(--ok);color:#fff;}

/* ===== Section card ===== */
.section-card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:var(--radius);
    box-shadow:0 8px 24px -18px rgba(28,43,42,.5);
}
.section-head{
    display:flex; align-items:center; gap:.7rem;
    padding-bottom:1rem; margin-bottom:1.4rem;
    border-bottom:2px solid var(--accent-soft);
}
.section-head .icon-badge{
    width:42px;height:42px;border-radius:10px;
    background:var(--primary);
    color:var(--accent-soft);
    display:flex;align-items:center;justify-content:center;
    font-size:1.15rem;
    flex-shrink:0;
}
.section-head h2{
    font-size:1.05rem;
    font-weight:800;
    margin:0;
    color:var(--primary-deep);
}
.section-head p{
    margin:0; font-size:.8rem; color:#6b7b78;
}

/* ===== Fields ===== */
label.form-label{
    font-size:.85rem;
    font-weight:600;
    color:#3c4a48;
}
.form-control, .form-select{
    border-radius:10px;
    border:1px solid var(--line);
    padding:.55rem .8rem;
    font-size:.92rem;
    background:#fffdf9;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
}

.form-control:focus, .form-select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(31,75,70,.12);
}
.req::after{
    content:"*";
    color:var(--danger);
    margin-right:.25rem;
}
.form-text{font-size:.76rem;}

.choice-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
    gap:.5rem;
}
.choice-chip{
    position:relative;
}
.choice-chip input{
    position:absolute; opacity:0;
}
.choice-chip label{
    display:flex; align-items:center; gap:.5rem;
    border:1px solid var(--line);
    border-radius:10px;
    padding:.5rem .7rem;
    font-size:.84rem;
    cursor:pointer;
    background:#fffdf9;
    transition:.15s;
}
.choice-chip input:checked + label{
    border-color:var(--primary);
    background:var(--primary);
    color:#f4efe1;
    font-weight:600;
}
.choice-chip label i{font-size:.9rem;}

.priority-row{
    border:1px solid var(--line);
    border-radius:10px;
    padding:.7rem .9rem;
    background:#fffdf9;
    display:flex; align-items:center; gap:.7rem;
}
.priority-row .rank{
    width:30px;height:30px;border-radius:50%;
    background:var(--accent-soft);color:#7a5714;
    display:flex;align-items:center;justify-content:center;
    font-weight:800; font-size:.85rem; flex-shrink:0;
}

.switch-card{
    border:1px solid var(--line);
    border-radius:10px;
    padding:.8rem 1rem;
    background:#fffdf9;
    display:flex; align-items:center; justify-content:space-between; gap:1rem;
}

/* ===== Nav buttons ===== */
.btn-deep{
    background:var(--primary); border-color:var(--primary); color:#f4efe1;
    border-radius:10px; font-weight:700; padding:.6rem 1.4rem;
}
.btn-deep:hover{background:var(--primary-deep); border-color:var(--primary-deep); color:#fff;}
.btn-outline-deep{
    border:1px solid var(--primary); color:var(--primary); border-radius:10px; font-weight:700; padding:.6rem 1.4rem;
    background:transparent;
}
.btn-outline-deep:hover{background:var(--primary); color:#fff;}
.btn-gold{
    background:var(--accent); border-color:var(--accent); color:#221802;
    border-radius:10px; font-weight:800; padding:.65rem 1.6rem;
}
.btn-gold:hover{background:#b07f24; color:#221802;}

.step-pane{display:none;}
.step-pane.active{display:block; animation:fadeIn .35s ease;}
@keyframes fadeIn{from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);}}

/* progress footer */
.progress{height:6px; border-radius:99px; background:var(--accent-soft);}
.progress-bar{background:var(--primary);}

.summary-item{
    border-bottom:1px dashed var(--line);
    padding:.5rem 0;
    display:flex; justify-content:space-between; gap:1rem;
    font-size:.86rem;
}
.summary-item span:first-child{color:#6b7b78;}
.summary-item span:last-child{font-weight:700; color:var(--primary-deep); text-align:left;}

@media (max-width:767px){
    .stepper li span.label{display:none;}
}
