/*==================================================
BRB MOVERS & LOGISTICS
Premium Responsive Website
Part 1A
==================================================*/

/*=========================
GOOGLE FONT
=========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================
CSS VARIABLES
=========================*/
:root {

    /* COLORS */
    --primary: #0F62FE;
    --primary-dark: #0043CE;

    --secondary: #e31b23;
    ;

    --dark: #0B1320;

    --dark-light: #172233;

    --text: #374151;

    --text-light: #6B7280;

    --white: #ffffff;

    --light: #F8FAFC;

    --border: #E5E7EB;

    --success: #22C55E;

    --danger: #EF4444;

    /* SHADOW */

    --shadow-sm:
        0 5px 15px rgba(0, 0, 0, .05);

    --shadow:

        0 15px 40px rgba(0, 0, 0, .08);

    --shadow-lg:

        0 25px 70px rgba(0, 0, 0, .15);

    /* BORDER */

    --radius: 18px;

    --radius-sm: 10px;

    --radius-lg: 28px;

    /* TRANSITION */

    --transition: .35s ease;

}

/*=========================
RESET
=========================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Poppins', sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;


}

/*=====================================
GLOBAL PARAGRAPHS
=====================================*/



/*=========================
SELECTION
=========================*/

::selection {

    background: var(--primary);

    color: #fff;

}

/*=========================
SCROLLBAR
=========================*/

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #edf2f7;

}

::-webkit-scrollbar-thumb {

    background: var(--primary);

    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: var(--primary-dark);

}

/*=========================
IMAGES
=========================*/

img {

    max-width: 100%;

    display: block;

}

/*=========================
LINKS
=========================*/

a {

    text-decoration: none;

    transition: var(--transition);

}

/*=========================
LIST
=========================*/

ul {

    list-style: none;

}

/*=========================
CONTAINER
=========================*/

.container {

    width: min(1200px, 92%);

    margin: auto;

}

.container h1,
h4 {
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #e31b23;
}



/*=========================
SECTION
=========================*/

section {

    padding: 40px 0;

    position: relative;

}

/*=========================
HEADINGS
=========================*/

h1,
h2,
h3,
h4 {

    color: var(--dark);

    font-weight: 700;

    line-height: 1.2;

}

h1 {

    font-size: clamp(1.1rem, 3vw, 3.8rem);

}

h2 {

    font-size: clamp(2rem, 4vw, 3rem);

}

h3 {

    font-size: 1.35rem;

}

p {

    color: var(--text-light);

}

/*=========================
SECTION TITLE
=========================*/

.section-title {

    text-align: center;

    margin-bottom: 15px;
    color: #e31b23;
}

.section-subtitle {

    max-width: 720px;

    margin: 0 auto 60px;

    text-align: center;

    color: var(--text-light);

}

.section-content {

    max-width: 900px;

    margin: auto;

    text-align: center;

}

.section-content p {

    max-width: 780px;

    margin: 20px auto;

}

/*=========================
GRID
=========================*/

.grid {

    display: grid;

    gap: 30px;

}

/*=========================
BUTTONS
=========================*/

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 34px;

    border-radius: 60px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

    border: none;

}

.btn-primary {

    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));

    color: #fff;

    box-shadow: var(--shadow);

}

.btn-primary:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-lg);

}

.btn-secondary {

    background: var(--secondary);

    color: #fff;

}

.btn-secondary:hover {

    transform: translateY(-6px);

}

/*=========================
HEADER
=========================*/

header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 10000999;

    transition: .4s;

}

header.scrolled {

    background: rgba(255, 255, 255, .92);

    backdrop-filter: blur(14px);

    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);

}

.navbar {

    height: 85px;

    display: flex;

    align-items: center;

    justify-content: space-between;
    margin: 0px 30px;
}

.logo {
    font-size: .8rem;

    font-weight: 300;

    color: var(--primary);

}

.logo img {
    width: 140px;
    height: 65px;
    object-fit: cover;
    margin-right: 10px;
}

nav {

    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {

    color: var(--dark);

    font-weight: 500;

    position: relative;

}

nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .3s;

}

nav a:hover::after {

    width: 100%;

}

.menu-btn {

    display: none;

    font-size: 2rem;

    cursor: pointer;

}

/*=========================
HERO
=========================*/

