/* Header Styles */
.site-header {
    background: linear-gradient(135deg, var(--sias-navy) 0%, var(--sias-dark-navy) 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-top {
    background: rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.lang-switch a {
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin: 0 0.25rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.lang-switch a:hover,
.lang-switch a.current-lang {
    background: white;
    color: var(--sias-navy);
}

.header-contact span {
    margin-left: 1.5rem;
}

.header-main {
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-logo {
    height: 70px;
    width: auto;
}

.site-title-wrapper {
    color: white;
}

.site-title {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.site-title a {
    color: white;
}

.site-description {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
    margin: 0;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.main-navigation a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a.current-menu-item {
    border-bottom-color: var(--sias-gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(0,51,102,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="400" fill="url(%23grid)"/></svg>');
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    color: var(--sias-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--sias-gold);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: inline-block;
    max-width: 700px;
}

/* Services Grid */
.section-padding {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--sias-navy);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,51,102,0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--sias-dark-navy);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.location-card:hover {
    box-shadow: 0 8px 25px rgba(0,51,102,0.15);
}

.location-header {
    background: linear-gradient(135deg, var(--sias-navy), var(--sias-dark-navy));
    color: white;
    padding: 1.5rem;
}

.location-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.location-body {
    padding: 1.5rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.info-icon {
    color: var(--sias-navy);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-content {
    flex: 1;
}

.info-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.info-text {
    color: var(--text-gray);
}

.info-text a {
    color: var(--sias-navy);
}

.info-text a:hover {
    color: var(--sias-light-navy);
}

/* News Grid */
.news-grid {
    display: grid;
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 8px 25px rgba(0,51,102,0.15);
}

.news-date {
    background: var(--sias-navy);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.news-day {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.news-month {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
}

.news-content {
    padding: 2rem;
}

.news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-content h3 a {
    color: var(--sias-dark-navy);
}

.news-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--sias-navy);
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--sias-dark-navy), #001122);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-widget h4 {
    color: var(--sias-gold);
    margin-bottom: 1rem;
}

.footer-widget p,
.footer-widget a {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-widget a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.copyright a {
    color: rgba(255,255,255,0.8);
}

.footer-navigation ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

.footer-navigation a {
    color: rgba(255,255,255,0.6);
}

.footer-navigation a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .header-contact span {
        margin-left: 0;
        margin-right: 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-navigation ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--sias-navy);
        padding: 1rem;
    }

    .main-navigation.toggled ul {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .news-card {
        grid-template-columns: 1fr;
    }

    .news-date {
        padding: 1.5rem;
        flex-direction: row;
        gap: 1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}
