body {
    
    font-family: 'Roboto Condensed', sans-serif;
   
}

.call-us {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-container {
    display: flex;
    width: 100%;
    padding: 20px 0; /* Keep top and bottom padding, remove left and right */
    font-family: 'Roboto Condensed', sans-serif;
    margin: auto;
    flex-wrap: wrap;
    gap: 40px;
    background-color: #f8f6f6;
}
.contact-form, .contact-info {
    flex: 1 1 300px;
    padding: 0 20px; /* Add horizontal padding */
}

.contact-form {
    padding-right: 40px;
}

.contact-form h2 {
    color: #333;
    margin-bottom: 10px;
}

.contact-form p {
    color: #666;
    margin-bottom: 20px;
}

/* Input fields and textarea styling */
input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 25px;
    border: 1px solid #f0eeee;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f0eeee;
    color: #333;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #ff7300;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.1);
    
}
@media (max-width: 991.98px) {
    body {
        padding-top: 0; /* Remove the top padding */
    }

    .contact-container {
        padding-top: 0;
        margin-top: 0;
    }

    /* Adjust the navbar to not be fixed on mobile */
    .navbar {
        position: relative;
    }

    /* If you want to keep some spacing, you can add a small margin to the first element after the navbar */
    .contact-container {
        margin-top: 20px; /* Adjust this value as needed */
    }
}

/* Placeholder styling */
::placeholder {
    color: #999;
}

/* Select styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 35px;
}

textarea {
    height: 100px;
    background-color: #f0eeee;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row input {
    flex: 1;
    margin-bottom: 0;
    background-color: #f0eeee;
}

.button-wrapper {
    text-align: left;
    margin-top: 10px;
}

.consultation-btn {
    background-color: #ff7300;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.consultation-btn:hover {
    background-color: #ff7300;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.tab-container {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.tab-button {
    flex: 1;
    padding: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s, color 0.3s;
    outline: none;
}

.tab-button:hover {
    color: #ff7300;
}

.tab-button:focus {
    outline: none;
}

.tab-button.active {
    color: #ff7300;
    border-bottom: 2px solid #ff7300;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    color: #ff7300;
    margin-right: 15px;
    font-size: 24px;
}

.info-item h4 {
    color: #333;
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
}

#email {
    background-color: #f0eeee;
    margin-top: 2%;
    margin-bottom: 2%;
}

@media (max-width: 991.98px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .social-icons {
        margin-top: 10px;
        align-self: center;
    }

    .navbar-collapse {
        padding: 15px;
    }

    body {
        padding-top: 40px; /* Adjust for mobile */
    }
}

@media (min-width: 992px) {
    .navbar > .container-fluid {
        flex-wrap: nowrap;
    }
}

@media (max-width: 768px) {
    .top-bar, nav, main {
        flex-direction: column;
    }
    
    .menu {
        margin-top: 20px;
    }
    
    .contact-container {
        flex-direction: column;
        padding: 10px;
    }
    
    .contact-form, .contact-info {
        width: 100%;
        padding: 0;
    }
    
    .contact-form {
        margin-bottom: 40px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row input {
        margin-bottom: 25px;
    }
    
    .consultation-btn {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-form h2 {
        font-size: 24px;
    }

    .contact-form p {
        font-size: 14px;
    }

    .tab-button {
        font-size: 14px;
    }

    .info-item i {
        font-size: 20px;
    }

    .info-item h4 {
        font-size: 16px;
    }

    .info-item p {
        font-size: 14px;
    }
}