/* Main style for tajmahaldaytour frontend */
a, a:visited {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: #dc3545;
}

.btn-primary, .navbar-contact-btn {
    border-radius: 32px;
    padding: 12px 36px !important;
    min-width: 180px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff !important;
    background: linear-gradient(135deg, #1d2b53 0%, #000000 60%, #1d2b53 100%);
    box-shadow: 0 6px 24px rgba(44,62,80,0.18), 0 1.5px 0 #fff inset;
    transition: box-shadow 0.2s, background 0.2s, transform 0.18s;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    gap: 12px;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.navbar-contact-btn i {
    font-size: 22px;
    margin-right: 8px;
    color: #fff;
    transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55), color 0.2s;
}

.navbar-contact-btn:hover {
    background: linear-gradient(135deg, #ff2e63 0%, #ffc722 100%);
    color: #fff !important;
    box-shadow: 0 10px 32px rgba(255,46,99,0.18), 0 2px 0 #fff inset;
    transform: translateY(-2px) scale(1.04);
}
.navbar-contact-btn:hover i {
    transform: scale(1.25) rotate(-12deg);
    color: #ffc722;
}
.call-float-btn:hover {
    background: #dc3545;
    color: #fff;
    box-shadow: 0 8px 24px rgba(220,53,69,0.18);
}
.call-float-btn i {
    font-size: 22px;
    margin-right: 8px;
    color: #fff;
    filter: none;
}
.whatsapp-float-btn {
    bottom: 80px;
    background: #25d366;
}
.call-float-btn {
    bottom: 20px;
    background: #dc3545;
}
.back-to-top-btn {
    position: fixed;
    bottom: 140px;
    right: 20px;
    background: #ffc722;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s;
    display: none;
}
.back-to-top-btn.show {
    display: flex;
}
