/* ===================================================
   PROGRAM.CSS
   Experteens Website
learn_skill | programs | 
=================================================== */
/* ===================================================
   LEARN SKILL PAGE
==================================================================================================== */
/* ==========================================
   LEARN SKILL HERO
========================================== */
.skills-page-hero{
    position: relative;
    min-height: 85vh;
    background:linear-gradient(rgba(6,31,58,.82),rgba(6,31,58,.82)),url("/static/images/training.a2ed6c5286f0.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
/* Force left content + right panel */
.skills-page-hero .story-hero-grid{
    display: grid;
    grid-template-columns: 1.5fr 420px;
    gap: 4rem;
    align-items: center;
}
.skills-page-hero h1{
    color: white;
    font-size: clamp(2.8rem,5vw,4.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.skills-page-hero p{
    color: rgba(255,255,255,.92);
}
/* RIGHT PANEL */
.skills-hero-panel{
    display: grid;
    gap: 1.25rem;
    justify-self: end;
    width: 100%;
    max-width: 420px;
}
.skills-hero-panel div{
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    padding: 1.75rem;
    border-radius: 20px;
    box-shadow:0 15px 40px rgba(0,0,0,.18);
    transition: all .3s ease;
}
.skills-hero-panel div:hover{
    transform: translateY(-6px);
}
.skills-hero-panel strong{
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: .4rem;
}
.skills-hero-panel span{
    color: var(--text-muted);
    font-size: .95rem;
}
/* ===================================================
   SKILLS CATALOG
=================================================== */
.skills-catalog-section {
    padding: 6rem 0;
    position: relative;
    padding: 7rem 0;
    /* background: #ffffff; */
    overflow: hidden;
    background: #f8fafc;
}
.skills-catalog-section::before{
    content: "";
    position: absolute;
    top: -220px;
    left: -220px;
    width: 520px;
    height: 520px;
    background: var(--accent);
    border-radius: 50%;
    opacity: .06;
    z-index: 0;
}
.skills-catalog-section::after{
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: var(--accent);
    border-radius: 50%;
    opacity: .12;
    z-index: 0;
}
.skills-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap: 2rem;
}
/* Skill Card */
.skill-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: .35s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.skill-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: .35s ease;
}
.skill-card:hover::before {
    transform: scaleX(1);
}
.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
/* Active Skills */
.skill-card.active {
    border: 2px solid var(--accent);
}
/* Header */
.skill-card-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}
/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.status-active {
    background: rgba(16,185,129,.12);
    color: #10b981;
}
.status-active .status-dot {
    background: #10b981;
}
.status-waitlist {
    background: rgba(245,158,11,.12);
    color: #f59e0b;
}
.status-waitlist .status-dot {
    background: #f59e0b;
}
.status-upcoming {
    background: rgba(59,130,246,.12);
    color: #3b82f6;
}
.status-upcoming .status-dot {
    background: #3b82f6;
}
/* Icon */
.skill-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--accent-soft);
    margin-bottom: 1.5rem;
}
.skill-icon i {
    font-size: 1.8rem;
    color: var(--accent);
}
/* Content */
.skill-title {
    margin-bottom: 1rem;
    color: var(--primary);
}
.skill-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
/* Meta */
.skill-info {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 1.5rem;
}
.skill-info span {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--text-muted);
    font-size: .95rem;
}
.skill-info i {
    color: var(--accent);
}
/* Button */
.skill-card .btn {
    margin-top: auto;
}
/* ===================================================
   WHY EXPERTEENS
=================================================== */
.section-header{
    margin-top: 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap: 2rem;
}
.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: .3s ease;
    position: relative;
    overflow: hidden;
}
.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: .3s ease;
}
.feature-item:hover::before {
    transform: scaleX(1);
}
.feature-item:hover {
    transform: translateY(-8px);
}
.feature-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.feature-item h3 {
    margin-bottom: .75rem;
}
/* ===================================================
   EMPTY STATE
=================================================== */
.empty-blog {
    grid-column: 1 / -1;
    background: var(--white);
    padding: 4rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 992px) {
    .skills-page-hero .story-hero-grid {
        grid-template-columns: 1fr;
    }
    .skills-hero-panel {
        grid-template-columns: repeat(3,1fr);
    }
}
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
    .skills-hero-panel {
        grid-template-columns: 1fr;
    }
    .skills-page-hero {
        text-align: center;
    }
}
/* ==========================================
   SKILL DETAIL PAGE
===================================================================================================== */
.skill-detail-page{
    position: relative;
    padding: 7rem 0;
    background: #f8fafc;
    overflow: hidden;
}
.skill-detail-page::before{
    content: "";
    position: absolute;
    top: -220px;
    right: -220px;
    width: 500px;
    height: 500px;
    background: var(--accent);
    border-radius: 50%;
    opacity: .06;
}
.skill-detail-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}
/* ==========================================
   MAIN CONTENT
========================================== */
.skill-detail-main{
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.skill-detail-main h1{
    font-size: clamp(2.5rem,5vw,4rem);
    line-height: 1.15;
    margin: 1rem 0 1.5rem;
    color: var(--primary);
}
.skill-detail-main > p{
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
/* ==========================================
   BACK LINK
========================================== */
.blog-back{
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: .3s;
}
.blog-back:hover{
    transform: translateX(-4px);
}
/* ==========================================
   STATUS BADGE
========================================== */
.status-badge{
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
}
.status-dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.status-active{
    background: rgba(34,197,94,.12);
    color: #16a34a;
}
.status-active .status-dot{
    background: #16a34a;
}
.status-waitlist{
    background: rgba(249,115,22,.12);
    color: #ea580c;
}
.status-waitlist .status-dot{
    background: #ea580c;
}
.status-closed{
    background: rgba(148,163,184,.15);
    color: #64748b;
}
.status-closed .status-dot{
    background: #64748b;
}
/* ==========================================
   PROGRAM DETAILS
========================================== */
.program-details{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}
.detail-item{
    background: #f8fafc;
    border: 1px solid rgba(0,0,0,.05);
    padding: 1.5rem;
    border-radius: 18px;
    transition: .3s ease;
}
.detail-item:hover{
    transform: translateY(-4px);
}
.detail-item label{
    display: block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: .5rem;
}
.detail-item .value{
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}
.detail-item .value.highlight{
    color: var(--accent);
}
/* ==========================================
   WHAT YOU WILL BUILD
========================================== */
.learn-list{
    margin-top: 3rem;
}
.learn-list h2{
    margin-bottom: 1.5rem;
}
.features-list{
    display: grid;
    gap: 1rem;
}
.features-list li{
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 1.2rem;
    background: #f8fafc;
    border-radius: 14px;
    transition: .3s ease;
}
.features-list li:hover{
    transform: translateX(6px);
}
.features-list i{
    color: var(--accent);
    font-size: 1rem;
}
/* ==========================================
   SIDEBAR
========================================== */
.skill-detail-aside{
    position: sticky;
    top: 120px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.skill-icon.large{
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:linear-gradient(135deg,var(--accent), var(--accent-hover));
    color: white;
    font-size: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}
.skill-detail-aside .btn{
    width: 100%;
    justify-content: center;
}
/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 992px){
    .skill-detail-grid{
        grid-template-columns: 1fr;
    }
    .skill-detail-aside{
        position: static;
    }
}
@media (max-width: 768px){
    .skill-detail-main{
        padding: 2rem;
    }
    .program-details{
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   EXPERTEENS PROGRAMS PAGE
   Premium Modern Education / Training Layout
=================================================================================================================== */
/* =========================
   HERO SECTION
========================= */
.programs-hero-modern {
    padding: 6rem 0;
    background:linear-gradient(135deg, rgba(10, 31, 68, 0.96), rgba(18, 80, 120, 0.92) );
    color: var(--white);
    overflow: hidden;
}
.programs-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 4rem;
}
/* =========================================================
   FLOATING FILTER OVER HERO
========================================================= */
/* Make hero the positioning parent */
.programs-hero-modern {
    position: relative;
    padding-bottom: 8rem;
}
/* Move listing section upward */
.programs-listing-section {
    position: relative;
    padding-top: 0;
}
/* Floating toolbar */
.programs-toolbar {
    position: relative;
    margin-top: -8.5rem;
    z-index: 10;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-radius:24px;
    box-shadow:0 25px 60px rgba(15,23,42,.18);
}
 .programs-toolbar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(0,180,216,.5),
        transparent
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;   /* ADD THIS */
}
/* Add breathing space after filter */
.programs-results-header {
    margin-top:4rem;
}
.programs-hero-modern h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin: 1rem 0;
    font-weight: 800;
    letter-spacing: -1px;
}
.programs-hero-modern p:not(.eyebrow) {
    max-width: 600px;
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: .9;
}
/* Hero image */
.programs-hero-media {
    position: relative;
}
.programs-hero-media::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: var(--accent-color);
    opacity: .15;
    filter: blur(40px);
    z-index: 0;
}
.programs-hero-media img {
    position: relative;
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
    z-index:1;
}

