* {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    background-color: #fcfcfc !important;
    font-family: "Rubik", sans-serif !important;
}

.outer-header {

    padding: 5px 0;
    background-color: #fff !important;
    box-shadow: 0 1px 23.9px 0 #0000000d;
}

.nav-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-radius: 4px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 200px;
}

.logo-text {
    color: #ff5a5a;
    font-size: 16px;
    font-weight: 600;
}

.login-pill {
    background: #ff5a5a;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
}

.hero {
    padding: 50px 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.hero-text {
    width: 48%;
}

.hero-text h1 {
    font-size: 60px;
    color: #444;
    line-height: 1.3;
    font-weight: 500;
}

.dest {
    position: relative;
}

.dest::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 6px;
    background: #ff5a5a;
    border-radius: 20px;
}

.hero-text p {
    margin-top: 20px;
    color: #838383;
    font-size: 16px;
    width: 80%;
}

.login-btn {
    margin-top: 10px;
    background: #ff5a5a;
    color: white;
    border: none;
    padding: 12px 70px;
    border-radius: 30px;
    font-size: 18px;
}


.hero-image {
    width: 50%;
    text-align: right;
}

.hero-image img {
    width: 100%;
}




.section-area {
    padding: 50px 0;
    background-color: #f8f9fb;
}


.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 35px;
}


.info-card {
    background: #fff7fa;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 30px;
    padding: 55px;
}


.title-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.title-flex h4 {
    margin: 0;
    font-weight: 700;
    color: #444;
}


.circle-icon {
    width: 40px;
    height: 40px;
    background: #ff6b8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}


.sub-heading {
    font-weight: 500;
    color: #404040;
    margin-bottom: 10px;
}


.text-desc {
    color: #686868;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}


.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.custom-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b8a;
    font-weight: bold;
}

.info-card .right-img {
    width: 70% !important;
    max-width: 320px;
}

.prod-section {
    padding: 80px 0;
    text-align: center;
}


.prod-heading {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 60px;
}


.prod-card {
    width: 170px;
    height: 170px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    margin: auto;
}


.prod-icon {
    font-size: 56px;
}


.prod-text {
    margin-top: 22px;
    font-size: 17px;
    color: #7a7a7a;
    font-weight: 500;
}


.bg-card1 {
    background: #e0f2fe;
}

.bg-card2 {
    background: #ebe9fe;
}

.bg-card3 {
    background: #ffead5;
}

.bg-card4 {
    background: #ffe5e8;
}

.bg-card5 {
    background: #ecfdf3;
}

.icon1 {
    color: #3da6d6;
}

.icon2 {
    color: #6c63d4;
}

.icon3 {
    color: #e67e22;
}

.icon4 {
    color: #e84393;
}

.icon5 {
    color: #27ae60;
}

.flexiconrow {
    justify-content: space-around !important;
}


.coverage-area {
    padding: 70px 0;
    background-color: #f8f9fb;
}


.cov-title {
    font-size: 36px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.cov-text {
    color: #555;
    font-size: 15px;
}


.cov-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 240px;
}



.cov-grid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #dddddd61;
}

.cov-grid::after {
    content: "";
    position: absolute;
    left: 80px;
    right: 80px;
    top: 50%;
    height: 1px;
    background: #dddddd61;
}


.cov-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cov-item p {
    margin: 0;
    color: #777;
    font-size: 14px;
}


.num {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.red {
    color: #ff5a5a;
}

.orange {
    color: #ff6a00;
}

.darkorange {
    color: #ff8c00;
}

.yellow {
    color: #ffcc00;
}


.act-footer {
    background: #f7f7f7;
    padding: 35px 70px;
}

.act-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.act-circle {
    width: 26px;
    height: 26px;
    border: 3px solid #ef3d32;
    border-radius: 50%;
    position: relative;
}

.act-circle::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 3px solid #ff5a5a;
    border-radius: 50%;
    top: 4px;
    left: 4px;
}

.act-logo-text {
    color: #ff5a5a;
    font-size: 22px;
    margin: 0;
    font-weight: 600;
}

.act-tag {
    font-size: 14px;
    color: #8f8f8f;
    margin-top: 6px;
}

.act-divider {
    height: 1px;
    background: #e4e4e4;
    margin: 25px 0;
}

.act-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.act-copy {
    font-size: 14px;
    color: #9c9c9c;
    margin: 0;
}

.act-social {
    position: absolute;
    right: 0;
    display: flex;
    gap: 37px;
    font-size: 18px;
    color: #8e8e8e;
}

.act-social i {
    cursor: pointer;
    font-size: 20px;
}

.act-x {
    color: #ff5a5a;
}

.premium-modal {
    border-radius: 18px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.premium-modal .modal-body {
    padding: 30px !important;
}

.premium-title {
    font-weight: 600;
}

.premium-sub {
    color: #6a6a6a;
    font-size: 14px;
}

.premium-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #fafafacf;
}


.premium-input-wrap i {
    font-size: 20px;
    color: #7e7e7e;
    margin-right: 10px;
}

.premium-input-wrap input {
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
    font-size: 14px;
}

.premium-input-wrap:focus-within {
    border-color: #ff5a5a;
    background: white;
}

