/* ==========================================================================
   BEST PARIS CAB - UNIFIED COMMON GLOBAL STYLESHEET (common.css)
   Includes all Header, Navigation, Footer, Floating Widgets, Reset & Base CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & BASE TYPOGRAPHY
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f2f4f8;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
}

p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
span,
li,
input,
textarea,
button,
label {
    font-family: 'Inter', sans-serif !important;
}

p,
.menu a {
    font-size: 16px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

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

/* FADE ANIMATION UTILITY */
.fade {
    opacity: 0;
    transform: translateY(25px);
    transition: 1s ease;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   2. HEADER & NAVIGATION BAR
   -------------------------------------------------------------------------- */
header,
.main-header,
.vs-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
    width: 100%;
}

.navbar {
    max-width: 1500px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img,
.header-logo img {
    max-width: 250px;
    height: auto;
    display: block;
}

.menu-btn,
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #000;
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu a {
    color: #000;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 10px;
    display: block;
}

.menu a:hover {
    background: #ffb703;
    color: #000;
}

li.active_nav a,
.menu li.active a {
    background-color: #ffb703;
    color: #000 !important;
}

/* DROPDOWN MENU */
.dropdown,
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0d2b4f;
    min-width: 280px;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    margin-top: 0;
}

.dropdown::before,
.sub-menu::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown.show,
.menu li:hover .dropdown,
.menu li:hover .sub-menu {
    display: block;
}

.dropdown ul,
.sub-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown a,
.sub-menu a {
    color: #ffffff !important;
    padding: 10px 20px !important;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.dropdown a:hover,
.sub-menu a:hover,
.dropdown a.active,
.sub-menu a.active,
.dropdown li.active a,
.sub-menu li.active a {
    background: #ffb703 !important;
    color: #000000 !important;
}

/* --------------------------------------------------------------------------
   3. UNIFIED GLOBAL BUTTON DESIGN WITH BLOG PAGE READ MORE 3D FLIP EFFECT
   -------------------------------------------------------------------------- */
.btn,
.vs-btn,
.btn-hero,
.btn-cta,
.vs-btn.style4,
.vs-btn.style6,
.btn-send-message,
.btn-read-more,
.btn-blog-read,
.blog-read-more,
.breadcrumb-btn-wrap .btn,
.about-btn-wrap .btn,
.btn-book-now-footer,
.btn-faq-call,
.call-btn,
.btn-nav-book {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 18px 40px !important;
    background-color: #ffb703 !important;
    color: #000000 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.4px !important;
    text-transform: capitalize !important;
    border-radius: 25px !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.35) !important;
    z-index: 1 !important;
    overflow: hidden !important;
    transition: color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}

.btn-nav-book {
    padding: 14px 32px !important;
}

.btn::before,
.btn::after,
.vs-btn::before,
.vs-btn::after,
.btn-hero::before,
.btn-hero::after,
.btn-cta::before,
.btn-cta::after,
.vs-btn.style4::before,
.vs-btn.style4::after,
.btn-send-message::before,
.btn-send-message::after,
.btn-blog-read::before,
.btn-blog-read::after,
.blog-read-more::before,
.blog-read-more::after,
.breadcrumb-btn-wrap .btn::before,
.breadcrumb-btn-wrap .btn::after,
.btn-book-now-footer::before,
.btn-book-now-footer::after,
.btn-faq-call::before,
.btn-faq-call::after,
.call-btn::before,
.call-btn::after,
.btn-nav-book::before,
.btn-nav-book::after {
    width: 101%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0e284c !important;
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
    border-radius: inherit;
}

.btn::before,
.vs-btn::before,
.btn-hero::before,
.btn-cta::before,
.vs-btn.style4::before,
.btn-send-message::before,
.btn-blog-read::before,
.blog-read-more::before,
.breadcrumb-btn-wrap .btn::before,
.btn-book-now-footer::before,
.btn-faq-call::before,
.call-btn::before,
.btn-nav-book::before {
    transform: rotateX(90deg);
}

.btn::after,
.vs-btn::after,
.btn-hero::after,
.btn-cta::after,
.vs-btn.style4::after,
.btn-send-message::after,
.btn-blog-read::after,
.blog-read-more::after,
.breadcrumb-btn-wrap .btn::after,
.btn-book-now-footer::after,
.btn-faq-call::after,
.call-btn::after,
.btn-nav-book::after {
    transform: rotateY(90deg);
}

