/* ===== MODERN HEADER ===== */
.modern-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.modern-header .navbar {
    padding: 1rem 0;
}

/* Brand/Logo */
.modern-header .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.modern-header .navbar-brand:hover {
    transform: translateY(-2px);
}

.modern-header .brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.modern-header .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

/* Navigation Links */
.modern-header .navbar-nav {
    align-items: center;
    gap: 2rem;
}

.modern-header .nav-link {
    font-weight: 500;
    color: #4a5568 !important;
    text-decoration: none;
    padding: 0.5rem 0 !important;
    position: relative;
    transition: color 0.3s ease;
}

.modern-header .nav-link:hover {
    color: #a68554 !important;
}

.modern-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a68554, #c19a6b);
    transition: width 0.3s ease;
}

.modern-header .nav-link:hover::after {
    width: 100%;
}

/* CTA Button */
.modern-header .cta-button {
    background: linear-gradient(135deg, #a68554, #c19a6b);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(166, 133, 84, 0.2);
}

.modern-header .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 133, 84, 0.3);
}

.modern-header .cta-button::after {
    display: none;
}

/* Mobile Toggle */
.modern-header .navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(166, 133, 84, 0.1);
}

.modern-header .navbar-toggler:focus {
    box-shadow: none;
}

.modern-header .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='%23a68554' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .modern-header .navbar-collapse {
        background: white;
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .modern-header .navbar-nav {
        gap: 0;
    }
    
    .modern-header .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .modern-header .cta-button {
        margin: 1rem 0 0 0;
        display: inline-block;
        text-align: center;
    }
}
  
 /* ===== MODERN FOOTER ===== */
.modern-footer {
    background: linear-gradient(135deg, #a68554, #c19a6b 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.modern-footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Brand Section */
.modern-footer .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modern-footer .footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.modern-footer .footer-brand h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modern-footer .footer-brand p {
    color: #f1f5f9;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
}

/* Social Links */
.modern-footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.modern-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #f1f5f9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-footer .social-links a:hover {
    background: #f4c067;
    color: #1a202c;
    transform: translateY(-2px);
}

/* Footer Sections */
.modern-footer .footer-section h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.modern-footer .footer-section ul {
    list-style: none;
    padding: 0;
}

.modern-footer .footer-section ul li {
    margin-bottom: 0.75rem;
}

.modern-footer .footer-section ul li a {
    color: #f1f5f9;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.modern-footer .footer-section ul li a:hover {
    color: #f4c067;
}

/* Contact Info */
.modern-footer .contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
    font-size: 0.95rem;
}

.modern-footer .contact-info i {
    color: #f4c067;
    width: 16px;
}

/* Footer Bottom */
.modern-footer .footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin-bottom: 2rem;
}

.modern-footer .footer-bottom {
    text-align: center;
}

.modern-footer .footer-bottom p {
    color: #e2e8f0;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .modern-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .modern-footer .footer-brand {
        align-items: center;
    }

    .modern-footer .footer-brand p {
        max-width: none;
    }

    .modern-footer .social-links {
        justify-content: center;
    }

    .modern-footer .contact-info p {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .modern-footer {
        padding: 3rem 0 1.5rem;
    }

    .modern-footer .footer-content {
        gap: 1.5rem;
    }
}
