/*Open mobile view and see which element touches outside the screen. Remove after finding it.*/
/** {
            outline: 1px solid red;
        }*/

:root {
    --primary: #0B2E6B;
    --secondary: #FFC107;
    --danger: #FF4D4D;
    --success: #4CAF50;
    --info: #3FA9F5;
    --light: #F8F9FA;
    --dark: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
}

a {
    text-decoration: none;
}

section {
    padding: 80px 0;
}

/*==========================
            LOADER (1. Bigger Font Awesome Icon)
        ==========================*/
#loader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader-icon {
    font-size: 90px;
    color: var(--primary);
    animation: loaderBounce 1s infinite;
}

    .loader-icon .fa-puzzle-piece {
        color: var(--secondary);
    }

@keyframes loaderBounce {
    50% {
        transform: translateY(-22px) rotate(8deg);
    }
}

/*==========================
            NAVBAR
        ==========================*/
#mainNavbar {
    transition: .4s;
    padding: 15px 0;
    background: transparent;
}

    #mainNavbar.scrolled {
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

.logo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-title {
    color: var(--primary);
    line-height: 1;
}

.brand-subtitle {
    color: #666;
    font-size: 13px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    margin: 0 10px;
    color: #222;
    transition: .3s;
    position: relative;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--danger);
    }

        .navbar-nav .nav-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 3px;
            background: var(--secondary);
            border-radius: 10px;
        }

.navbar-toggler {
    font-size: 28px;
    color: var(--primary);
}

.btn-warning {
    background: linear-gradient(45deg, #FFC107, #ff9800);
    border: none;
    color: #fff;
    font-weight: 600;
}

/*.btn-warning:hover {
        transform: translateY(-3px);
    }*/

/*==========================
            MOBILE SIDEBAR
        ==========================*/
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: .4s;
    overflow: auto;
    padding: 25px;
    box-shadow: 0 0 40px rgba(0, 0, 0, .2);
}

    .mobile-sidebar.active {
        left: 0;
    }

.sidebar-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9998;
}

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.sidebar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
}

    .sidebar-header button {
        border: none;
        background: none;
        font-size: 26px;
        color: #333;
        position: absolute;
        right: 0;
        top: 0;
    }

.sidebar-menu {
    list-style: none;
    padding: 0;
}

    .sidebar-menu li {
        margin: 12px 0;
    }

    .sidebar-menu a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 14px;
        color: #333;
        border-radius: 10px;
        transition: .3s;
        font-weight: 600;
    }

        .sidebar-menu a:hover,
        .sidebar-menu a.active {
            background: var(--primary);
            color: #fff;
            transform: translateX(5px);
        }

.sidebar-address {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.6;
    font-size: 14px;
    color: #444;
}

    .sidebar-address i {
        color: var(--danger);
        margin-top: 4px;
    }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

    .social-icons a {
        width: 45px;
        height: 45px;
        background: var(--primary);
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        transition: .3s;
    }

        .social-icons a:hover {
            background: var(--danger);
            transform: translateY(-5px);
        }

@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }
}

/*==========================
            HERO SECTION
        ==========================*/
.hero-section {
    margin-top: 95px;
}

.hero-img {
    height: 90vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(11, 46, 107, .70), rgba(11, 46, 107, .45));
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
    max-width: 650px;
}