.hero {

    min-height: 95vh;

    display: flex;

    align-items: center;

    color: #fff;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(rgba(8, 20, 40, .70),
            rgba(8, 20, 40, .80)),
        url("hero.jpg") center/cover;

}

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(15, 98, 254, .25),
            transparent 45%);

    animation: heroGlow 10s linear infinite;

}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 700px;

}

.hero h1 {

    color: #fff;

    margin-bottom: 20px;

}

.hero p {

    color: #f3f4f6;

    font-size: 1.1rem;

    margin-bottom: 35px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

/*=========================
ANIMATION
=========================*/

@keyframes heroGlow {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.2);

    }

    100% {

        transform: scale(1);

    }

}

/*=========================
PAGE BANNER
=========================*/

.page-banner {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 380px;

    height: 55vh;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #0B1320,
            #14335f,
            #0F62FE, #e26065, #e31c21);

    background-size: 300% 300%;

    animation: gradientMove 15s ease infinite;

}

/* Overlay */

.page-banner::before {

    content: "";

    position: absolute;

    inset: 0;
    background:
        linear-gradient(rgba(8, 20, 40, .70),
            rgba(8, 20, 40, .80)), url("https://5.imimg.com/data5/SELLER/Default/2024/1/376323915/KD/PV/EB/209292530/local-relocation-service-500x500.jpg") center/cover no-repeat
}

/*=========================
CONTENT
=========================*/

.page-banner-content {

    position: relative;

    z-index: 2;

    text-align: center;

}

.page-banner-content h1 {

    color: #fff;

    font-size: clamp(2.8rem, 6vw, 4.8rem);

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;


}

.page-banner-content p {

    color: #dbeafe;

    font-size: 1.2rem;

}

/*=========================
LINE
=========================*/

.banner-line {

    display: inline-block;

    width: 90px;

    height: 4px;

    background: #fff;

    border-radius: 30px;

    margin-bottom: 22px;

}



/*=========================
RESPONSIVE
=========================*/

@media(max-width:768px) {

    .page-banner {

        height: 45vh;

        min-height: 320px;

    }

    .page-banner-content h1 {

        font-size: 2.5rem;

    }

    .page-banner-content p {

        font-size: 1rem;

    }

    .shape-1 {

        width: 120px;

        height: 120px;

    }

    .shape-2 {

        width: 90px;

        height: 90px;

    }

}

/*=========================
SCROLL PROGRESS
=========================*/

#progress-bar {

    position: fixed;

    top: 0;

    left: 0;

    width: 0;

    height: 4px;

    background: linear-gradient(to right,
            var(--primary),
            var(--secondary));

    z-index: 99999;

}

/*=========================
BACK TO TOP
=========================*/

#backToTop {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    box-shadow: var(--shadow);

    z-index: 999;

}

#backToTop.show {

    opacity: 1;

    visibility: visible;

}

#backToTop:hover {

    transform: translateY(-8px);

}

/*=========================
PRELOADER
=========================*/

#preloader {

    position: fixed;

    inset: 0;

    background: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 999999;

}

.loader {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    border: 6px solid #dbeafe;

    border-top-color: var(--primary);

    animation: spin 1s linear infinite;

}

@keyframes spin {

    to {

        transform: rotate(360deg);

    }

}

/*=========================
UTILITY
=========================*/

.text-center {

    text-align: center;

}

.text-left {

    text-align: left;

}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

/*==================================================
PART 1B
Cards • Services • About • Stats
Timeline • FAQ • Testimonials • CTA
==================================================*/

/*=========================
SECTION BACKGROUNDS
=========================*/

.bg-light {
    background: var(--light);

}

.bg-dark {
    background: var(--dark);
    color: #fff;
}

.bg-gradient {
    background: linear-gradient(135deg,
            #eef4ff,
            #ffffff,
            #f8fbff);
}

/*=========================
CARDS
=========================*/

.card {

    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    padding: 35px;

    transition: .4s;

    box-shadow: var(--shadow);

    position: relative;

    border: 1px solid rgba(15, 98, 254, .06);

}

.card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(to right,
            var(--primary),
            var(--secondary));

    transform: scaleX(0);

    transition: .4s;

    transform-origin: left;

}

.card:hover::before {

    transform: scaleX(1);

}

.card:hover {

    transform: translateY(-14px);

    box-shadow: var(--shadow-lg);

}

