﻿
.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-call {
    background: #2ecc71;
    padding: 16px 28px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.hero-quote {
    background: #F44336;
    padding: 16px 28px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* ================= NEXT LEVEL MENU ================= */

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
    transition: all .35s ease;
    position: relative;
}

/* Menu icons */
.mobile-menu i {
    font-size: 20px;
    color: #F44336;
    width: 26px;
    text-align: center;
    transition: .3s;
}

/* Hover animation */
.mobile-menu a:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(8px);
}

    /* Icon glow */
    .mobile-menu a:hover i {
        transform: scale(1.2);
        text-shadow: 0 0 10px rgba(244,67,54,.6);
    }

/* Active indicator */
.mobile-menu a.active {
    background: #F44336;
    box-shadow: 0 8px 20px rgba(244,67,54,.45);
}

/* Sliding indicator bar */
.mobile-menu a::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 4px;
    background: #F44336;
    opacity: 0;
    transition: .3s;
    border-radius: 3px;
}

.mobile-menu a:hover::before {
    opacity: 1;
    left: -2px;
}



/* ================= ULTRA PREMIUM MOBILE MENU ================= */

.premium-offcanvas {
    width: 300px;
    background: linear-gradient(180deg,#2d76b7 0%,#1b4e7a 60%,#143a5c 100%);
    border-left: 4px solid #F44336;
    box-shadow: -10px 0 40px rgba(0,0,0,0.35);
}

/* Header */
.offcanvas-header {
    background: linear-gradient(90deg,#F44336,#d7372c);
    padding: 18px 22px;
}

/* Slide Animation */
.offcanvas-body {
    animation: menuSlide .45s ease;
}

@keyframes menuSlide {
    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


    /* Menu Items */
    .mobile-menu li {
        margin-bottom: 14px;
    }

    /* Menu Links */
    .mobile-menu a {
        display: block;
        padding: 12px 14px;
        font-size: 19px;
        font-family: 'Playfair Display',serif;
        color: #fff;
        border-radius: 10px;
        transition: all .3s ease;
        position: relative;
    }

        /* Hover Effect */
        .mobile-menu a:hover {
            background: rgba(255,255,255,0.08);
            padding-left: 20px;
            transform: translateX(6px);
        }

        /* Active Menu */
        .mobile-menu a.active {
            background: #F44336;
            box-shadow: 0 6px 18px rgba(244,67,54,.45);
        }

/* Divider */
.menu-divider {
    height: 1px;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.45),transparent);
    margin: 25px 0;
}

/* Contact Card */
.mobile-contact {
    background: rgba(255,255,255,0.05);
    padding: 18px;
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

/* Contact Items */
.mobile-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

/* Icon Circle */
.mobile-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #F44336;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 12px rgba(244,67,54,.35);
    transition: .3s;
}

/* Icon Hover Animation */
.mobile-info-item:hover .mobile-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 0 18px rgba(244,67,54,.6);
}

/* Contact Text */
.mobile-info-text {
    font-family: 'Playfair Display',serif;
    font-size: 15px;
    line-height: 1.4;
}

    .mobile-info-text a {
        color: #fff;
        text-decoration: none;
    }

        .mobile-info-text a:hover {
            text-decoration: underline;
        }

/* CTA Button */
.mobile-quote-btn {
    display: block;
    text-align: center;
    background: linear-gradient(90deg,#F44336,#d7372c);
    color: #fff;
    padding: 15px;
    border-radius: 40px;
    font-family: 'Playfair Display',serif;
    font-weight: 600;
    letter-spacing: .5px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(244,67,54,.45);
    transition: .35s ease;
}

    /* Button Hover */
    .mobile-quote-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(244,67,54,.65);
    }

/* Sticky Bottom Button */
.mt-auto {
    position: sticky;
    bottom: 0;
    padding-top: 20px;
}







/* ================= TOP HEADER ================= */

.top-header {
    background: #f2f2f2;
    padding: 22px 0;
}

.logo-title {
    font-family: 'Segoe UI',sans-serif;
    color: #2d7dd2;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.logo-sub {
    font-family: 'Segoe UI',sans-serif;
    color: #2d7dd2;
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Hamburger Top Right */
.mobile-toggle {
    display: none;
    position: absolute;
    right: 15px;
    top: 30px;
    border: none;
    background: transparent;
}

    .mobile-toggle i {
        font-size: 30px;
        color: #F44336; /* same as title color */
    }

/* ================= RIGHT CONTACT ================= */

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 55px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 58px;
    height: 58px;
    border: 3px solid #F44336;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-circle i {
        color: #F44336;
        font-size: 24px;
    }

.info-text {
    font-family: 'Playfair Display',serif;
    color: #1e73be;
    font-size: 19px;
    line-height: 1.3;
}

.quote-btn {
    background: #F44336;
    color: #fff;
    padding: 18px 48px;
    border-radius: 50px;
    font-family: 'Playfair Display',serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

/* ================= BLUE NAVBAR ================= */

.custom-navbar {
    background: #2d76b7;
    height: 88px;
    display: flex;
    align-items: center;
}

    .custom-navbar .nav-link {
        font-family: 'Playfair Display',serif;
        color: #fff !important;
        font-size: 21px;
        padding: 30px 0;
    }

/* ================= MOBILE OFFCANVAS ================= */

.offcanvas {
    background: #2d76b7;
    color: #fff;
    width: 260px;
}

.premium-offcanvas {
    background: linear-gradient(180deg, #2d76b7 0%, #1f5f98 100%);
    color: #fff;
    width: 280px;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

    .mobile-menu li {
        margin-bottom: 15px;
    }

    .mobile-menu a {
        color: #fff;
        text-decoration: none;
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        transition: 0.3s ease;
    }

        .mobile-menu a:hover {
            padding-left: 8px;
            opacity: 0.85;
        }

/* Divider */
.menu-divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 10px 0 25px;
}

/* Contact Items */
.mobile-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.mobile-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid #F44336;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mobile-icon-circle i {
        color: #F44336;
        font-size: 17px;
    }

.mobile-info-text {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    line-height: 1.4;
}

    .mobile-info-text span {
        font-size: 14px;
        opacity: 0.85;
    }

    .mobile-info-text a {
        color: #fff;
        text-decoration: none;
    }

        .mobile-info-text a:hover {
            text-decoration: underline;
        }

/* Premium Button */
.mobile-quote-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #F44336;
    color: #fff;
    padding: 14px;
    border-radius: 40px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

    .mobile-quote-btn:hover {
        background: #d7372c;
        transform: translateY(-2px);
    }
/* ================= RESPONSIVE ================= */

@media(max-width:991px) {

    .header-right {
        display: none !important; /* Hide contact section */
    }

    .mobile-toggle {
        display: block;
    }

    .custom-navbar {
        height: 5px;
        background: #F44336;
    }
}