.hero-tag {
    background: #FFC107;
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.carousel-caption h1 {
    font-size: 65px;
    color: #fff;
    line-height: 1.1;
}

.carousel-caption p {
    font-size: 20px;
    color: #fff;
    margin-top: 20px;
}

.hero-btn {
    background: #FFC107;
    color: #000;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

    .hero-btn:hover {
        background: #fff;
        transform: translateY(-5px);
    }

.hero-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    transition: .3s;
    background: transparent;
}

    .hero-btn-outline:hover {
        background: #fff;
        color: #000;
    }

.carousel-item {
    position: relative;
}

@media (max-width: 768px) {
    .hero-img {
        height: 75vh;
    }

    .carousel-caption {
        text-align: center;
        left: 10%;
        right: 10%;
    }

        .carousel-caption h1 {
            font-size: 38px;
        }

        .carousel-caption p {
            font-size: 16px;
        }

    .hero-btn, .hero-btn-outline {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

/*==========================
            ABOUT SECTION (restored)
        ==========================*/
.about-section {
    background: #fff;
}

.about-image-box {
    position: relative;
}

.about-image {
    border-radius: 30px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.experience-box {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
}

    .experience-box h2 {
        color: #FFC107;
        font-size: 45px;
        margin: 0;
    }

    .experience-box p {
        margin: 0;
        font-weight: 600;
    }

.about-text {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 15px;
}

    .about-feature i {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--danger);
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
    }

    .about-feature h5 {
        margin: 0;
        color: var(--primary);
    }

    .about-feature p {
        margin: 0;
        font-size: 14px;
        color: #666;
    }

.about-btn {
    background: var(--primary);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
}

    .about-btn:hover {
        background: var(--danger);
        color: white;
    }

@media (max-width: 991px) {
    .about-image {
        height: 350px;
    }

    .experience-box {
        right: 10px;
    }
}

/*==========================
            CATEGORY SECTION (restored)
        ==========================*/
.category-section {
    background: #f8f9fa;
}

.category-card {
    background: #fff;
    padding: 30px 15px;
    text-align: center;
    border-radius: 25px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    transition: .4s;
    cursor: pointer;
}

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    }

.category-icon {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
}

.category-card h5 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 22px;
}

.category-card p {
    color: #777;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 576px) {
    .category-card {
        padding: 20px 10px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }

    .category-card h5 {
        font-size: 18px;
    }
}

/*==========================
            WHY CHOOSE US SECTION (restored)
        ==========================*/
.why-section {
    background: #f8f9fa;
}

.why-card {
    background: #fff;
    text-align: center;
    padding: 35px 20px;
    border-radius: 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .4s;
}

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    }

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: white;
    margin-bottom: 20px;
}

    .why-icon.yellow {
        background: #FFC107;
    }

    .why-icon.blue {
        background: #2196F3;
    }

    .why-icon.green {
        background: #4CAF50;
    }

    .why-icon.red {
        background: #FF4D4D;
    }

.why-card h4 {
    color: var(--primary);
    font-size: 24px;
}

.why-card p {
    color: #777;
    font-size: 14px;
}

.counter-box {
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 20px;
}

    .counter-box h2 {
        color: #FFC107;
        font-size: 45px;
        margin-bottom: 5px;
    }

    .counter-box p {
        margin: 0;
        font-weight: 600;
    }

@media (max-width: 768px) {
    .counter-box {
        margin-bottom: 20px;
    }
}

/*==========================
            SECTION HEADINGS (5. underline removed under span)
        ==========================*/
.section-tag {
    display: inline-block;
    background: #FFC107;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.section-title {
    font-size: 45px;
    color: var(--primary);
    line-height: 1.2;
}

    .section-title span {
        color: var(--danger);
        position: relative;
    }
/* NOTE: underline (::after) intentionally removed per request #5 */

@media (max-width: 991px) {
    .section-title {
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 32px;
    }
}

/*==========================
            OFFER / NEW ARRIVALS SECTION (kept)
        ==========================*/
.offer-section {
    background: #fff;
}

.offer-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0B2E6B, #3FA9F5);
    border-radius: 35px;
    padding: 60px;
    color: white;
}

    .offer-box::before {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        background: rgba(255, 255, 255, .1);
        border-radius: 50%;
        right: -80px;
        top: -80px;
    }

.offer-tag {
    display: inline-block;
    background: #FFC107;
    color: #222;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.offer-box h2 {
    font-size: 45px;
    line-height: 1.2;
    color: #fff;
}

.offer-box p {
    font-size: 17px;
    color: #eee;
    max-width: 600px;
    line-height: 1.8;
}

.offer-buttons {
    margin-top: 30px;
}

.offer-call {
    background: #25D366;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    margin-right: 10px;
    border: none;
}

    .offer-call:hover {
        background: #128C7E;
        color: white;
    }