/*=========================
GLASS CARD
=========================*/

.glass {

    backdrop-filter: blur(18px);

    background: rgba(255, 255, 255, .25);

    border: 1px solid rgba(255, 255, 255, .35);

}

/*=========================
SERVICE GRID
=========================*/

.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 35px;

}

/*=========================
SERVICE CARD
=========================*/

.service-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    transition: .4s;

    box-shadow: var(--shadow);


}

.service-card:hover {

    transform: translateY(-12px);

    box-shadow: var(--shadow-lg);

}

.service-image {

    overflow: hidden;

    height: 250px;

}

.service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.service-card:hover img {

    transform: scale(1.12);

}

.service-content {

    padding: 30px;

}

.service-icon {

    width: 70px;

    height: 70px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    background: linear-gradient(135deg,

            var(--primary),

            var(--primary-dark));

    color: #fff;

    font-size: 28px;

}

.service-content h3 {

    margin-bottom: 15px;

}

.service-content p {

    margin-bottom: 18px;

}

.service-content ul {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.service-content li {

    position: relative;

    padding-left: 26px;

}

.service-content li::before {

    content: "✔";

    position: absolute;

    left: 0;

    color: var(--success);

    font-weight: 700;

}

/*=========================
ABOUT
=========================*/

.about-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 70px;

    align-items: center;

}

.about-image {

    position: relative;

}

.about-image img {

    border-radius: 28px;

    box-shadow: var(--shadow-lg);

}

.about-image::after {

    content: "";

    position: absolute;

    width: 160px;

    height: 160px;

    background: rgba(15, 98, 254, .12);

    border-radius: 50%;

    right: -35px;

    bottom: -35px;

    z-index: -1;

}

.about-content h2 {

    margin-bottom: 20px;

}

.about-content p {

    margin-bottom: 18px;

}

/*=========================
FEATURE LIST
=========================*/

.feature-list {

    margin-top: 25px;

    display: grid;

    gap: 18px;

}

.feature-item {

    display: flex;

    gap: 18px;

    align-items: flex-start;

}

.feature-icon {

    min-width: 60px;

    height: 60px;

    border-radius: 16px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    background: linear-gradient(135deg,

            var(--primary),

            var(--primary-dark));

    font-size: 24px;

}

/*=========================
STATISTICS
=========================*/

.stats {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 30px;

}

.stat-card {

    text-align: center;

    padding: 45px 25px;

    background: #fff;

    border-radius: 20px;

    box-shadow: var(--shadow);

    transition: .4s;

}

.stat-card:hover {

    transform: translateY(-10px);

}

.stat-card h2 {

    color: var(--primary);

    font-size: 3rem;

}

.stat-card p {

    margin-top: 10px;

    font-weight: 600;

}

/*=========================
PROCESS TIMELINE
=========================*/

.timeline {

    position: relative;

    max-width: 900px;

    margin: auto;

}

.timeline::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    width: 4px;

    height: 100%;

    background: var(--primary);

    transform: translateX(-50%);

}

.timeline-item {

    width: 50%;

    padding: 30px;

    position: relative;

}

.timeline-item:nth-child(odd) {

    left: 0;

}

.timeline-item:nth-child(even) {

    left: 50%;

}

.timeline-content {

    background: #fff;

    border-radius: 18px;

    padding: 28px;

    box-shadow: var(--shadow);

}

.timeline-number {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-weight: 700;

    margin-bottom: 18px;

}

/*=========================
CTA
=========================*/

.cta {

    overflow: hidden;

    background: linear-gradient(135deg,

            var(--secondary),

            var(--secondary));

    color: #fff;

    text-align: center;

    padding: 90px 40px;

}

.cta h2 {

    color: #fff;

    margin-bottom: 18px;

}

.cta p {

    color: #eef4ff;

    max-width: 700px;

    margin: auto;

    margin-bottom: 35px;

}

/*=========================
TESTIMONIALS
=========================*/

.testimonials {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 35px;

}

.testimonial-card {

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    box-shadow: var(--shadow);

    transition: .4s;

}

.testimonial-card:hover {

    transform: translateY(-10px);

}

.client {

    display: flex;

    gap: 18px;

    align-items: center;

    margin-bottom: 20px;

}

.client img {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    object-fit: cover;

}