/* Buttons */
.hero-buttons {
    display:flex;
    gap:1rem;
    margin-top:2rem;
}
/* =========================
   FILTER TOOLBAR
========================= */
.programs-listing-section {
    padding:5rem 0;
    background:#f8fafc;

}
.programs-toolbar {
    display:grid;
    grid-template-columns:repeat(3,1fr) auto;
    gap:1.5rem;
    background:white;
    padding:2rem;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    margin-bottom:4rem;
}
.programs-toolbar label {
    display:block;
    font-size:.9rem;
    font-weight:700;
    margin-bottom:.5rem;
    color:var(--navy-blue);
}
.form-select {
    width:100%;
    padding:.9rem 1rem;
    border-radius:12px;
    border:1px solid #dbe3ec;
    background:white;
    font-size:1rem;
    cursor:pointer;
    transition:.3s ease;
}
.form-select:hover,
.form-select:focus {
    border-color:var(--accent-color);
    outline:none;
    box-shadow:0 0 0 4px rgba(0,180,216,.12);
}
/* =========================
   RESULTS HEADER
========================= */
.programs-results-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:2rem;
}
.programs-results-header h2 {
    font-size:2rem;
    color:var(--navy-blue);
}
.btn-link {
    color:var(--accent-color);
    font-weight:700;
    text-decoration:none;
}
.btn-link:hover {
    text-decoration:underline;
}
/* =========================
   PROGRAM CARDS
========================= */
.modern-programs-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}
.program-card-modern {
    background:white;
    border-radius:24px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    border:1px solid #edf2f7;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    transition:.35s ease;
    position:relative;
}
.program-card-modern::before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    height:4px;
    width:0;
    background:var(--accent-color);
    transition:.35s ease;
}
.program-card-modern:hover::before {
    width:100%;
}
.program-card-modern:hover {
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(15,23,42,.15);
}
/* Image */
.program-card-image {
    position:relative;
}
.program-card-image img {
    width:100%;
    height:230px;
    object-fit:cover;
}
.program-status {
    position:absolute;
    top:1rem;
    right:1rem;
    padding:.45rem 1rem;
    border-radius:50px;
    font-size:.8rem;
    font-weight:700;
    color:white;
    background:var(--accent-color);
}
/* Card body */
.program-card-body {
    padding:1.8rem;
    flex:1;
}
.program-kicker {
    font-size:.85rem;
    font-weight:700;
    color:var(--accent-color);
    text-transform:uppercase;
    letter-spacing:.5px;
}
.program-card-body h3 {
    font-size:1.5rem;
    color:var(--navy-blue);
    margin:.8rem 0;
}
.program-card-body p {
    color:#64748b;
    line-height:1.7;
}
/* Meta */
.program-meta-modern {
    display:grid;
    gap:.7rem;
    margin-top:1.5rem;
}
.program-meta-modern span {
    display:flex;
    align-items:center;
    gap:.6rem;
    font-size:.9rem;
    color:#475569;
}
.program-meta-modern i {
    color:var(--accent-color);
}
/* Outcome */
.program-outcome-modern {
    margin-top:1.5rem;
    padding:1rem;
    border-radius:14px;
    background:#f1f5f9;
}
.program-outcome-modern strong {
    color:var(--navy-blue);
}
/* Actions */
.program-card-actions {
    padding:0 1.8rem 1.8rem;
    display:flex;
    gap:1rem;
}
.program-card-actions .btn {
    flex:1;
    text-align:center;
}
/* =========================
   EMPTY STATE
========================= */
.empty-blog {
    background:white;
    padding:3rem;
    text-align:center;
    border-radius:24px;
}
/* =========================
   FINAL CTA
========================= */
.final-cta {
    padding:5rem 1rem;
    background:linear-gradient(135deg,var(--navy-blue), #123b5d);
    text-align:center;
    color:white;
}
.finalcta-container {
    max-width:850px;
    margin:auto;
}
.section-title-light {
    color:white;
    font-size:2.5rem;
}
.medium-text {
    font-size:1.15rem;
    opacity:.9;
    margin:1rem auto 2rem;
}
.cta-buttons {
    display:flex;
    justify-content:center;
    gap:1rem;
}
/* =========================
   RESPONSIVE
========================= */
@media(max-width:1100px){
    .modern-programs-grid {
        grid-template-columns:repeat(2,1fr);
    }
    .programs-toolbar {
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:800px){
    .programs-hero-grid {
        grid-template-columns:1fr;
    }
    .programs-hero-media img {
        height:300px;
    }
    .modern-programs-grid {
        grid-template-columns:1fr;
    }
    .programs-toolbar {
        grid-template-columns:1fr;

    }
    .programs-results-header {
        flex-direction:column;
        align-items:flex-start;
        gap:1rem;
    }
    .cta-buttons,
    .hero-buttons {
        flex-direction:column;
    }
}
/* =========================================================
   EXPERTEENS REGISTRATION MODAL
   Premium Application Form, register.html
================================================================================================*/
/* =========================
   MODAL BACKDROP
========================= */

/* =========================
   MODAL BACKDROP - FIXED SCROLL
========================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background:linear-gradient( 135deg, rgba(10,31,68,.92), rgba(0,180,216,.45) );
    backdrop-filter: blur(10px);
    display:flex;
    justify-content:center;
    align-items:flex-start; /* changed */
    padding:2rem 1rem;
    z-index:9999;
    overflow-y:auto; /* allows page scrolling */
}
/* =========================
   MODAL CARD
========================= */
.modal {
    width:100%;
    max-width:650px;
    background:white;
    border-radius:28px;
    padding:2.8rem;
    position:relative;
    margin:2rem auto;
    box-shadow:0 30px 80px rgba(0,0,0,.25);
    animation:modalIn .45s ease;
}
/* prevent inner content cutting */
.modal form {
    max-height:none;
}
/* =========================
   MOBILE FIX
========================= */
@media(max-width:700px){
    .modal-overlay {
        padding:1rem;
    }
    .modal {
        margin:1rem auto;
        padding:2rem 1.3rem;
    }
}
@keyframes modalIn {
    from {
        opacity:0;
        transform:translateY(30px) scale(.96);
    }
    to {
        opacity:1;
        transform:translateY(0) scale(1);
    }
}
/* =========================
   CLOSE BUTTON
========================= */
.modal-close {
    position:absolute;
    top:1.3rem;
    right:1.5rem;
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.8rem;
    color:#64748b;
    background:#f1f5f9;
    text-decoration:none;
    transition:.3s ease;
}
.modal-close:hover {
    background:var(--accent-color);
    color:white;
    transform:rotate(90deg);
}
/* =========================
   HEADER
========================= */
.modal-title {
    color:var(--navy-blue);
    font-size:2rem;
    font-weight:800;
    margin-bottom:.7rem;
}
.modal-subtitle {
    color:#64748b;
    line-height:1.7;
    margin-bottom:2rem;
}
/* =========================
   FORM ELEMENTS
========================= */
.form-group {
    margin-bottom:1.4rem;
}
.form-label {
    display:block;
    font-size:.9rem;
    font-weight:700;
    color:var(--navy-blue);
    margin-bottom:.5rem;
}
.required {
    color:#ef4444;
}
.form-input,
.form-select,
.form-group select {
    width:100%;
    padding:1rem 1.1rem;
    border-radius:14px;
    border:1px solid #dbe3ec;
    background:white;
    color:#334155;
    font-size:1rem;
    transition:.3s ease;
}
.form-input::placeholder {
    color:#94a3b8;
}
.form-input:hover,
.form-select:hover,
.form-group select:hover {
     border-color:#94cfe5;
}
.form-input:focus,
.form-select:focus,
.form-group select:focus {
    outline:none;
    border-color:var(--accent-color);
    box-shadow:0 0 0 4px rgba(0,180,216,.12);
}
/* readonly skill */
.form-input-readonly {
    background:#f8fafc;
    cursor:not-allowed;
    color:#64748b;
}
/* =========================
   PHONE ROW
========================= */
.phone-row {
    display:grid;
    grid-template-columns:150px 1fr;
    gap:1rem;
}
/* =========================
   ERRORS
========================= */
.error {
    border-color:#ef4444 !important;
}
.error-message {
    margin-top:.4rem;
    font-size:.85rem;
    color:#dc2626;
}
/* =========================
   BUTTONS
========================= */
.form-actions {
    display:flex;
    gap:1rem;
    margin-top:2rem;
}
.form-actions .btn {
    flex:1;
    padding:1rem;
    border-radius:14px;
    font-weight:700;
    cursor:pointer;
    text-align:center;
    border:none;
}
.btn.primary {
    background:var(--accent);
    color:white;
    transition:.3s ease;
}
.btn.primary:hover{
    background: var(--accent-hover);
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,180,216,.35);
}
/* .btn-primary:hover {
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,180,216,.35);
} */
 .btn.secondary{
   color: var(--navy-blue);
   background: white;
 }
 .btn-primary{
    background: var(--navy-blue);
 }
 .btn-primary:hover{
    background: var(--navy-blue);
 }