.offer-store {
    background: #FFC107;
    color: #222;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
}

    .offer-store:hover {
        background: white;
        color: #222;
    }

.offer-toy {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #fff;
    color: #FF4D4D;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 80px;
    animation: floatToy 3s infinite ease-in-out;
}

@keyframes floatToy {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .offer-box {
        padding: 35px 20px;
        text-align: center;
    }

        .offer-box h2 {
            font-size: 32px;
        }

    .offer-buttons a, .offer-buttons button {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }
}

@media (max-width: 576px) {
    .offer-box h2 {
        font-size: 30px;
    }

    .offer-box p {
        font-size: 14px;
    }

    .offer-toy {
        width: 120px;
        height: 120px;
        font-size: 55px;
        margin-top: 30px;
    }
}

/*==========================
            GALLERY SECTION (8. click -> lightbox w/ prev-next)
        ==========================*/
.gallery-section {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    height: 280px;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

    .gallery-item:hover img {
        transform: scale(1.15);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 46, 107, .65);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .4s;
}

    .gallery-overlay i {
        width: 60px;
        height: 60px;
        background: #FFC107;
        color: #222;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 25px;
    }

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-item {
        height: 220px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 30, .92);
    z-index: 100000;
    display: none;
    justify-content: center;
    align-items: center;
}

    .lightbox.active {
        display: flex;
    }

.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

    .lightbox-img-wrap img {
        max-width: 90vw;
        max-height: 85vh;
        border-radius: 15px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
        display: block;
    }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    z-index:999;
}

    .lightbox-close:hover,
    .lightbox-prev:hover,
    .lightbox-next:hover {
        background: var(--secondary);
        color: #222;
    }

.lightbox-close {
    top: 25px;
    right: 25px;
}

.lightbox-prev {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(255, 255, 255, .15);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
}

@media (max-width: 576px) {
    .lightbox-prev, .lightbox-next, .lightbox-close {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/*==========================
            TESTIMONIAL SECTION (9. full width, no prev/next)
        ==========================*/
.testimonial-section {
    background: #fff;
}

.review-card {
    max-width: 100%;
    width: 100%;
    margin: auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#reviewSlider .carousel-inner {
    min-height: 340px;
}

.review-stars {
    color: #FFC107;
    font-size: 35px;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.review-card p {
    font-size: 19px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
}

.customer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.customer-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

.customer h5 {
    margin: 0;
    color: var(--primary);
}

.customer small {
    color: #777;
}

.review-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

    .review-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background: #ccc;
        padding: 0;
        transition: .3s;
    }

        .review-indicators button.active {
            background: var(--primary);
            width: 30px;
            border-radius: 10px;
        }

@media (max-width: 768px) {
    .review-card {
        padding: 30px 20px;
        min-height: 300px;
    }

    #reviewSlider .carousel-inner {
        min-height: 300px;
    }

    .review-stars {
        font-size: 25px;
    }

    .review-card p {
        font-size: 15px;
    }
}

/*==========================
            CONTACT SECTION (10. email added)
        ==========================*/
.contact-section {
    background: #f8f9fa;
}

/*=========================================
            CONTACT SECTION
=========================================*/

.contact-section {
    background: #f8f9fa;
}

.contact-card {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

    .contact-item:last-child {
        margin-bottom: 0;
    }

/* ICON */

.contact-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    min-height: 58px;
    max-width: 58px;
    max-height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    overflow: hidden;
}

/* CONTENT */

.contact-content {
    flex: 1;
    min-width: 0;
}

/* Phone & Email Links */
.contact-item a{
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    word-break: break-word;
}

.contact-item a:hover{
    color: var(--danger);
    text-decoration: underline;
}

    .contact-content h5 {
        color: var(--primary);
        margin: 0 0 8px;
        font-size: 24px;
        font-weight: 700;
    }

    .contact-content p,
    .contact-content a {
        display: block;
        margin: 0;
        color: #555;
        line-height: 1.7;
        font-size: 17px;
        text-decoration: none;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

        .contact-content a:hover {
            color: var(--primary);
        }

/* SOCIAL */

.contact-social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .contact-social a {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        transition: .3s;
    }

        .contact-social a:hover {
            background: var(--danger);
            transform: translateY(-4px);
        }

/* BUTTON */

.direction-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}



/*=========================================
            991px
=========================================*/

@media (max-width:991px) {

    .contact-card {
        padding: 28px;
    }

    .contact-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        min-height: 54px;
        max-width: 54px;
        max-height: 54px;
        flex: 0 0 54px;
        font-size: 20px;
    }

    .contact-content h5 {
        font-size: 21px;
    }

    .contact-content p,
    .contact-content a {
        font-size: 16px;
    }
}



