/* ===========================
   Table of Content
   ===========================
   1. Global Reset
   2. Navbar (Desktop)
   3. Dropdown Menu
   4. Offcanvas Menu (Mobile)
   5. Responsive Styles
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Qwigley&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');



/* 1. Global Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 12px;
}

a {
    text-decoration: none;
}

body,
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.main_wraP {
    overflow: hidden;
}

/* Top Header */
.top-header {
    background: darkseagreen;
    color: #000000;
    font-weight: 500;
    font-size: 15px;
    font-weight: 500;
}


/* INNER LAYOUT */
.top-header-inner {
    max-width: 1000px;
    margin: auto;
    display: flex;
    padding: 5px;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE */
.top-header-left {
    width: 35%;
    display: flex;
    flex-direction: column;
}

.top-header-left .contact-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.top-header-left i {
    color: #000000;
    font-weight: 500;
    font-size: 13px;
}

/* RIGHT SIDE */
.top-header-right {
    width: 60%;
    overflow: hidden;
    text-align: right;
}

.top-header-right marquee {
    color: #000000;
    font-weight: 500;
    white-space: nowrap;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .top-header-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    @media (max-width: 991px) {
        .top-header-left {
            opacity: 0;
            visibility: hidden;
            height: 0;
            overflow: hidden;
        }
    }

    .top-header-left,
    .top-header-right {
        width: 100%;
        align-items: center;
        text-align: center;
    }

}

.offcanvas-body {
    background-color: #fff7f7dd;
}


/* Top Header Exit*/


/* Navbar Start */
.navbar-brand img {
    height: 80px;
    width: 120px;
}

@media (max-width:768px) {
    .navbar-brand img {
        height: 60px;
        width: 120px;
    }
}

.navbar {
    width: 100%;
    height: 80px;
    transition: all 0.3s ease;
    z-index: 1050;
    background: #fff !important;
    font-weight: 500;
}

/* Fixed style when scrolling */
.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.247);
    background-color: #fff;
}

/* Nav Container Wrapper - max width 1000px */
.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

/* Nav Links */
.navbar-nav {
    display: flex;
    /* align-items: center; */
}

/* Add vertical dividers between links */
/* .navbar-nav .nav-item:not(:last-child) {
    border-right: 2px solid #000000;
    margin-right: 15px;
    padding-right: 15px;
} */

.navbar-nav .nav-link {
    color: #CD3436 !important;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #000000 !important;
}

/* ===== BUTTONS ===== */
.navbar-btns .btn {
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 700;
}

.btn-outline-primary {
    border: 2px solid #CD3436;
    color: #CD3436;
}

.btn-outline-primary:hover {
    background-color: #ECE8DC;
    border: 1px solid #ECE8DC;
    color: #000000;
}

/* ===== OFFCANVAS ===== */
.offcanvas-start {
    width: 280px;
}

.offcanvas-contact {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.offcanvas-contact p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #000000;
}

.offcanvas-contact i.bi {
    font-size: 16px;
    margin-right: 5px;
}

/* Responsive dropdown fix */
@media (max-width: 992px) {
    .navbar-btns {
        justify-content: center;
        width: 100%;
        margin-top: 15px;
    }




    .navbar-btns .btn {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        font-size: 16px;
        border-radius: 10px;
    }
}

/* ===== Escape Essence Dropdown ===== */
.escape-essence {
    position: relative;
}

.Escape-Essence-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    background: rgba(255, 255, 250, 0.95);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 8px 0;
    list-style: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.699);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s ease;
    z-index: 999;
}

/* Menu items */
.Escape-Essence-menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #000000;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.25s ease;
    border-radius: 6px;
}

.Escape-Essence-menu li a:hover {
    background: #ECE8DC;
    color: #CD3436;
    transform: translateX(6px);
    font-weight: 500;
}

/* Desktop hover */
@media (hover: hover) {
    .escape-essence:hover .Escape-Essence-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile click mode */
.escape-essence.open .Escape-Essence-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: static;
    box-shadow: none;
}

/* Navbar End */




/* hero-carousel-section  */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

/* Slides */
.hc-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hc-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Overlay */
.hc-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 46%);
}