.remember {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.forgot {
    font-size: 14px;
    text-decoration: none;
    color: #ff5a5a;
}

.premium-login-btn {
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff3c2f, #ff6a3d);
    color: white;
    transition: 0.3s;
}

.premium-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


.premium-modal {
    position: relative;
    border-radius: 18px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.premium-close {
    position: absolute;
    z-index: 999999;
    top: -16px;
    right: -14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #444;
    cursor: pointer;
    transition: 0.3s;
}

.premium-close:hover {
    background: #ff5a5a;
    color: white;
    transform: rotate(90deg);
}

.tq-wrapper {
    display: flex;
    height: 100vh;
}


.tq-sidebar {
    width: 283px;
    background: #fafafa;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.tq-brand {
    margin-bottom: 30px;
}

.tq-brand h5 {
    margin: 0;
    font-weight: 600;
}

.tq-brand span {
    font-size: 13px;
    color: #6b7280;
}

.tq-nav-title {
    font-size: 13px;
    color: #666666;
    margin-bottom: 10px;
}

.tq-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tq-nav li {
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tq-nav li:hover {
    background: #f3f4f6;
}

.tq-nav li.active {
    background: #f3f4f6;
    font-weight: 500;
}

.tq-logout {
    margin-top: auto;
    cursor: pointer;
    color: #374151;
}



.tq-main {
    flex: 1;
}

.tq-title {
    font-weight: 600;
    margin-bottom: 20px;
}


.tq-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 25px;
    max-width: 900px;
}

.tq-section-title {
    font-size: 20px;
    margin-bottom: 20px;
}

.tq-destination {
    border: 1px solid #e5e7eb;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.tq-btn-add {
    margin-top: 15px;
}

.tq-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.tq-primary {
    background: #0f172a;
    color: white;
    border: none;
}



.tq-table {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px;
}


.tq-page-bg {
    background: #f5f6f8;
    margin: 0;
    font-family: system-ui;
}


.tq-header-bar {
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    padding: 20px 28px;
}

.tq-header-left span {
    font-size: 18px;
    font-weight: 500;
}

.tq-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    color: #111827;
}

.bi-layout-sidebar {
    font-size: 18px;
}


.tq-container {
    padding: 28px;
}


.tq-page-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tq-page-title {
    font-weight: 500;
    margin: 0;
}


.tq-new-btn {
    background: #0f172a;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
}

.tq-card-table tr th {
    background-color: #f5f5f5;
    color: #3d3d3d !important;
    font-weight: 500;
}

.tq-custom-table thead {
    background-color: transparent !important;
}

.tq-card-table {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}


.tq-custom-table {
    margin: 0;
}

.tq-custom-table tbody tr td {
    padding: 16px 18px;
    color: #353535;
    border-bottom: 1px solid rgb(230, 230, 230);
}

.tq-custom-table thead {
    background: #f9fafb;
}

.tq-custom-table th {
    font-weight: 400;
    color: #555 !important;
    padding: 18px !important;
    border-bottom: 1px solid #c5c5c585 !important;
}

.tq-custom-table {
    margin: 0px !important;
}

.tq-custom-table td {
    padding: 40px 18px;
    border: none;
}


.tq-empty-row {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    padding: 35px !important;
}

.tqb-page {
    background: #f5f6f8;
    font-family: system-ui;
}

.tqb-header {
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    color: #111827;
    font-size: 18px;
}

.tqb-wrapper {
    padding: 30px;
}

.tqb-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 24px;
    width: 1140px;
}

.tqb-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 18px;
}

.tqb-label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #0a0a0a;
}

.tqb-input {
    height: 42px;
    border-radius: 6px;
}

.tqb-destination-box {
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 18px;
    margin-top: 14px;
}

.tqb-add-btn {
    margin-top: 14px;
    border: 1px solid #e6e6e6;
    background: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 15px;
    color: #000 !important;
}

.tqb-add-btn i {
    color: #000 !important;
}

.tqb-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.tqb-save {
    border: 1px solid #e6e6e6;
    background: #fff;
    border-radius: 8px;
    padding: 10px 16px;
}

.tqb-save i {
    margin-right: 10px;
}

.tqb-generate {
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
}

.tqb-generate i {
    margin-right: 10px;
}

.form-control, .form-select{
    font-size: 14px !important;
    padding: 8px !important;
}

.deleteDestination, .deleteRow, .deleteHotel{
    color: red;
    padding: 13px 32px 13px 18px;
    border-radius: 6px;
    cursor: pointer;
}
.deleteDestination:hover, .deleteRow:hover, .deleteHotel:hover{
    background-color: #e6e6e6;
}

.deleteRow{
    font-size: 12px;
    padding: 11px 25px 11px 13px;
}

.dayBox{
border:1px solid #ddd;
padding:15px;
margin-bottom:12px;
border-radius:8px;
}

.dayHeader{
display:flex;
justify-content:space-between;
margin-bottom:10px;
}

.itemRow{
display:flex;
gap:10px;
margin-bottom:8px;
}

.deleteRow{
cursor:pointer;
color:rgb(0, 99, 38);
}

.addActivity, .addTransfer{
    border: 1px solid #e6e6e6;
    background: #fff;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
}
.addActivity:hover, .addTransfer:hover{
    border: 1px solid #e6e6e6;
    background-color: white;
}












