/* Enhanced Header Styles */
header {
    background: linear-gradient(135deg, #1e2a3a 0%, #2c3e50 100%);
    color: white;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="rgba(255,255,255,0.05)" d="M100,0H0V100H100V0ZM50,75A25,25,0,1,1,75,50,25,25,0,0,1,50,75Z"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.logo-container {
    flex: 1;
    max-width: 400px;
    position: relative;
    transition: transform 0.3s ease;
}

.logo-container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-container:hover::after {
    opacity: 1;
}

.logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: white;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #a0aec0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-info div {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-info i {
    margin-top: 5px;
    color: #a0aec0;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-info:hover i {
    transform: scale(1.2);
}

.contact-info p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* Fix for mobile address formatting - keep this */
.address p {
    white-space: nowrap;
}

.header-tagline {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    text-align: center;
    background: #a0aec0;
    color: #1e2a3a;
    padding: 0.5rem 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    transform: translateY(50%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

/* Keep the rest of your existing CSS below */
