/* Custom Header Styles - Based on Allen Edwin Homes */

/* Primary Button Style */
.primary-btn {
    background-color: #2c5282 !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.primary-btn:hover {
    background-color: #1a365d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15) !important;
}

/* Hero Section Styles */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.hero1-section-area h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a365d;
}

/* Search Tabs Section */
.search-tabs-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-tabs-section .tabs-area {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.search-heading {
    text-align: center;
    margin-bottom: 20px;
    color: #1a365d;
    font-weight: 600;
}

.search-tabs-section .nav-pills {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 25px !important;
}

.search-tabs-section .nav-pills .nav-link {
    font-weight: 600;
    color: #4a5568;
    border-radius: 4px;
    padding: 10px 25px;
    margin: 0 5px;
}

.search-tabs-section .nav-pills .nav-link.active {
    background-color: #2c5282;
    color: #ffffff;
}

.search-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
}

/* Footer Styles */
.modern-footer {
    background-color: #1a365d;
    color: #ffffff;
    padding: 60px 0 0;
}

.modern-footer h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.modern-footer h4:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4299e1;
}

.modern-footer p {
    color: #e2e8f0;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
    padding: 10px 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icons li a:hover {
    background-color: #4299e1;
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #4299e1;
    padding-left: 5px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    margin-right: 10px;
    color: #4299e1;
    margin-top: 5px;
}

.contact-info li a {
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.contact-info li a:hover {
    color: #4299e1;
}

.contact-btn {
    margin-top: 20px;
    display: inline-block;
}

.copyright-area {
    background-color: #152e4d;
    padding: 20px 0;
    margin-top: 50px;
}

.copyright-text {
    text-align: center;
}

.copyright-text p {
    color: #cbd5e0;
    margin: 0;
}

.copyright-text a {
    color: #4299e1;
    transition: all 0.3s ease;
}

.copyright-text a:hover {
    text-decoration: underline;
}

/* Navigation Menu */
.nav-menu > li > a {
    font-weight: 600 !important;
    position: relative;
}

.nav-menu > li > a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2c5282;
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover:after {
    width: 100%;
}

/* Modern Menu Button */
.modern-menu-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.modern-menu-btn span {
    margin-right: 8px;
    font-weight: 600;
    font-size: 14px;
}

/* Mobile Menu Improvements */
.menu-close {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.menu-close span {
    margin-right: 8px;
    font-weight: 600;
    font-size: 14px;
}

/* Dropdown Improvements */
.dropdown-padding {
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Header Sticky Improvements */
.header-sticky {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}