.btn-outline {
    border:2px solid #e2e8f0;
    color:var(--navy-blue);
    background:white;
}
.btn-outline:hover {
    border-color:var(--accent-color);
    color:var(--accent-color);
}
/* =========================
   MOBILE
========================= */
@media(max-width:700px){
    .modal {
        padding:2rem 1.3rem;
        border-radius:22px;
    }
    .modal-title {
        font-size:1.6rem;
    }
    .phone-row {
        grid-template-columns:1fr;
    }
    .form-actions {
        flex-direction:column;
    }
}
/* =========================================================
   EXPERTEENS REGISTRATION SUCCESS PAGE
   Premium Confirmation Modal
================================================================================================================= */
/* =========================
   CONFIRMATION WRAPPER
========================= */
#confirmationModal {
    display:flex;
    align-items:flex-start;
    padding:2rem 1rem;
    overflow-y:auto;
}
/* =========================
   MODAL CARD
========================= */
#confirmationModal .modal {
    max-width:600px;
    padding:3rem 2.5rem;
    border-radius:32px;
    text-align:center;
    margin:2rem auto;
    box-shadow:0 35px 90px rgba(0,0,0,.25);
}
/* =========================
   SUCCESS ICON
========================= */
.success-icon {
    width:90px;
    height:90px;
    margin:0 auto 1.5rem;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:3rem;
    font-weight:800;
    color:white;
    background:linear-gradient(135deg,#10b981,#059669);
    box-shadow:0 20px 45px rgba(16,185,129,.35);
    animation:successPop .6s ease;
}
@keyframes successPop {
    0% {
        transform:scale(.5);
        opacity:0;
    }
    100% {
        transform:scale(1);
        opacity:1;
    }
}
/* =========================
   TITLE
========================= */
.confirmation-title {
    font-size:2.2rem;
    font-weight:800;
    color:var(--navy-blue);
    margin-bottom:1rem;
}
.confirmation-message {
    color:#64748b;
    font-size:1.05rem;
    line-height:1.8;
    margin-bottom:2rem;
}
/* =========================
   NEXT STEPS CARD
========================= */
.next-steps {
    background:#f8fafc;
    border-radius:20px;
    padding:1.8rem;
    text-align:left;
    margin-bottom:2rem;
    border:1px solid #e2e8f0;
}
.next-steps h3 {
    color:var(--navy-blue);
    margin-bottom:1rem;
    font-size:1.2rem;
}
.next-steps ul {
    list-style:none;
    padding:0;
    margin:0;
}
.next-steps li {
    padding:.65rem 0;
    color:#475569;
    line-height:1.5;
    border-bottom:1px solid #e2e8f0;
}
.next-steps li:last-child {
    border-bottom:none;
}
/* =========================
   SOCIAL SECTION
========================= */
.social-prompt {
    color:#64748b;
    margin-bottom:1rem;
    font-weight:600;
}
.social-links {
    display:flex;
    justify-content:center;
    gap:1rem;
    margin-bottom:2rem;
}
.social-icon {
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:800;
    color:white;
    transition:.3s ease;
}
.social-icon:hover {
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}
.social-facebook {
    background:#1877f2;
}
.social-twitter {
    background:#111827;
}
.social-linkedin {
    background:#0a66c2;
}
.social-instagram {
    background:linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}
/* =========================
   CLOSE BUTTON
========================= */
.btn-full {
    display:flex;
    width:100%;
    justify-content:center;
    align-items:center;
    min-height:52px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
}
.btn-secondary {
    background:linear-gradient(135deg,var(--accent-color), #0096c7 );
    color:white;
    transition:.3s ease;
}
.btn-secondary:hover {
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,180,216,.35);
}
/* =========================
   MOBILE
========================= */
@media(max-width:600px){
    #confirmationModal .modal {
        padding:2rem 1.3rem;
        border-radius:24px;
    }
    .confirmation-title {
        font-size:1.7rem;
    }
    .success-icon {
        width:75px;
        height:75px;
        font-size:2.4rem;
    }
}