.btn:hover,
.vs-btn:hover,
.btn-hero:hover,
.btn-cta:hover,
.vs-btn.style4:hover,
.btn-send-message:hover,
.btn-blog-read:hover,
.blog-read-more:hover,
.breadcrumb-btn-wrap .btn:hover,
.btn-book-now-footer:hover,
.btn-faq-call:hover,
.call-btn:hover,
.btn-nav-book:hover {
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(14, 40, 76, 0.4) !important;
}

.btn:hover::before,
.vs-btn:hover::before,
.btn-hero:hover::before,
.btn-cta:hover::before,
.vs-btn.style4:hover::before,
.btn-send-message:hover::before,
.btn-blog-read:hover::before,
.blog-read-more:hover::before,
.breadcrumb-btn-wrap .btn:hover::before,
.btn-book-now-footer:hover::before,
.btn-faq-call:hover::before,
.call-btn:hover::before,
.btn-nav-book:hover::before {
    transform: rotateX(0deg);
}

.btn:hover::after,
.vs-btn:hover::after,
.btn-hero:hover::after,
.btn-cta:hover::after,
.vs-btn.style4:hover::after,
.btn-send-message:hover::after,
.btn-blog-read:hover::after,
.blog-read-more:hover::after,
.breadcrumb-btn-wrap .btn:hover::after,
.btn-book-now-footer:hover::after,
.btn-faq-call:hover::after,
.call-btn:hover::after,
.btn-nav-book:hover::after {
    transform: rotateY(0deg);
}

.btn-book-now-footer {
    margin-top: 15px !important;
}

