/* Enhanced Footer Styles */
.footer-wave-bg {
    background-image: url('../images/wave-pattern-blue.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.footer-wave-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 61, 98, 0.92), rgba(10, 61, 98, 0.98));
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-ship-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background-image: url('../images/ocean-ship-storm.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transform: translateY(30%);
}

.footer-contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.footer-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.footer-nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.footer-nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-azure) 100%);
    border-radius: 10px;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.footer-nav-link:hover .footer-nav-icon {
    transform: rotate(10deg) scale(1.1);
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-azure) 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.3);
}

.footer-heading {
    position: relative;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    color: white;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--color-teal), var(--color-azure));
    border-radius: 3px;
}

.footer-copyright {
    position: relative;
    padding: 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.nautical-divider {
    height: 60px;
    background-image: url('../images/nautical-pattern.jpeg');
    background-size: contain;
    background-position: center;
    position: relative;
    margin-top: -30px;
    margin-bottom: 30px;
}

.nautical-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--color-navy), transparent, var(--color-navy));
}

/* Enhanced button styles for footer */
.footer-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-azure) 100%);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(26, 188, 156, 0.3);
}