/* Content */
.hc-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hc-content h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    max-width: 900px;
    line-height: 1.3;
    animation: fadeUp 1.2s ease;
}

/* Arrows */
.hc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 3;
}

.hc-prev {
    left: 30px;
}

.hc-next {
    right: 30px;
}

/* Dots */
.hc-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.hc-dot {
    width: 35px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.hc-dot.active {
    background: #fff;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-carousel {
        height: 50vh;
    }

    .hc-content h1 {
        font-size: 24px;
        padding: 35px;
    }

    .hc-arrow {
        font-size: 30px;
    }
}

/* hero-carousel-section EXIT */


/* About Us Section */

.about-modern {
    padding: 60px 20px;
    background: #f9f9f9;
    font-family: Arial, sans-serif;
}

.about-wrap {
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.about-heading {
    text-align: center;
    margin-bottom: 40px;
}

.about-heading h2 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.about-heading h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ff4c60;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

/* Content Layout */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Image Section */
.about-image {
    flex: 1;
}

.image-bg {
    position: relative;
    background: #CC3436;
    padding: 0 5px 5px 0;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}


.image-bg img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 2;
}

/* Text Section */
.about-text {
    flex: 1;
}

.about-text p {
    text-align: left;
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 20px;
}

.about-text ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.about-text ul li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #013f72;
    font-weight: 500;
}

/* Button */
.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff4c60;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.about-btn:hover {
    background: #e43a4d;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .about-content {
        flex-direction: column;
    }

    .about-text {
        text-align: center;
    }

    .about-text ul {
        text-align: left;
        display: inline-block;
    }

    .image-bg {
        padding: 0 5px 5px 0;
    }

    .about-text p {
        font-size: 13px;
    }

    .image-bg img {
        width: 100%;
        height: 300px;
        border-radius: 8px;
        display: block;
        position: relative;
        z-index: 2;
    }
}

/* About Us Section Exit */



/* affiliation-section */
.footer-affiliation {
    background-color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    border-top: 2px solid #000;
    padding: 20px 0;
}

/* Flex wrapper: text left, logos right */
.footer-affiliation-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0px 100px;
}

/* Heading */
.footer-affiliation-flex h4 {
    flex: 1;
    color: #000000;
    font-size: 25px;
    font-weight: 600;
    font-family: "Dancing Script", cursive;
    margin: 0;
    text-align: left;
}

/* Logos container */
.footer-affiliation-logos {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 8px;
    background-color: #fff;
}

