/* Custom Properties */
:root {
    --main-color: #DBD1C0;
    --primary-color: #ff6b00;
    --secondary-color: #2c3e50;
}

* {
    transition: all 0.25s ease-in-out !important;
}

/* General Styles */
body {
    font-family: 'Alexandria', sans-serif;
}

.navbar {
    height: 80px;
    background-color: #DBD1C0 !important;
}

.navbar .call-us a {
    font-size: 35px;
    font-weight: bold;
    font-style: normal;
    color: #000000;
    text-decoration: none !important;
}

.navbar .call-us a:hover {
    color: #ff6b00;
}


/* Hero Section */
.hero-section {
    padding-top: 80px !important;
    height: 100vh;
    background: url('./images/main-bg.png') center/cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    background-color: #dbd1c0ad;
    color: #000000;
}

/* Contact Form Card */
.contact-form-card {
    background: #DBD1C0;
    border-radius: 15px;
    height: 100%;
}

.contact-form-card label {
    font-size: 15px;
}

.form-control {
    font-size: 14px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.form-select {
    font-size: 14px;
    border-radius: 4px;
    padding-block: 0.5rem;
}



.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

/* Mobile Registration Form Modal */

#mobile-registration-modal{
    z-index: 10000000 !important;
}

#mobile-registration-modal .modal-content {
    background-color: #DBD1C0 !important;
}

/* Floating Logo */
.floating-logo {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100000;
}

.floating-logo img {
    height: 150px;
}

/* Floating Contact Buttons */
.floating-contacts {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 150px;
}

.floating-contacts a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    font-size: 24px;
    text-decoration: none;
}

.floating-contacts a:hover {
    transform: scale(1.1);
}

.floating-contacts .whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.floating-contacts .phone-btn {
    background-color: white;
    color: var(--primary-color);
}

/* Register Button in Mobile View */
.register-btn {
    background-color: #DBD1C0 !important;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    color: #000000;
    text-decoration: none !important;
    padding: 15px !important;
}

.register-btn p {
    margin-bottom: 0px !important;
}

/* Responsive Adjustments */
/* @media (max-width: 991.98px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0;
    }
}*/

@media (max-width: 767.98px) {
    .floating-contacts {
        bottom: 60px;
    }
    .floating-logo {
        bottom: 60px;
    }
    .floating-logo img {
        height: 110px;
    }
}