/* ========================================
   Logo & Brand Styles
   ======================================== */

/* Header with Logo */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo img:hover {
    transform: scale(1.05);
}

/* CTA Button in Header */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
}

.header-cta i {
    font-size: 1.2rem;
}

/* Adjust hero section spacing */
.hero-section {
    padding-top: 60px;
}

/* Logo in footer */
.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    height: 60px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .site-logo img {
        height: 55px;
    }
    
    .header-cta {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .hero-section {
        padding-top: 40px;
    }
    
    .footer-logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .site-logo img {
        height: 45px;
    }
    
    .header-cta {
        width: 100%;
        justify-content: center;
    }
}