/* BRIGHT ORANGE FAQ & GALLERY CTA BANNER */
.faq-cta-banner {
    background: linear-gradient(90deg, #ff9f1c 0%, #ff8c00 100%) !important;
    padding: 60px 0 !important;
    color: #ffffff !important;
}

.faq-cta-title {
    font-size: 30px !important;
    line-height: 1.35 !important;
    color: #ffffff !important;
    margin-bottom: 0 !important;
}

.faq-cta-desc {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-top: 15px !important;
    margin-bottom: 0 !important;
}

/* CTA BANNER WHITE BUTTON OVERRIDE */
.faq-cta-banner .btn-faq-call,
.faq-cta-banner .call-btn,
.faq-cta-banner .btn {
    background-color: #ffffff !important;
    color: #0e284c !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

.faq-cta-banner .btn-faq-call:hover,
.faq-cta-banner .call-btn:hover,
.faq-cta-banner .btn:hover {
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

.faq-cta-banner .btn-faq-call::before,
.faq-cta-banner .btn-faq-call::after,
.faq-cta-banner .call-btn::before,
.faq-cta-banner .call-btn::after,
.faq-cta-banner .btn::before,
.faq-cta-banner .btn::after {
    background-color: #0e284c !important;
}

.vs-breadcrumb {
    padding: 110px 0 90px !important;
    text-align: center !important;
    position: relative !important;
    background: url('../img/bg/breadcrumb-bg.png') no-repeat center center / cover !important;
}

.breadcrumb-title {
    font-size: 45px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

.breadcrumb-menu {
    margin-top: 10px !important;
}

.breadcrumb-menu ul {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    list-style: none !important;
    gap: 35px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.breadcrumb-menu ul li {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffb703 !important;
}

.breadcrumb-menu ul li a {
    color: #ffffff !important;
    text-decoration: none !important;
    position: relative !important;
    transition: color 0.3s ease !important;
}

.breadcrumb-menu ul li a:hover {
    color: #ffb703 !important;
}

.breadcrumb-menu ul li a::before {
    content: "//" !important;
    position: absolute !important;
    right: -20px !important;
    color: #ffb703 !important;
    font-weight: 700 !important;
}

.breadcrumb-menu ul li a::after {
    content: "" !important;
}

.breadcrumb-btn-wrap {
    color: #ffffff !important;
    margin-top: 20px !important;
}

.breadcrumb-btn-wrap .btn {
    margin-top: 20px !important;
}

/* AWARDS STYLE 1 SECTION HELPERS */
.awards-title-para {
    margin-top: 20px !important;
}

.award-box-h6 {
    text-align: center !important;
    padding-top: 20px !important;
}

.award-box-footer-p {
    margin-top: 20px !important;
}

/* CALL US CTA BANNER */
.call-us-banner {
    position: relative !important;
    background-color: #ffb703 !important;
    padding: 40px 0 !important;
}

.call-us-banner h3 {
    line-height: 1.35 !important;
    color: #0d2b4f !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.call-us-banner p {
    color: #1e293b !important;
    padding-top: 12px !important;
    margin: 0 !important;
    font-size: 15px !important;
}

.call-us-banner .call-btn {
    background: #0d2b4f !important;
    color: #ffffff !important;
    padding: 14px 30px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block !important;
}


/* --------------------------------------------------------------------------
   4. GLOBAL FOOTER COMPONENT
   -------------------------------------------------------------------------- */
.main-footer,
.footer {
    text-align: left !important;
    background: #07172e !important;
    color: #fff;
    padding: 50px 20px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    width: 100%;
}

.footer-container,
.inner_footer {
    max-width: 1240px;
    margin: auto;
}

.footer-grid,
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.quick-links-box,
.quick-links {
    padding-left: 45px;
}

@media (max-width: 991px) {

    .quick-links-box,
    .quick-links {
        padding-left: 0;
    }
}

.footer-box .footer-title,
.footer h3,
.footer h4 {
    font-size: 18px;
    margin-bottom: 22px;
    color: #ffb703 !important;
    font-weight: 700;
}

.footer-box p,
.footer p {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.footer-box .approval-text {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.footer-box .serial-text {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-box ul,
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-box ul li,
.footer ul li {
    margin-bottom: 12px;
}

.footer-box ul li a,
.footer ul li a {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-box ul li a:hover,
.footer ul li a:hover {
    color: #ffb703 !important;
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 14px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-contact p:hover a,
.footer-contact p a:hover {
    color: #ffb703 !important;
}

.footer-icon {
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-contact p:hover .footer-icon {
    transform: scale(1.25) rotate(5deg);
}

.footer-social,
.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.footer-social a,
.social-icons a {
    width: 38px;
    height: 38px;
    background: #ffb703 !important;
    color: #07172e !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover,
.social-icons a:hover {
    background: #0e284c !important;
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.12);
    box-shadow: 0 6px 15px rgba(255, 183, 3, 0.4);
}

.footer-bottom {
    background: #051020;
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* --------------------------------------------------------------------------
   5. FLOATING CONTACT WIDGETS (WHATSAPP & PHONE CALL)
   -------------------------------------------------------------------------- */
.wats2 {
    position: fixed;
    bottom: 10px;
    left: 0;
    z-index: 9999;
}

.wats2 img {
    height: 80px;
    width: 80px;
}

.calls {
    position: relative;
    bottom: 75px;
    left: 2px;
}

.calls2 {
    position: fixed;
    bottom: 95px;
    left: 20px;
    z-index: 9999;
}

.calls2 img {
    height: 50px;
    width: 50px;
}

/* --------------------------------------------------------------------------
   6. SCROLL TO TOP FLOATING BUTTON
   -------------------------------------------------------------------------- */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #ffb703 0%, #ff9500 100%);
    color: #0b1d33 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.85);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #0d2b4f 0%, #1a3e6b 100%);
    color: #ffb703 !important;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 20px rgba(13, 43, 79, 0.35);
}

.scroll-top-btn i {
    transition: transform 0.2s ease;
}

.scroll-top-btn:hover i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
}

/* --------------------------------------------------------------------------
   7. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {

    .menu-btn,
    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #0e284c;
        padding: 20px;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        color: #fff !important;
        width: 100%;
    }

    .dropdown,
    .sub-menu {
        position: static;
        box-shadow: none;
        background: #07172e;
        width: 100%;
    }

    .footer-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .footer-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .breadcrumb-title {
        font-size: 35px !important;
    }

    .vs-breadcrumb {
        padding: 40px 15px !important;
    }
}

/* ==========================================================================
   GLOBAL MOBILE & TABLET RESPONSIVENESS ENHANCEMENTS
   ========================================================================== */
html,
body {
    max-width: 100vw;
    overflow-x: hidden !important;
}

img,
iframe,
video {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-header,
    .header-area {
        padding: 10px 15px !important;
    }

    .sidebar-area {
        margin-top: 35px;
        width: 100%;
    }

    .blog-details-area .col-lg-8,
    .blog-details-area .col-lg-4 {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .sec-title,
    h2.sec-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .calls {
        left: 10px !important;
        bottom: 10px !important;
    }

    .wats2 {
        right: 10px !important;
        bottom: 10px !important;
    }

    .wats2 img,
    .calls img {
        width: 60px !important;
        height: 60px !important;
    }

    .faq-cta-banner {
        padding: 40px 0 !important;
    }

    .paris-disney-cta-card {
        padding: 30px !important;
    }
}

@media (max-width: 480px) {

    .sec-title,
    h2.sec-title {
        font-size: 25px !important;
    }


    .blog-main-content-area h1 {
        font-size: 22px !important;
    }
}