Contact Us

We'd love to hear from you! Please fill out the form below to get in touch with us.

.navbar { background-color: var(--primary-color); padding: 1rem 0; border-bottom: 1px solid var(--gold-color); } .navbar-brand { color: var(--gold-color) !important; font-weight: bold; font-size: 24px; padding: 0; } .navbar-brand img { height: 80px; width: 250px; transition: transform 0.3s ease; } .navbar-brand:hover img { transform: scale(1.05); } .nav-link { color: var(--gold-color) !important; margin: 0 10px; font-weight: 500; transition: all 0.3s ease; font-size: 14px; position: relative; padding: 0.5rem 1rem; } .nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--gold-color); transition: width 0.3s ease; } .nav-link:hover::after { width: 100%; } .nav-link:hover { color: var(--gold-hover) !important; transform: translateY(-2px); } .navbar-toggler { border-color: var(--gold-color); } .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 163, 92, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } .navbar-toggler:focus { box-shadow: 0 0 0 0.2rem rgba(201, 163, 92, 0.25); } .whatsapp-button { position: fixed; bottom: 20px; right: 20px; background-color: #25D366; color: white; padding: 10px 20px; border-radius: 50px; text-decoration: none; display: flex; align-items: center; gap: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); transition: all 0.3s ease; z-index: 1000; } .whatsapp-button:hover { background-color: #128C7E; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.3); } .whatsapp-button i { font-size: 24px; }