/*=========================================
            575px
=========================================*/

@media (max-width:575px) {

    .contact-card {
        padding: 20px;
        border-radius: 20px;
    }

    .contact-item {
        gap: 14px;
        margin-bottom: 22px;
    }

    .contact-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        min-height: 46px;
        max-width: 46px;
        max-height: 46px;
        flex: 0 0 46px;
        font-size: 18px;
    }

    .contact-content h5 {
        font-size: 18px;
    }

    .contact-content p,
    .contact-content a {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-social a {
        width: 40px;
        height: 40px;
    }
}



/*=========================================
            320px
=========================================*/

@media (max-width:320px) {

    .contact-card {
        padding: 16px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
        flex: 0 0 40px;
        font-size: 16px;
    }

    .contact-content h5 {
        font-size: 16px;
    }

    .contact-content p,
    .contact-content a {
        font-size: 13px;
    }

    .contact-social a {
        width: 36px;
        height: 36px;
    }
}

.direction-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
}

    .direction-btn:hover {
        background: var(--danger);
        color: white;
    }

.map-box {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

    .map-box iframe {
        display: block;
    }

@media (max-width: 768px) {
    .contact-card {
        padding: 25px;
    }

    .map-box iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 20px 16px;
    }

    .contact-item {
        gap: 12px;
        margin-bottom: 22px;
    }

    .contact-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

/*==========================
            CALL / WHATSAPP POPUP MODALS (2,3,4,13)
        ==========================*/
.phone-popup .modal-content {
    border-radius: 25px;
    border: none;
    overflow: hidden;
}

.phone-popup .modal-header {
    border: none;
    padding: 22px 25px 5px;
}

.phone-popup .modal-title {
    font-size: 20px;
    color: var(--primary);
}

.phone-popup .modal-body {
    padding: 10px 25px 30px;
}

.phone-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #f8f9fa;
    margin-bottom: 14px;
    font-weight: 600;
    color: #222;
    transition: .3s;
}

    .phone-option:last-child {
        margin-bottom: 0;
    }

    .phone-option:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    }

    .phone-option.call-option {
        color: #222;
    }

        .phone-option.call-option:hover {
            background: var(--primary);
            color: #fff;
        }

    .phone-option.whatsapp-option:hover {
        background: #25D366;
        color: #fff;
    }

    .phone-option .phone-icon {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 19px;
        flex-shrink: 0;
        color: #fff;
    }

.call-option .phone-icon {
    background: var(--primary);
}

.whatsapp-option .phone-icon {
    background: #25D366;
}

.phone-option small {
    display: block;
    font-weight: 400;
    color: #888;
    font-size: 12px;
}

.whatsapp-option:hover small {
    color: #eafff1;
}

.call-option:hover small {
    color: #dce6ff;
}

/*==========================
            FLOATING BUTTONS
        ==========================*/
.floating-whatsapp, .floating-call, .floating-google {
    position: fixed;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
    transition: .3s;
    border: none;
    cursor: pointer;
}

.floating-google {
    bottom: 170px;
    background: #fff;
    color: #4285F4;
    font-size: 26px;
}

    .floating-google:hover {
        background: #4285F4;
        color: #fff;
        transform: scale(1.1);
    }

.floating-whatsapp {
    bottom: 100px;
    background: #25D366;
}

    .floating-whatsapp:hover {
        background: #128C7E;
        transform: scale(1.1);
        color: white;
    }

