/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background-color: #2c3e50;
    padding: 12px 30px;
    display: flex;
    justify-content: flex-end;
    gap: 35px;
    flex-wrap: wrap;
}

.top-link {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.top-link:hover {
    transform: translateY(-2px);
    color: #3498db;
}

/* Smart Search Box */
.smart-search {
    position: relative;
    width: 46px;
    height: 46px;
    margin-left: 15px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smart-search-input {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 23px;
    padding: 0 50px 0 18px;
    font-size: 14px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    outline: none;
}

.smart-search-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(41, 128, 185, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

/* Hover State */
.smart-search:hover {
    width: 300px;
}

.smart-search:hover .smart-search-input {
    opacity: 1;
}

/* Active State (when clicked or focused) */
.smart-search.active {
    width: 300px;
}

.smart-search.active .smart-search-input {
    opacity: 1;
}

.smart-search.active .smart-search-btn {
    transform: scale(0.92);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .smart-search:hover,
    .smart-search.active {
        width: 200px;
    }
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: #ffffff;
    padding: 18px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 90px;
}

.logo img {
    width: 200px;
    height: 85px;
    margin-top: 6px;
}


.nav-links {
    display: flex;
    gap: 23px;
    flex-wrap: wrap;
    font-size: 19px;
}

.nav-item {
    position: relative;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.4s ease;
}

.nav-item:hover {
    transform: translateY(-3px);
}



.nav-item:nth-child(1):hover {
    color: #e74c3c;
}

.nav-item:nth-child(2):hover {
    color: #2ecc71;
}

.nav-item:nth-child(3):hover {
    color: #f1c40f;
}

.nav-item:nth-child(4):hover {
    color: #9b59b6;
}

.nav-item:nth-child(5):hover {
    color: #e67e22;
}

.nav-item:nth-child(6):hover {
    color: aquamarine;
}


/* ===== Ultra-Luxury Footer Styles ===== */
:root {
    --primary-dark: #1a2a3a;
    --primary-light: #2c3e50;
    --gold-accent: #D4AF37;
    --gold-light: #f1d27a;
    --text-light: #f8f8f8;
    --text-gray: #bdc3c7;
    --bg-gradient: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
}

.bvmk-footer {
    position: relative;
    background: var(--primary-dark);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    margin-top: 80px;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    transform: rotate(180deg);
    z-index: 1;
}

.footer-wave path {
    fill: var(--primary-dark);
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 60px 0 40px;
    background: var(--bg-gradient);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 1 1 300px;
    padding-right: 20px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    width: 150px;
    height: 140px;
}

.footer-logo {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.footer-logo.fade-pulse {
    animation: fadePulse 1.5s ease-in-out;
}

@keyframes fadePulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.icon-24-7 {
    color: gold;
    font-size: 1.2em;
    margin-left: 10px;
    vertical-align: middle;
}


.footer-motto {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 25px;
    max-width: 280px;
}



.footer-links a i {
    color: var(--gold-accent);
    margin-right: 8px;
    /* optional: adds spacing between icon and text */
}


.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold-accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column *,
.footer-column *::before,
.footer-column *::after {
    background: transparent !important;
    box-shadow: none !important;
}


.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    color: var(--gold-accent);
    font-family: 'Playfair Display', serif;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: var(--gold-accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}



.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

.contact-item i {
    color: var(--gold-accent);
    font-size: 16px;
    margin-top: 2px;
}

.newsletter {
    flex: 1 1 250px;
}

.newsletter-text {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    position: relative;
    margin-right: 750px;
}

.footer-social {
    gap: 1px;
    padding-left: 472px;
    display: flex;
}

.footer-social a {
    text-decoration: none;
}

.footer-social i:hover {
    color: var(--gold-light);
}

.footer-social .social-icon i {
    font-size: 23px;
    /* Adjust the size of all icons */

}

.coming-soon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: solid 2px rgba(225, 225, 225, 0, 2, );
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 450px;
}

.newsletter-form input::placeholder {
    color: var(--text-gray);

}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    width: 45px;
    background: var(--gold-accent);
    color: var(--gold-accent);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.legal-links a {
    color: var(--text-gray);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--gold-accent);
}

.divider {
    color: rgba(255, 255, 255, 0.1);
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
}

.highlight {
    color: var(--gold-light);
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-container {
        gap: 30px;
    }

    .footer-brand {
        flex: 1 1 100%;
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .footer-motto {
        margin-left: auto;
        margin-right: auto;
    }


    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .footer-column {
        flex: 1 1 150px;
    }

    .newsletter {
        flex: 1 1 100%;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-column {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .contact-item {
        justify-content: center;
    }

    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .divider {
        display: none;
    }
}