/* Simple Navy Blue & White Theme - Minimal Design */

:root {
    --navy-blue: #1e3a8a;
    --navy-blue-dark: #0f172a;
    --white: #ffffff;
    --light-grey: #f1f5f9;
    --text-dark: #1e293b;
    --text-grey: #64748b;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--light-grey);
}

.navbar {
    padding: 1rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy-blue);
}

/* Page Header */
.page-header {
    padding: 7rem 0 3rem;
    background: var(--navy-blue);
    margin-top: 70px;
}

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-breadcrumb {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Hero Section */
.contact-hero-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.contact-info-section {
    max-width: 600px;
}

.contact-intro {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-details {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-grey);
    border-radius: 6px;
}

.contact-icon-wrapper {
    flex-shrink: 0;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: var(--navy-blue);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
}

.contact-detail-content {
    flex: 1;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.contact-value:hover {
    color: var(--navy-blue);
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: var(--light-grey);
    border: 1px solid var(--navy-blue);
    border-radius: 4px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--navy-blue);
    border-radius: 50%;
}

.badge-text {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.8rem;
}

.contact-image-section {
    position: relative;
}

.contact-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay-shape {
    display: none;
}

/* Portfolio Gallery Section */
.portfolio-gallery-section {
    padding: 4rem 0;
    background: var(--light-grey);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    color: var(--navy-blue);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.section-description {
    font-size: 0.95rem;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--white);
    border: 1px solid #e2e8f0;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.9);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.gallery-category {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Overview Section */
.services-overview-section {
    padding: 4rem 0;
    background: var(--white);
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-overview-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.service-overview-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.service-overview-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-overview-description {
    color: var(--text-grey);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.service-overview-list {
    list-style: none;
}

.service-overview-list li {
    color: var(--text-dark);
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.85rem;
}

.service-overview-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--navy-blue);
    font-weight: bold;
}

/* CTA Section */
.contact-cta-section {
    padding: 4rem 0;
    background: var(--navy-blue);
    text-align: center;
}

.cta-content-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    background: var(--light-grey);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.main-footer {
    background: var(--navy-blue-dark);
    padding: 2.5rem 0 1.25rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.affiliations {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.affiliations p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.75rem;
    }

    .contact-hero-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .gallery-grid,
    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