.client-info h4 {

    margin-bottom: 4px;

}

.stars {

    color: #FFC107;

    margin: 15px 0;

    font-size: 18px;

}

/*=========================
FAQ
=========================*/

.faq {

    max-width: 900px;

    margin: auto;

}

.faq-item {

    margin-bottom: 20px;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: var(--shadow);

    background: #fff;

}

.faq-question {

    cursor: pointer;

    padding: 25px;

    font-size: 18px;

    font-weight: 600;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.faq-answer {

    padding: 0 25px;

    max-height: 0;

    overflow: hidden;

    transition: max-height .4s ease, padding .4s ease;

}

.faq-item.active .faq-answer {

    max-height: 300px;

    padding: 0 25px 25px;

}

/*=========================
SCROLL REVEAL
=========================*/

.reveal {

    opacity: 0;

    transform: translateY(60px);

    transition: 1s;

}

.reveal.active {

    opacity: 1;

    transform: translateY(0);

}

/*=========================
IMAGE HOVER
=========================*/

.image-hover {

    overflow: hidden;

    border-radius: 24px;

}

.image-hover img {

    transition: .5s;

}

.image-hover:hover img {

    transform: scale(1.08);

}

/*=========================
BADGES
=========================*/

.badge {

    padding: 8px 18px;

    border-radius: 50px;

    background: #eaf2ff00;

    color: var(--primary);
    margin-bottom: 15px;

    display: block;
    text-align: center;


}



.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: .35s;
}

.info-box:hover {
    transform: translateY(-8px);
}

.info-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    font-size: 26px;
    flex-shrink: 0;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-family: inherit;
    transition: .3s;
    font-size: 15px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 98, 254, .15);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-btn {
    width: 100%;
}

/*=========================
FOOTER
=========================*/

footer {
    background: var(--dark);
    color: #fff;
    padding: 80px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}
.footer-grid a{
    color: white;
}
.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.footer-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #d1d5db;
    transition: .3s;
}

.footer-links a:hover {

    color: #fff;
    padding-left: 8px;
}

.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-contact li {

    margin-bottom: 18px;

}

.footer-contact li a {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #dcdcdc;

    text-decoration: none;

    transition: .3s;

    line-height: 1.7;

}

.footer-contact li i {

    color: var(--primary);

    min-width: 20px;

    font-size: 18px;

    margin-top: 4px;

}

.footer-contact li a:hover {

    color: var(--primary);

    transform: translateX(5px);

}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: .35s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-6px);
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 25px;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom a {
    color: var(--secondary);
    font-weight: 900;
    font-size: 1.2rem;
}

/*=========================
MOBILE MENU
=========================*/

.mobile-toggle {
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--dark);
    font-size: 28px;
    cursor: pointer;
    transition: .3s;
    z-index: 1002;
}

.mobile-toggle:hover {
    color: var(--primary);
}



@media(max-width:768px) {

    #nav {

        position: fixed;

        top: 0;

        right: -100%;

        width: 300px;

        height: 100vh;

        background: #ffffff;

        display: flex;

        flex-direction: column;

        padding: 110px 35px;

        gap: 28px;

        transition: .35s;

        box-shadow: -15px 0 40px rgba(0, 0, 0, .18);

        z-index: 1000000;

    }

    #nav.active {

        right: 0;

    }

    nav a {

        font-size: 17px;

        font-weight: 600;

        color: var(--dark);

        padding: 12px 0;

        border-bottom: 1px solid #eee;

    }

    .mobile-toggle {

        display: flex;
        align-items: center;
        justify-content: center;

        width: 45px;
        height: 45px;

        background: transparent;
        border: 0;

        font-size: 28px;

        cursor: pointer;

        z-index: 1000001;
    }

    body.menu-open {

        overflow: hidden;

    }

    .timeline::before {

        left: 30px;

    }

    .timeline-item {

        width: 100%;

        left: 0 !important;

        padding-left: 80px;

        padding-right: 20px;

        margin-bottom: 35px;

    }

    .about-grid {

        grid-template-columns: 1fr;

    }

    .contact-wrapper {

        grid-template-columns: 1fr;

    }

    .hero {

        text-align: center;

    }

    .hero-buttons {

        justify-content: center;

    }

}

/*=========================
TABLET
=========================*/

