* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #1c1c1c;
    background: #f8fafc;
    padding: 0;
    margin: 0;
    font-family: "Inter";
}

a {
    text-decoration: none;
}

.header-area {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #edf1f6;
}

.navbar {
    min-height: 82px;
    padding: 0;
}

.logo {
    height: 42px;
}

.navbar-nav {
    gap: 18px;
}

.nav-link {
    color: rgba(12, 28, 69, 0.75);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.nav-link:hover {
    color: #FA6E1D;
}

.nav-link.active {
    color: #fff !important;
    background-color: #FA6E1D;
    border-radius: 10px;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FA6E1D;
    color: #fff;
    width: 129.25px;
    height: 40px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: .3s;
    gap: 6px;
}

.btn-book:hover {
    background: #13284d;
    color: #fff;
    transform: translateY(-2px);
}

.navbar-toggler {
    font-size: 34px;
    color: #13284d;
}

@media (max-width:1199px) {
    .navbar-collapse {
        background: #fff;
        margin-top: 15px;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 14px 0 !important;
        border-bottom: 1px solid #ececec;
    }

    .btn-book {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }

    .nav-item {
        text-align: center;
    }
}


/*===================================== FOOTER =====================================*/
.footer-section {
    background: #162B59;
    padding: 70px 0 25px;
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 34px;
}

.footer-logo span {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

/* Text */
.footer-about {
    margin-bottom: 28px;
    color: rgba(246, 249, 252, 0.70);
    font-family: Inter;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

/* Heading */
.footer-title {
    margin-bottom: 25px;
    color: rgba(246, 249, 252, 0.60);
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    text-decoration: none;
    transition: .3s;
    color: rgba(246, 249, 252, 0.80);
    font-family: Inter;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.footer-links a:hover {
    color: #ff6b00;
    padding-left: 6px;
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.footer-contact li a {
    color: rgba(246, 249, 252, 0.80);
}

.footer-contact i {
    color: #ff6b00;
    font-size: 18px;
    margin-top: 2px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(246, 249, 252, 0.20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
}

.footer-social a:hover {
    background: #ff6b00;
    border-color: #ff6b00;
    transform: translateY(-3px);
}

/* Button */
.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* padding: 15px 28px; */
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
    color: #FCFCFC;
    font-family: Inter;

    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    background: #FF7527;
}

.footer-btn:hover {
    background: #fff;
    color: #162B59;
}

/* Divider */
.footer-section hr {
    border-color: rgba(255, 255, 255, .10);
    margin: 55px 0 25px;
}

/* Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: rgba(246, 249, 252, 0.60);
    font-family: Inter;

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(246, 249, 252, 0.60);
    font-family: Inter;

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

/*========================= Tablet =========================*/
@media(max-width:991px) {
    .footer-logo span {
        font-size: 26px;
    }
}

/*========================= Mobile =========================*/
@media(max-width:767px) {
    .footer-section {
        text-align: center;
        padding: 60px 0 25px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-title {
        margin-top: 15px;
    }
}


/*============================== FAQ ==============================*/
.faq-section {
    padding: 40px 0;
    background: #f5f0e6;
}

.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.faq-title {
    text-align: center;
    margin-bottom: 55px;
    color: #0C1C45;
    font-family: Inter;

    font-size: 46.815px;
    font-style: normal;
    font-weight: 600;
    line-height: 59.605px;
    /* 127.321% */
}

/* Accordion */
.faq-accordion .accordion-item {
    border: none;
    background: #F7F5F2;
    border-radius: 16px !important;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: #F7F5F2;
    box-shadow: none;
    font-size: 19px;
    font-weight: 500;
    color: #111;
    padding: 22px 28px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #F7F5F2;
    color: #111;
}

.faq-accordion .accordion-body {
    background: #F7F5F2;
    color: #9A9A9A;
    font-size: 15px;
    line-height: 1.9;
    padding: 0 28px 24px;
}

/* Remove Bootstrap Icon */
.faq-accordion .accordion-button::after {
    display: none;
}

/* Plus */
.faq-accordion .accordion-button::before {
    content: "+";
    order: 2;
    margin-left: auto;
    font-size: 26px;
    color: #777;
    font-weight: 300;
}

/* Minus */
.faq-accordion .accordion-button:not(.collapsed)::before {
    content: "−";
}

/* Hover */
.faq-accordion .accordion-item:hover {
    background: #F3F1EE;
}

/* Focus */
.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

/*========================== Tablet ==========================*/
@media(max-width:991px) {
    .faq-section {
        padding: 90px 0;
    }

    .faq-title {
        font-size: 42px;
    }
}

/*========================== Mobile ==========================*/
@media(max-width:767px) {
    .faq-section {
        padding: 70px 0;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .faq-accordion .accordion-button {
        font-size: 16px;
        padding: 18px;
    }

    .faq-accordion .accordion-body {
        padding: 0 18px 18px;
        font-size: 14px;
    }
}


/* LOGIN SIDEBAR */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 1040;
}

.drawer-overlay.show {
    opacity: 1;
    visibility: visible;
}

.login-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 650px;
    height: 100vh;
    background: #fff;
    overflow-y: auto;
    transition: .4s ease;
    z-index: 1050;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
}

.login-drawer.show {
    right: 0;
}

.drawer-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 28px;
}

.login-wrapper {
    max-width: 580px;
    margin: 80px auto;
    padding: 40px;
}

.login-logo {
    width: 70px;
    display: block;
    margin: 0 auto 40px;
}

.login-wrapper h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.login-wrapper p {
    color: #666;
    margin-bottom: 15px;
}

.login-btn {
    width: 220px;
    height: 54px;
    border: none;
    border-radius: 50px;
    background: #FF6B00;
    color: #fff;
    font-family: "Inter";
    font-weight: 600;
    transition: all .35s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 0, .25);
    cursor: pointer;
}

.login-btn:hover {
    background: #162B59;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(22, 43, 89, .25);
}

.login-btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(22, 43, 89, .18);
}

.login-btn:focus {
    outline: none;
    box-shadow: 0 0 0 .2rem rgba(255, 107, 0, .25);
}

@media(max-width:768px) {
    .login-drawer {
        width: 100%;
    }

    .login-wrapper {
        padding: 25px;
        margin: 50px auto;
    }

    .login-wrapper h2 {
        font-size: 36px;
    }

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

.form-control:focus {
    box-shadow: unset;
}

/*=========================================
OTP INPUT
=========================================*/
.otp-input-container {
    display: flex;
    /* justify-content: center;
     */
    margin: 20px 0;
}

#otp {
    display: flex;
    gap: 16px;
}

.otp-input {
    width: 60px;
    height: 60px;
    border: 1px solid #D8E0EA;
    border-radius: 16px;
    background: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #162B59;
    font-family: "Inter";
    transition: .3s;
    outline: none;
}

.otp-input:focus {
    border-color: #FF6B00;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, .12);
    transform: translateY(-2px);
}

.otp-input.filled {
    border-color: #FF6B00;
    background: #FFF7F2;
}

@media(max-width:575px) {
    #otp {
        gap: 10px;
    }

    .otp-input {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

/* Dropdown */
.navbar .dropdown-menu {
    border: none;
    border-radius: 16px;
    padding: 10px 0;
    min-width: 240px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    margin-top: 12px;
}

.navbar .dropdown-item {
    padding: 12px 22px;
    font-family: "Inter";
    font-size: 15px;
    color: #162B59;
    transition: .3s;
}

.navbar .dropdown-item:hover {
    background: #FFF3EC;
    color: #FF6B00;
}

.navbar .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

#how-it-works, #why-vykal, #vykal-trust, #vykal-services {
    scroll-margin-top: 100px;
}

.store-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    min-width: 200px;
    padding: 12px 20px;
    background: #162B59;
    border-radius: 55px;
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(22, 43, 89, .18);
}

.store-btn i {
    font-size: 24px;
}

.store-btn:hover {
    background: #ff6b00;
    transform: translateY(-5px);
    color: #fff;
}

.store-icon {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 36px;
    flex-shrink: 0;
}

.store-content {
    display: flex;
    flex-direction: column;
    /* line-height: 1.2;
     */
}

.store-content small {
    margin-bottom: 6px;
    color: #F6F9FC;
    font-family: Inter;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.store-content span {
    color: #F6F9FC;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

/*================== Mobile ==================*/
@media(max-width:767px) {
    .store-buttons {
        justify-content: center;
    }

    .store-btn {
        width: 100%;
        min-width: 100%;
    }

    .store-content span {
        font-size: 18px;
    }

    .store-icon {
        font-size: 32px;
    }
}

/* Navbar Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 0;
}

.navbar-brand .logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text h1 {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    color: #061D44;
    letter-spacing: -0.5px;
    font-family: "Inter";
}

/* .brand-text h1 span {
    color: #F58634;
} */

/* Tablet */
@media (max-width: 991px) {
    .navbar-brand .logo {
        width: 44px;
        height: 44px;
    }

    .brand-text h1 {
        font-size: 1.4rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .navbar-brand {
        gap: 8px;
    }

    .navbar-brand .logo {
        width: 38px;
        height: 38px;
    }

    .brand-text h1 {
        font-size: 1.15rem;
    }
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);

    z-index: 9999;

    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #20b957;
    color: #fff;
    transform: scale(1.08);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Mobile */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float svg {
        width: 29px;
        height: 29px;
    }
}