.floating-call {
    bottom: 30px;
    background: #0B2E6B;
}

    .floating-call:hover {
        background: #FF4D4D;
        transform: scale(1.1);
        color: white;
    }

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 25px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #FFC107;
    color: #222;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

    .scroll-top:hover {
        background: #0B2E6B;
        color: white;
    }

        .scroll-top:hover i {
            transform: rotate(360deg);
            transition: .5s;
        }

@media (max-width: 576px) {
    .floating-whatsapp, .floating-call, .floating-google {
        width: 55px;
        height: 55px;
        right: 15px;
        font-size: 24px;
    }

    .floating-google {
        bottom: 155px;
        font-size: 22px;
    }

    .floating-whatsapp {
        bottom: 90px;
    }

    .floating-call {
        bottom: 25px;
    }

    .scroll-top {
        left: 15px;
    }
}

/* WhatsApp Bounce */
.floating-whatsapp {
    animation: whatsappBounce 2s infinite;
}

@keyframes whatsappBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/*==========================
            FOOTER (11. simplified)
        ==========================*/
.footer-section {
    background: #081f4d;
    color: #ddd;
    padding: 70px 0 25px;
}

.footer-brand h3 {
    color: #fff;
}

.footer-brand p {
    line-height: 1.8;
    color: #ccc;
}

.footer-title {
    color: #FFC107;
    margin-bottom: 25px;
    font-size: 22px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        background: #fff;
        color: #081f4d;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .3s;
    }

        .footer-social a:hover {
            background: #FFC107;
            transform: translateY(-5px);
        }

.footer-contact {
    list-style: none;
    padding: 0;
}

    .footer-contact li {
        display: flex;
        gap: 12px;
        margin-bottom: 15px;
        color: #ddd;
    }

    .footer-contact i {
        color: #FFC107;
        margin-top: 5px;
    }

    .footer-contact a {
        color: #ddd;
        transition: .3s;
    }

        .footer-contact a:hover {
            color: #FFC107;
        }

.footer-section hr {
    border-color: rgba(255, 255, 255, .2);
    margin: 40px 0 20px;
}

.footer-bottom {
    color: #aaa;
}

    /* 12. Powered by hover effect */
    .footer-bottom a {
        color: #FFC107;
        font-weight: 600;
        transition: .3s;
        border-bottom: 1px solid transparent;
    }

        .footer-bottom a:hover {
            color: #fff;
            border-bottom: 1px solid #fff;
        }

@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }
}

/*==========================
            GENERAL ANIMATIONS
        ==========================*/
#mainNavbar {
    animation: navSlide .8s ease;
}

@keyframes navSlide {
    from {
        transform: translateY(-100px);
    }

    to {
        transform: translateY(0);
    }
}

.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-btn, .offer-call, .offer-store, .direction-btn {
    position: relative;
    overflow: hidden;
}

    .hero-btn::before, .offer-call::before, .offer-store::before, .direction-btn::before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, .4);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .5s;
    }

    .hero-btn:hover::before, .offer-call:hover::before, .offer-store:hover::before, .direction-btn:hover::before {
        width: 300px;
        height: 300px;
    }

.gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
    transition: .7s;
}

.gallery-item:hover::after {
    left: 130%;
}

/*==========================
            RESPONSIVE FIXES
        ==========================*/
@media (max-width: 991px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        margin-top: 80px;
    }

    .carousel-caption h1 {
        font-size: 45px;
    }

    .carousel-caption p {
        font-size: 17px;
    }

    .navbar-brand .brand-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    body {
        overflow-x: hidden;
    }

    section {
        padding: 50px 0;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .brand-title {
        font-size: 20px;
    }

    .brand-subtitle {
        font-size: 10px;
    }

    .hero-img {
        height: 85vh;
    }

    .carousel-caption {
        bottom: 45%;
        left: 8%;
        right: 8%;
    }

    .hero-tag {
        font-size: 13px;
        padding: 7px 15px;
    }

    .carousel-caption h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .hero-btn, .hero-btn-outline {
        padding: 12px 20px;
        font-size: 14px;
    }

    .gallery-item {
        height: 200px;
    }

    .review-card {
        padding: 25px 15px;
        min-height: 320px;
    }

    .footer-title {
        margin-top: 25px;
    }
}