@media(max-width:768px) {

    section {

        padding: 70px 0;

    }

    .navbar {

        height: 75px;

    }

    .hero {

        min-height: 90vh;

    }

    .hero h1 {

        font-size: 1.2rem;

    }

    .hero p {

        font-size: 1rem;

    }

    .btn {

        padding: 14px 26px;

    }

    .stats {

        grid-template-columns: 1fr 1fr;

    }

}

/*=========================
MOBILE
=========================*/

@media(max-width:576px) {

    .container {

        width: 92%;

    }

    section {

        padding: 60px 0;

    }

    .hero {

        padding-top: 90px;

    }

    .hero h1 {

        font-size: 2.1rem;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-buttons .btn {

        width: 100%;

    }

    .stats {

        grid-template-columns: 1fr;

    }

    .card {

        padding: 25px;

    }

    .contact-form {

        padding: 25px;

    }

    .footer-grid {

        text-align: center;

    }

    .social-links {

        justify-content: center;

    }

    .info-box {

        flex-direction: column;

        text-align: center;

        align-items: center;

    }

}

/*=========================
ACCESSIBILITY
=========================*/

:focus-visible {

    outline: 3px solid var(--primary);

    outline-offset: 3px;

}

button {

    font-family: inherit;

    cursor: pointer;

}

/*=========================
HELPER CLASSES
=========================*/

.rounded {
    border-radius: var(--radius);
}

.shadow {
    box-shadow: var(--shadow);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.w-100 {
    width: 100%;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.text-white {
    color: #fff;
}

.text-primary {
    color: var(--primary);
}

.bg-primary {
    background: var(--primary);
    color: #fff;
}

.bg-white {
    background: #fff;
}

/*=========================
PRINT
=========================*/

@media print {

    header footer,
    #backToTop,
    #preloader,
    .mobile-toggle {

        display: none !important;

    }

    body {

        background: #fff;

        color: #000;

    }

    section {

        padding: 20px 0;


    }

}

/*===============================
SERVICE BUTTONS
================================*/

.service-buttons {

    display: flex;
    gap: 20px;

    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
}

.service-buttons a,
.service-buttons button {

    flex: 1;

}

/*===============================
CALL BUTTON
================================*/

.call-btn {

    height: 40px;

    border-radius: 12px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    background: #ffffff;

    border: 2px solid var(--primary);

    color: var(--primary);

    font-weight: 600;

    transition: .35s;
    margin-bottom: 20px;
}

.call-btn:hover {

    background: var(--primary);

    color: #fff;

    transform: translateY(-4px);

}

/*===============================
BOOK BUTTON
================================*/

.book-btn {


    height: 40px;
    border: none;

    cursor: pointer;

    border-radius: 12px;

    font-size: 15px;

    font-weight: 600;

    color: #fff;

    background: linear-gradient(135deg,
            var(--secondary),
            #ff9248);

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    transition: .35s;
    margin-bottom: 20px;

}

.book-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 30px rgba(255, 107, 53, .30);

}

/* Phone Icon Shake */

.call-btn i {

    animation: phoneShake 5s infinite;

}

@keyframes phoneShake {

    0%,
    92%,
    100% {

        transform: rotate(0);

    }

    94% {

        transform: rotate(18deg);

    }

    96% {

        transform: rotate(-18deg);

    }

    98% {

        transform: rotate(18deg);

    }

}

/* Book Button Pulse */

.book-btn {

    animation: bookPulse 4s infinite;

}

@keyframes bookPulse {

    0%,
    100% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.03);

    }

}

@media(max-width:576px) {

    .service-buttons {

        flex-direction: column;

    }

    .call-btn,
    .book-btn {

        width: 100%;

    }

}

/*==================================
BOOKING MODAL
==================================*/

.booking-modal {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .65);

    backdrop-filter: blur(10px);

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 40px;

    z-index: 99999;

    opacity: 0;

    visibility: hidden;

    transition: .35s;
    margin: 50px 0;
}

.booking-modal.show {

    opacity: 1;

    visibility: visible;

}

.booking-box {

    width: min(920px, 100%);

    max-height: 80vh;


    overflow-y: auto;

    background: #fff;

    border-radius: 25px;

    padding: 40px;

    position: relative;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);

    animation: popup .35s ease;

}

