/* ===========================
   GLOBAL
=========================== */

.fc-container{
    max-width:950px;
    margin:60px auto;
    padding:0 20px;
}

.fc-card{
    background:#fff;
    border-radius:24px;
    padding:50px;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.fc-hidden{
    display:none !important;
}

/* ===========================
   STEP BAR
=========================== */

.fc-progress{
    display:flex;
    justify-content:space-between;
    margin-bottom:50px;
    position:relative;
}

.fc-progress::before{
    content:'';
    position:absolute;
    top:18px;
    left:0;
    width:100%;
    height:2px;
    background:#ddd;
    z-index:1;
}

.fc-step{
    flex:1;
    position:relative;
    text-align:center;
    z-index:2;
}

.fc-step-circle{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#fff;
    border:2px solid #d8d8d8;
    margin:0 auto 10px;
}

.fc-step.active .fc-step-circle{
    background:#6a5165;
    border-color:#6a5165;
}

.fc-step.completed .fc-step-circle{
    background:#6a5165;
    border-color:#6a5165;
}

.fc-step-label{
    font-size:13px;
    font-weight:600;
    color:#8c8c8c;
    text-transform:uppercase;
    letter-spacing:.5px;
}

/* ===========================
   HEADINGS
=========================== */

.fc-step-title{
    font-size:42px;
    text-align:center;
    margin:0 0 15px;
    color:#4f3a4a;
}

.fc-step-subtitle{
    text-align:center;
    color:#777;
    margin-bottom:40px;
    font-size:16px;
}

/* ===========================
   STEP 1
=========================== */

.fc-grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.fc-grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.fc-field{
    margin-bottom:20px;
}

.fc-field label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    font-size:15px;
}

.fc-field input,
.fc-field select,
.fc-field textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    padding:14px 15px;
    box-sizing:border-box;
}

.fc-field textarea{
    min-height:140px;
    resize:vertical;
}

/* ===========================
   ROOMS
=========================== */

.fc-room-item{
    border:1px solid #e5e5e5;
    border-radius:12px;
    margin-bottom:15px;
    overflow:hidden;
    background:#fff;
}

.fc-room-header{
    padding:18px 20px;
    display:flex;
    align-items:center;
    gap:12px;
}

.fc-room-header input{
    width:20px;
    height:20px;
}

.fc-room-header label{
    margin:0;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

.fc-room-body{
    display:none;
    padding:20px;
    border-top:1px solid #eee;
    background:#fafafa;
}

.fc-room-item.active .fc-room-body{
    display:block;
}

.fc-room-size{
    display:flex;
    gap:25px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.fc-room-size label{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:15px;
}

.fc-room-size input{
    margin:0;
}

.fc-room-description{
    font-size:14px;
    line-height:1.8;
    color:#666;
}

/* ===========================
   PACKAGE CARDS
=========================== */

.fc-packages{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.fc-package-card{
    border:2px solid #ececec;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    transition:.3s;
    background:#fff;
}

.fc-package-card:hover{
    transform:translateY(-3px);
}

.fc-package-card.selected{
    border-color:#6a5165;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.fc-package-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.fc-package-content{
    padding:20px;
}

.fc-package-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;
    color:#4f3a4a;
}

.fc-package-desc{
    font-size:15px;
    color:#666;
    margin-bottom:15px;
}

.fc-package-content ul{
    margin:0;
    padding-left:18px;
}

.fc-package-content li{
    margin-bottom:8px;
    font-size:14px;
}

/* ===========================
   CONTACT STEP
=========================== */

.fc-contact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.fc-contact-grid textarea{
    height:140px;
}

/* ===========================
   BUTTONS
=========================== */

.fc-buttons{
    display:flex;
    justify-content:space-between;
    margin-top:40px;
}

.fc-btn{
    border:none;
    border-radius:50px;
    padding:14px 35px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.fc-btn-prev{
    background:#eee;
    color:#444;
}

.fc-btn-next,
.fc-btn-submit{
    background:#eeb1b5;
    color:#fff;
}

.fc-btn:hover{
    opacity:.9;
}

/* ===========================
   SUCCESS
=========================== */

.fc-success{
    text-align:center;
    padding:80px 20px;
}

.fc-success h2{
    font-size:40px;
    margin-bottom:20px;
}

.fc-success p{
    font-size:18px;
    color:#666;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:991px){

    .fc-grid-3{
        grid-template-columns:1fr;
    }

    .fc-grid-2{
        grid-template-columns:1fr;
    }

    .fc-contact-grid{
        grid-template-columns:1fr;
    }

    .fc-packages{
        grid-template-columns:1fr;
    }

    .fc-card{
        padding:30px;
    }

    .fc-step-title{
        font-size:30px;
    }

    .fc-progress{
        overflow-x:auto;
        gap:25px;
    }

    .fc-step{
        min-width:120px;
    }
}

@media(max-width:576px){

    .fc-container{
        margin:30px auto;
    }

    .fc-card{
        padding:20px;
        border-radius:15px;
    }

    .fc-step-title{
        font-size:26px;
    }

    .fc-buttons{
        gap:10px;
    }

    .fc-btn{
        width:100%;
    }
}