/*==================================================
    RESPONSIVE FIXES
==================================================*/

/* ==========================
   TABLET (991px)
========================== */
@media (max-width:991px) {

    .contact-card {
        padding: 25px;
        border-radius: 20px;
    }

    .contact-item {
        gap: 15px;
        margin-bottom: 20px;
        align-items: flex-start;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-item h5 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .contact-item p,
    .contact-item a {
        font-size: 15px;
        line-height: 1.6;
        word-break: break-word;
    }

    .contact-social {
        gap: 12px;
    }

        .contact-social a {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

    .direction-btn {
        padding: 13px;
        font-size: 15px;
    }
}


/* ==========================
   MOBILE (575px)
========================== */
@media (max-width:575px) {

    .contact-card {
        padding: 18px;
        border-radius: 18px;
    }

    .contact-item {
        gap: 12px;
        margin-bottom: 18px;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 17px;
    }

    .contact-item h5 {
        font-size: 16px;
    }

    .contact-item p,
    .contact-item a {
        font-size: 13px;
        line-height: 1.5;
    }

    .contact-social {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

        .contact-social a {
            width: 38px;
            height: 38px;
            font-size: 15px;
        }

    .direction-btn {
        font-size: 14px;
        padding: 12px;
    }

    .map-box {
        border-radius: 18px;
    }

        .map-box iframe {
            height: 260px;
        }
}


/* ==========================
   SMALL MOBILE (320px)
========================== */
@media (max-width:320px) {

    .contact-card {
        padding: 14px;
    }

    .contact-item {
        gap: 10px;
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 15px;
    }

    .contact-item h5 {
        font-size: 14px;
    }

    .contact-item p,
    .contact-item a {
        font-size: 12px;
        line-height: 1.4;
    }

    .contact-social {
        gap: 8px;
    }

        .contact-social a {
            width: 34px;
            height: 34px;
            font-size: 14px;
        }

    .direction-btn {
        font-size: 13px;
        padding: 10px;
    }

    .map-box iframe {
        height: 220px;
    }
}



/*=========================================
    ABOUT SECTION RESPONSIVE FIX
=========================================*/

/* Tablet */
@media (max-width:991px) {

    .about-section {
        overflow: hidden;
    }

    .about-image-box {
        margin-bottom: 40px;
    }

    .about-image {
        width: 100%;
        height: 380px;
        object-fit: cover;
    }

    .experience-box {
        right: 15px;
        bottom: 15px;
        padding: 18px;
        border-radius: 18px;
    }

        .experience-box h2 {
            font-size: 34px;
        }

        .experience-box p {
            font-size: 14px;
        }
}


/* Mobile */
@media (max-width:575px) {

    .about-section {
        overflow: hidden;
    }

    .about-image-box {
        margin-bottom: 25px;
    }

    .about-image {
        height: 260px;
        border-radius: 20px;
    }

    /* Prevent outside layout */
    .experience-box {
        position: static;
        width: 100%;
        margin-top: 15px;
        text-align: center;
        padding: 15px;
    }

        .experience-box h2 {
            font-size: 28px;
        }

        .experience-box p {
            font-size: 13px;
        }

    .about-text {
        font-size: 14px;
        line-height: 1.7;
        text-align: justify;
    }

    .about-feature {
        padding: 12px;
        gap: 12px;
    }

        .about-feature i {
            width: 42px;
            height: 42px;
            font-size: 18px;
            flex-shrink: 0;
        }

        .about-feature h5 {
            font-size: 16px;
        }

        .about-feature p {
            font-size: 13px;
        }

    .about-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}


/* Small Mobile */
@media (max-width:320px) {

    .about-image {
        height: 220px;
    }

    .experience-box {
        padding: 12px;
    }

        .experience-box h2 {
            font-size: 24px;
        }

    .about-feature {
        padding: 10px;
    }

        .about-feature h5 {
            font-size: 14px;
        }

        .about-feature p {
            font-size: 12px;
        }
}