@keyframes popup {

    from {

        transform: translateY(40px) scale(.95);

        opacity: 0;

    }

    to {

        transform: translateY(0) scale(1);

        opacity: 1;

    }

}

.booking-box h2 {

    margin-bottom: 10px;

}

.booking-box>p {

    margin-bottom: 35px;

    color: #666;

}

.booking-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}

.booking-grid .form-group:last-child {

    grid-column: 1/-1;

}

.close-booking {

    position: absolute;

    top: 18px;

    right: 18px;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 50%;

    background: #f3f4f6;

    font-size: 18px;

    cursor: pointer;

    transition: .3s;

}

.close-booking:hover {

    background: var(--danger);

    color: #fff;

    transform: rotate(90deg);

}

@media(max-width:768px) {

    .booking-box {

        padding: 25px;

    }

    .booking-grid {

        grid-template-columns: 1fr;

    }

}

/*====================================
SUCCESS MODAL
====================================*/

.success-modal {

    position: fixed;

    inset: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(0, 0, 0, .65);

    backdrop-filter: blur(8px);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 999999;

}

.success-modal.show {

    opacity: 1;

    visibility: visible;

}

.success-box {

    background: #fff;

    padding: 45px;

    border-radius: 25px;

    text-align: center;

    width: min(420px, 95%);

    animation: popup .35s;

}

.success-icon {

    font-size: 75px;

    color: #22c55e;

    margin-bottom: 25px;

    animation: successScale .6s;

}

.success-box h2 {

    margin-bottom: 15px;

}

.success-box p {

    margin-bottom: 30px;

}

/*===============================*/

.btn-loader {

    display: none;

}

.loading .btn-text {

    display: none;

}

.loading .btn-loader {

    display: inline-flex;

    align-items: center;

    gap: 8px;

}

/*===============================*/

@keyframes successScale {

    0% {

        transform: scale(0);

    }

    70% {

        transform: scale(1.15);

    }

    100% {

        transform: scale(1);

    }

}

/*====================================
FLOATING CONTACT
====================================*/

.floating-contact {

    position: fixed;

    right: 22px;

    bottom: 90px;

    display: flex;

    flex-direction: column;

    gap: 15px;

    z-index: 9999;

}

.floating-contact a {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 24px;

    color: #fff;

    text-decoration: none;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .20);

    transition: .35s;

}

.floating-call {

    background: #0F62FE;

}

.floating-whatsapp {

    background: #25D366;

}

.floating-contact a:hover {

    transform: translateY(-6px) scale(1.08);

}

.floating-whatsapp {

    animation: whatsappPulse 3s infinite;

}

.floating-call {

    animation: callPulse 4s infinite;

}

@keyframes whatsappPulse {

    0%,
    100% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.1);

    }

}

@keyframes callPulse {

    0%,
    100% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.08);

    }

}

/*=====================================
MOBILE HEADER
=====================================*/




.mobile-toggle {
    display: none;
}

@media (max-width:768px) {

    .mobile-toggle {

        display: flex;

        width: 48px;

        height: 48px;

        justify-content: center;

        align-items: center;

        background: none;

        border: none;

        font-size: 30px;

        color: var(--dark);

        cursor: pointer;

        z-index: 1000001;

    }

}

/*=====================================
BOTTOM NAVIGATION
=====================================*/

.mobile-nav {

    display: none;

}

/*=====================================
MOBILE BOTTOM NAV
=====================================*/

@media (max-width:768px) {

    .mobile-nav {

        position: fixed !important;

        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        top: auto !important;

        width: auto !important;
        height: 72px !important;

        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: center !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #fff !important;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .18);

        z-index: 99999999;

        transform: none !important;
    }

    .mobile-nav a {

        flex: 1;

        display: flex !important;
        flex-direction: column !important;

        justify-content: center;
        align-items: center;

        gap: 4px;

        padding: 0 !important;

        color: #666;
        font-size: 11px;

        text-decoration: none;
    }

    .mobile-nav a span {
        display: block;
    }

    .mobile-nav a i {
        font-size: 22px;
    }

    body {
        padding-bottom: 95px;
    }

}

@media (max-width:768px) {

    .floating-contact {

        bottom: 100px;

        right: 15px;

    }

}


/*=====================================
MENU OVERLAY
=====================================*/

.menu-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 999999;

}

.menu-overlay.show {

    opacity: 1;

    visibility: visible;

}