* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #003366;
    --accent-gold: #FFB81C;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navigation */
header {
    background: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--primary-blue);
}

.logo-accent {
    color: var(--accent-gold);
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin-top: 2px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 2.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-gold);
}

/* Contact Page */
.contact-section {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-card,
.contact-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 51, 102, 0.08);
}

.contact-card h2,
.contact-info-card h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
}

.contact-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 51, 102, 0.2);
    font-size: 0.95rem;
    transition: border 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(255, 184, 28, 0.2);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-helper {
    font-size: 0.8rem;
    color: var(--text-light);
}

.captcha-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.captcha-display {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 51, 102, 0.05);
    color: var(--primary-blue);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 700;
}

.captcha-display button {
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}

.captcha-display button:hover {
    color: var(--accent-gold);
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.form-status {
    padding: 1rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(0, 128, 0, 0.1);
    color: #0b7a0b;
    border: 1px solid rgba(0, 128, 0, 0.25);
}

.form-status.error {
    display: block;
    background: rgba(204, 0, 0, 0.1);
    color: #8c0b0b;
    border: 1px solid rgba(204, 0, 0, 0.25);
}

.contact-info-grid {
    display: grid;
    gap: 1.5rem;
}

.contact-info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-light);
    font-size: 0.95rem;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--accent-gold);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-info-list svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 51, 102, 0.1);
    color: var(--primary-blue);
    transition: all 0.3s;
}

.contact-social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004d7a 100%);
    color: var(--white);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
section {
    padding: 4rem 2rem;
}

section.light {
    background: var(--light-gray);
}

section.white {
    background: var(--white);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 900;
}

.section-intro {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
}

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

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
}

.card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 184, 28, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Links */
.section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2rem;
    transition: all 0.3s;
}

.section-link:hover {
    color: var(--accent-gold);
    gap: 0.8rem;
}

.section-link::after {
    content: '›';
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.section-link:hover::after {
    transform: translateX(4px);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.timeline-date {
    text-align: right;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    padding: 1rem;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 2rem;
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 800;
}

.blog-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    margin: 1rem 0;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: block;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.timeline-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.timeline-content ul li {
    color: var(--text-light);
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-style: italic;
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem 2rem 1.5rem;
    font-size: 0.85rem;
}

footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-gold) !important;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-section ul li a {
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-bottom strong {
    color: var(--white);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-card,
    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-submit {
        width: 100%;
        justify-content: center;
    }

    .contact-social-links {
        justify-content: flex-start;
    }

    .page-header {
        padding: 4rem 2rem 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-date {
        text-align: left;
    }

    .timeline-content::before {
        left: -25px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    footer {
        padding: 1.5rem 1.5rem 1rem;
    }
}