/* Each logo image */
.footer-affiliation-logos img {
    max-height: 80px;
    width: auto;
    transition: 0.3s ease;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-affiliation-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Each logo wrapper (flex center) */
.footer-affiliation-logos .aff-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile: text below logos, 2 logos per row */
/* Mobile View Fix */
@media (max-width: 768px) {

    .footer-affiliation-flex {
        flex-direction: column;
        text-align: center;
        padding: 20px 20px;
        gap: 0px;
    }

    /* Heading comes first */
    .footer-affiliation-flex h4 {
        order: 1;
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
        font-size: 22px;
    }

    /* Logos container */
    .footer-affiliation-logos {
        order: 2;
        width: 70%;
        justify-content: left;
        gap: 20px;
    }

    /* 2 logos per row */
    .footer-affiliation-logos .aff-logo {
        grid-template: repeat(2, 1fr) !important;
        display: flex;
        justify-content: center;

    }

    /* Smaller logos */
    .footer-affiliation-logos img {
        max-height: 60px;
    }

}


/* affiliation-section-End */



/* tour-section */
.tour-section {
    padding: 70px 20px;
    background: #f9f9f9;
}

.tour-wrapper {
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.tour-heading {
    text-align: center;
    margin-bottom: 50px;
}

.tour-heading h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 10px;
}

.tour-heading span {
    width: 80px;
    height: 4px;
    background: #ff7a00;
    display: block;
    margin: auto;
    border-radius: 2px;
}

/* Card Grid */
.tour-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image */
.tour-img {
    overflow: hidden;
}

.tour-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover img {
    transform: scale(1.1);
}

/* Content */
.tour-info {
    padding: 20px;
}

.tour-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.tour-info p {
    font-size: 12px;
    color: #000000;
    line-height: 1.6;
}

.know-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #013F72;
    /* Your primary color */
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.know-more-btn:hover {
    background-color: #0256a1;
}


/* Responsive */
@media (max-width: 992px) {
    .tour-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tour-card-grid {
        grid-template-columns: 1fr;
    }

    .tour-heading h2 {
        font-size: 28px;
    }
}

/* tour-section-Exit */



/* Tour Packages Section */
.tour-packages-section {
    background-color: #0780c6;
    /* section background */
    padding: 50px 20px;
    color: #fff;
}

.tour-packages-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.tour-packages-images img {
    width: 150px;
    height: 220px;
    border: 2px solid #CD3436;
    border-radius: 50% / 10%;
    object-fit: cover;
    margin-right: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* smooth transition */
}

/* Hover effect */
.tour-packages-images img:hover {
    transform: scale(1.05);
    /* slightly enlarge */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    /* add shadow */
    border-color: #FF0000;
    /* optional: change border color on hover */
}




.tour-packages-text {
    max-width: 500px;
}

.explore-text {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.tour-packages-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.package-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.package-buttons button {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.package-buttons button:hover {
    background-color: #fff;
    color: #0780c6;
}

.call-now {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-btn {
    text-decoration: none;
    background-color: #111;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background-color: #333;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .tour-packages-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tour-packages-images img {
        margin: 10px;
    }

    .tour-packages-text {
        max-width: 100%;
    }
}



/* Tour Packages Section-Exit */



/* why-choose-us */
.choose-us-section {
    background: #fff4f4;
    padding: 60px 0;
}

/* Section Container */
.choose-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left side text */
.fw-semibold {
    color: #000;
    font-size: 16px;
}

.choose-btn {
    background-color: #001117;
    color: #fff;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.choose-btn:hover {
    border: 3px solid #001117;
}

/* Stats Right Side */
.choose-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item_box {
    flex: 1 1 calc(50% - 10px);
    /* 2 per row */
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* hover effect */
}

/* Hover Effect */
.stat-item_box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.stat-item_box .icon {
    font-size: 28px;
    color: #001117;
    margin-bottom: 10px;
}

/* Images (if used) */
.choose-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.choose-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.choose-img-wrapper:hover .choose-img {
    transform: scale(1.03);
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background 0.4s ease;
}

.overlay-content:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .choose-stats {
        gap: 15px;
    }

    .stat-item_box {
        flex: 1 1 calc(50% - 10px);
        /* 2 per row even on mobile */
    }

    .fw-semibold {
        font-size: 18px;
        margin-top: 8px;
    }
}

@media (max-width: 500px) {
    .fw-semibold {
        font-size: 16px;
    }
}

/* Why-choose-us-exit */


/* travel-categories-section */
.travel-categories-section {
    background: #f9f9f9;
    /* soft background for section */
    padding: 60px 0;
}

/* Section Container */
.travel-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Category Cards */
.category-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    margin: 0 auto;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

/* Card Hover Effect */
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.catagory_row {
    padding: 0 25px;
}

/* Category Title with Gradient */
.category-title {
    background: linear-gradient(135deg, #0989BD, #0670A1);
    color: white;
    padding: 12px 10px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: background 0.3s ease;
    letter-spacing: 0.5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.category-card:hover .category-title {
    background: linear-gradient(135deg, #0670A1, #045A85);
    /* slightly darker on hover */
}

/* Responsive Grid */
@media (max-width: 992px) {
    .travel-categories-section .col-lg-3 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 768px) {
    .travel-categories-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 500px) {
    .travel-categories-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .category-card img {
        height: 150px;
        /* smaller image on mobile */
    }
}

/* travel-categories-section-Exit */



/* Customer_section */
.customer-section .hero-banner {
    background-color: #02688e;
    color: white;
    position: relative;
}

.customer-section .hero-banner .hero-images {
    position: relative;
    display: inline-block;
}

.customer-section .hero-banner .img1,
.customer-section .hero-banner .img2 {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
}

.customer-section .hero-banner .img1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.customer-section .hero-banner .img2 {
    position: absolute;
    top: 0;
    left: 70px;
    z-index: 1;
}

.customer-section .travel-stats {
    background: #fdf6f0;
}

.customer-section .stat-box {
    height: 100%;
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.customer-section .stat-box:hover {
    transform: translateY(-5px);
}

.customer-section .stat-box .icon {
    font-size: 40px;
    color: #02688e;
    margin-bottom: 10px;
}

.customer-section .stat-box h4 {
    font-weight: bold;
    color: #222;
}

.customer-section .stat-box p {
    margin: 0;
    color: #000000;
}

@media (max-width: 500px) {
    .customer-section .travel-stats .col-md-3 {
        margin-bottom: 25px;
        width: 50%;
    }
}

/* Customer_section End */


/* Customer Counter Section */
.customer-counter-section {
    background: #fdf6f0;
}

.customer-counter-section .counter-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 150px;
    margin: 0 30px;
}

.customer-counter-section .counter-box:hover {
    transform: translateY(-6px);
}

.customer-counter-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #02688e;
    margin-bottom: 8px;
}

.customer-counter-section p {
    margin: 0;
    font-size: 14px;
    color: #000;
}

@media (max-width: 576px) {
    .customer-counter-section h2 {
        font-size: 32px;
    }
}

/* Counter Section End */



/* Reason To Choose Us Section */
.reason-choose-section .choose-us {
    background: #E8FFE9;
}

.reason-choose-section .highlight-text {
    font-weight: 700;
    font-size: 35px;
    color: #02688e;
}

/* Card */
.reason-choose-section .choose-card {
    background: #ffffff;
    padding: 25px 20px;
    text-align: center;
    border-radius: 12px;
    height: 100%;
    border: 2px solid #000;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-choose-section .choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.reason-choose-section .choose-card img {
    height: 88px;
    width: 90px;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.reason-choose-section .choose-card:hover img {
    animation: swingRotate 0.6s ease-in-out infinite alternate;
}

.reason-choose-section .choose-card p {
    font-weight: 600;
    margin: 0;
    font-size: 16px;
}

/* Tablet View */
@media (max-width: 991px) {
    .reason-choose-section .highlight-text {
        font-size: 30px;
    }

    .reason-choose-section .choose-card {
        padding: 22px 18px;
    }

    .reason-choose-section .choose-card img {
        height: 75px;
        width: 75px;
    }

    .reason-choose-section .choose-card p {
        font-size: 15px;
    }

    .reason-choose-section .row>div {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .reason-choose-section .row>div {
        flex: 0 0 50%;
        max-width: 50%;
    }


}

/* Mobile View */
@media (max-width: 575px) {
    .reason-choose-section .highlight-text {
        font-size: 24px;
    }

    .reason-choose-section .choose-card {
        padding: 20px 15px;
    }

    .reason-choose-section .choose-card img {
        height: 65px;
        width: 65px;
    }

    .reason-choose-section .choose-card p {
        font-size: 14px;
    }
}

/* Animation */
@keyframes swingRotate {
    from {
        transform: rotate(-10deg) scale(1.05);
    }

    to {
        transform: rotate(10deg) scale(1.05);
    }
}

/* Reason To Choose Us Section End */


/* Breadcrumb V2 */
.custom-breadcrumb-v2 {
    position: relative;
    background-image: url("./image/Breadcrumb.webp");
    /* change image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 15px;
    color: #fff;
    overflow: hidden;
}

.custom-breadcrumb-v2 .breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.45));
    z-index: 1;
}

.custom-breadcrumb-v2 .breadcrumb-inner {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: auto;
    text-align: center;
}

.custom-breadcrumb-v2 .page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.custom-breadcrumb-v2 .breadcrumb-list {
    list-style: none;
    padding: 10px 22px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 50px;
    font-size: 15px;
}

.custom-breadcrumb-v2 .breadcrumb-list li {
    color: #fff;
}

.custom-breadcrumb-v2 .breadcrumb-list a {
    color: #F87B43;
    text-decoration: none;
    font-weight: 600;
}

.custom-breadcrumb-v2 .breadcrumb-list a:hover {
    text-decoration: underline;
}

.custom-breadcrumb-v2 .breadcrumb-list .separator {
    opacity: 0.7;
}

.custom-breadcrumb-v2 .breadcrumb-list .active {
    font-weight: 600;
    color: #ffffff;
}

/* Tablet */
@media (max-width: 768px) {
    .custom-breadcrumb-v2 {
        padding: 70px 15px;
    }

    .custom-breadcrumb-v2 .page-title {
        font-size: 30px;
    }

    .custom-breadcrumb-v2 .breadcrumb-list {
        font-size: 14px;
        padding: 8px 18px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .custom-breadcrumb-v2 .page-title {
        font-size: 24px;
    }

    .custom-breadcrumb-v2 .breadcrumb-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
}

/* Breadcrumb V2 End */





/* inc-exc-section */
.inc-exc-section {
    padding: 60px 20px;
    background: #ffffff;
}

.inc-exc-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.inc-exc-box {
    background: #fff;
}

.inc-exc-title {
    font-size: 22px;
    color: #CD3436;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 2px solid #CD3436;
    padding-bottom: 6px;
}

.inc-exc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inc-exc-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #000;
}

/* Diamond bullet */
.inc-exc-list li::before {
    content: "❖";
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .inc-exc-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .inc-exc-title {
        font-size: 20px;
    }

    .inc-exc-list li {
        font-size: 13px;

    }
}

/* inc-exc-section-End */




/* Escape Essence Contact Section */
.ee-contact-section {
    position: relative;
    padding: 80px 20px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("./image/contact.jpg");
    /* change image path if needed */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* parallax feel */
}

.ee-container {
    max-width: 1200px;
    margin: auto;
}

.ee-section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.ee-section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ee-section-heading h2,
.ee-section-heading p {
    color: #ffffff;
}

.ee-section-heading p {
    color: #ffffff;
    font-size: 16px;
}

/* Grid */
.ee-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Left Info */
.ee-contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ee-contact-info h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.ee-contact-info p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #000000;
}

/* Map */
.ee-map-box {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ee-map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .ee-contact-grid {
        grid-template-columns: 1fr;
    }

    .ee-section-heading h2 {
        font-size: 26px;
    }
}

/* contact-section-End */




/* Custom Gallery Section */
.custom-gallery-section {
    padding: 60px 15px;
    background: #fdf6f0;
}

.custom-gallery-section .gallery-container {
    max-width: 1140px;
    margin: auto;
}

.custom-gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Desktop: 4 per row */
    gap: 20px;
}

.custom-gallery-section .gallery-item {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.custom-gallery-section .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.custom-gallery-section .gallery-item:hover img {
    transform: scale(1.08);
}

/* Tablet & Mobile: 2 per row */
@media (max-width: 991px) {
    .custom-gallery-section .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .custom-gallery-section .gallery-item img {
        height: 180px;
    }
}

/* Modal (Big Image View) */
.custom-gallery-section~.gallery-modal {
    display: none;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-modal-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.gallery-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

.gallery-btn {
    display: block;
    margin: 20px auto;
    padding: 6px 14px;
    /* smaller padding */
    font-size: 14px;
    /* smaller text */
    background: #41A362;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    /* slightly smaller corners */
    width: fit-content;
}

.gallery-btn:hover {
    background: #2f8a55;
}


/* Custom Gallery Section End */



/* Tour Inner Page */
.tour-inner-page {
    padding: 70px 20px;
    background: linear-gradient(180deg, #f9fbff, #eef3ff);
}

.tour-inner-container {
    max-width: 1200px;
    margin: auto;
}

.tour-day-row {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 70px;
}

.tour-day-row.reverse {
    flex-direction: row-reverse;
}

.tour-day-text {
    flex: 1;
    background: #f9fcff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tour-day-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1f3c88;
}

.tour-day-text p {
    font-size: 13px;
    line-height: 1.7;
    color: #000000;
}

.tour-day-image {
    flex: 1;
}

.tour-day-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.tour-day-image img:hover {
    transform: scale(1.05);
}



@media (max-width: 991px) {

    .tour-day-row,
    .tour-day-row.reverse {
        flex-direction: column;
    }

}

/* Tour Inner Page End*/


/* Pricing Section Wrapper */
.luxury-pricing-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fc, #eef1f7);
    font-family: 'Inter', sans-serif;
}

/* Container */
.luxury-pricing-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Title */
.luxury-pricing-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

/* Subtitle */
.luxury-pricing-subtitle {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 45px;
}

/* Table Wrapper */
.luxury-pricing-table-wrapper {
    overflow-x: auto;
}

/* Table */
.luxury-pricing-table {
    width: 100%;
    max-width: 950px;
    margin: auto;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    min-width: 750px;
}

/* Header */
.luxury-pricing-table thead {
    background: linear-gradient(135deg, #440d0e, #3b0b0c);
}

.luxury-pricing-table th {
    color: #ffffff;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Body Cells */
.luxury-pricing-table td {
    padding: 15px;
    font-size: 14px;
    color: #000000;
    border-bottom: 1px solid #e5e7eb;
}

/* Pax Column */
.luxury-pricing-table td:first-child {
    font-weight: 700;
    background-color: #f8fafc;
}

/* Hover Effect */
.luxury-pricing-table tbody tr {
    transition: all 0.3s ease;
}

.luxury-pricing-table tbody tr:hover {
    background-color: #f1f5f9;
    transform: scale(1.01);
}

/* Last Row Border Fix */
.luxury-pricing-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .luxury-pricing-title {
        font-size: 2rem;
    }

    .luxury-pricing-table th,
    .luxury-pricing-table td {
        font-size: 13px;
        padding: 12px;
    }
}

/* Pricing Section Wrapper End*/



/* Pricing Notes */
.luxury-pricing-notes {
    max-width: 950px;
    margin: 35px auto 0;
    padding: 20px 25px;
    background: #f8fafc;
    border-left: 5px solid #CD3436;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
}

/* Text Styling */
.luxury-pricing-notes p {
    font-size: 14px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Last line spacing fix */
.luxury-pricing-notes p:last-child {
    margin-bottom: 0;
}

/* Highlight */
.luxury-pricing-notes strong {
    color: #0f172a;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .luxury-pricing-notes {
        padding: 18px;
    }

    .luxury-pricing-notes p {
        font-size: 13px;
    }
}

/* Pricing Notes End*/







/* Europe Section Styling */
#europe-section {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.europe-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
}

.cards-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tour-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #a30003;
}

.card-content p {
    font-size: 16px;
    color: #000000;
}

.card-content span {
    font-weight: 500;
    color: #B03235;
}

.card-btn {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    background-color: #1d4ed8;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    margin: 15px 20px 20px 20px;
    transition: background-color 0.3s ease;
}

.card-btn:hover {
    background-color: #2563eb;



}

/* Cities Covered Section Styling */
.cities-covered {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.cities-covered h3,
.cities-covered h4,
.cities-covered p {
    color: #000000;
}

.cities-covered h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cities-covered h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
}

.cities-covered p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.cities-covered ul {
    list-style-type: disc;
    padding-left: 25px;
    color: #000000;
}

.cities-covered ul li {
    margin-bottom: 8px;
    font-size: 15.5px;
    color: #000;
    line-height: 1.6;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Optional hover effect on list items */
.cities-covered ul li:hover {
    transform: translateX(5px);
    color: #1d4ed8;
    /* change color on hover */
}




/* Inner Europe Section */
#inner-europe {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.inner-europe-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

/* Cities Covered Section */
.cities-covered {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.cities-covered h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cities-covered p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.cities-covered ul {
    list-style: disc;
    padding-left: 20px;
    color: #555;
}

.cities-covered ul li {
    margin-bottom: 8px;
}

/* Itinerary */
.itinerary {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.itinerary-day {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.itinerary-day.reverse {
    flex-direction: row-reverse;
}

.day-text {
    flex: 1;
    min-width: 280px;
    box-sizing: border-box;
    /* ensures padding/border don't break layout */
    background-color: #f9fcff;
    /* light blue background */
    padding: 20px;
    /* inner spacing */
    border-radius: 12px;
    /* rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* optional subtle shadow */
}



.day-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f3c88;
}

.day-text ul {
    list-style: disc;
    padding-left: 20px;
    color: #000000;
}

.day-text ul li {
    margin-bottom: 6px;
}

.day-img {
    flex: 1;
    min-width: 280px;
    overflow: hidden;
    border-radius: 12px;
}

.day-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.day-img img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {

    .itinerary-day,
    .itinerary-day.reverse {
        flex-direction: column;
    }

    .day-img img {
        height: 200px;
    }
}









.footer {
    background: #065191;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding-top: 50px;
}

/* ===============================
   FOOTER COLUMNS
================================= */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    max-width: 1330px;
    margin: auto;
}

.footer-column {
    flex: 1 1 220px;
    min-width: 220px;
}

/* Column 1: About + Logo + Social */
.footer-column.about-column .footer-logo {
    width: 150px;
    height: 100px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.footer-column.about-column .about-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Footer Links Style */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
    position: relative;
}


/* Footer Column Titles */
.footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    color: #FFF200;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

/* Underline */
.footer-column h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 40px;
    /* length of underline */
    background-color: #FFF200;
    border-radius: 2px;
}

/* Optional: Smooth transition on hover */
.footer-column h4:hover::after {
    width: 60px;
    /* underline extends slightly on hover */
    transition: width 0.3s ease;
}


.footer-links li::before {
    content: "➢ ";
    color: #FFF200;
    margin-right: 5px;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #4a90e2;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #fff;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #4a90e2;
    color: #fff;
    transform: translateY(-3px);
}



/* ===============================
   FOOTER BOTTOM
================================= */
.footer-bottom {
    background: #065191;
    text-align: center;
    padding: 15px 20px;
    /* margin-top: 40px; */
    border-top: 2px solid #000000;
    color: #ffffff;
    font-size: 13px;
}

/* ===============================
   FLOAT BUTTONS
================================= */
.call-float,
.whatsapp-float {
    position: fixed;
    right: 0;
    width: 48px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    z-index: 999;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.call-float {
    bottom: 170px;
    background: #0a58ca;
    box-shadow: -4px 8px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float {
    bottom: 250px;
    background: #25d366;
    box-shadow: -4px 8px 20px rgba(0, 0, 0, 0.25);
}

.call-float::before,
.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    animation: shimmer 4.5s ease-in-out infinite;
}

.call-float:hover::before,
.whatsapp-float:hover::before {
    animation-play-state: paused;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.call-float i,
.whatsapp-float i {
    position: relative;
    z-index: 2;
    animation: iconTilt 3.8s ease-in-out infinite;
}

.call-float:hover i,
.whatsapp-float:hover i {
    animation-play-state: paused;
}

@keyframes iconTilt {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.call-float::after,
.whatsapp-float::after {
    content: attr(data-label);
    position: absolute;
    right: 48px;
    padding: 10px 14px;
    white-space: nowrap;
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.35s ease;
    font-size: 0.85rem;
    color: #fff;
}

.call-float::after {
    background: #0a58ca;
}

.whatsapp-float::after {
    background: #25d366;
}

.call-float:hover::after,
.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ===============================
   BACK TO TOP BUTTON
================================= */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #00008B;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 999;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.back-to-top i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px) rotate(-15deg);
}

.back-to-top::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid #00f2fe;
    animation: pulseBorder 2s ease-in-out infinite;
}

@keyframes pulseBorder {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

.back-to-top:hover {
    transform: scale(1.1);
}

/* ===============================
   RESPONSIVE FOOTER
================================= */
@media (max-width: 992px) {
    .footer-top {
        justify-content: center;
        text-align: center;
    }

    .footer-column {
        flex: 1 1 45%;
        margin-bottom: 25px;
    }

    .footer-social {
        display: flex;
        gap: 12px;
        margin-top: 10px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        align-items: left;
        text-align: left;
        text-align: left;
    }

    .footer-column {
        flex: 1 1 100%;
        text-align: left;
    }

    .footer-column.about-column .about-text {
        text-align: left;
    }

    .footer-social {
        justify-content: left;
    }

    .footer-column h4 {
        text-align: left !important;
    }
}