/* NSE – Corporate design – Primary: #03023C */

:root {
    --nse-primary: #03023C;
    --nse-primary-light: rgba(3, 2, 60, 0.08);
    --nse-accent: #0d6efd;
    --nse-white: #ffffff;
    --nse-line: rgba(255, 255, 255, 0.4);
    --nse-text: #1a1a2e;
    --nse-text-muted: #5a5a6e;
    --nse-bg-alt: #f8f9fa;
    --font-sans: "DM Sans", "Segoe UI", system-ui, sans-serif;
    --shadow-sm: 0 2px 8px rgba(3, 2, 60, 0.06);
    --shadow-md: 0 4px 20px rgba(3, 2, 60, 0.08);
    --shadow-lg: 0 8px 40px rgba(3, 2, 60, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--nse-text);
    margin: 0;
    padding: 0;
    background: var(--nse-white);
}

/* Language switcher – in header */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.lang-link {
    color: var(--nse-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
}

.lang-link:hover,
.lang-link-active {
    color: var(--nse-primary);
}

.lang-switcher .lang-sep {
    color: rgba(3, 2, 60, 0.35);
    font-size: 0.75rem;
    user-select: none;
}

/* Header – white background so logo (primary color) is visible */
.site-header {
    background: var(--nse-white);
    border-bottom: 1px solid rgba(3, 2, 60, 0.08);
    padding: 1.125rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-sm);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.site-header .container-wide {
    max-width: 1200px;
}

/* Logo image */
.logo {
    display: block;
    text-decoration: none;
}

.logo img {
    display: block;
    height: auto;
    max-height: 52px;
    width: auto;
}

.site-header .logo img {
    max-height: 52px;
}

.site-footer .logo img {
    max-height: 40px;
}

/* Nav – primary color on white header */
.main-nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--nse-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--nse-text);
}

.nav-link-active {
    color: var(--nse-primary);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--nse-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    position: relative;
}

.nav-toggle .nav-icon-close {
    display: none;
}

@media (max-width: 768px) {
    .site-header .container-wide {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 10;
        gap: 0;
        padding: 1rem 0 1.25rem;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        border-top: 1px solid rgba(3, 2, 60, 0.1);
        margin-top: 0.5rem;
        background: var(--nse-white);
    }

    .site-header.nav-open .main-nav {
        display: flex;
    }

    .main-nav .nav-link {
        padding: 0.75rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(3, 2, 60, 0.08);
    }

    .main-nav .nav-link:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: block;
    }

    .site-header.nav-open .nav-toggle .nav-icon-open {
        display: none;
    }

    .site-header.nav-open .nav-toggle .nav-icon-close {
        display: block;
    }
}

/* Hero – fixed height for consistent EN/FR layout */
.hero {
    position: relative;
    background: var(--nse-primary) url('/assets/images/architecture-buildings-business.webp') center / cover no-repeat;
    color: var(--nse-white);
    padding: 0 2rem;
    text-align: center;
    height: 480px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 2, 60, 0.55) 0%, rgba(3, 2, 60, 0.4) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
        min-height: 500px;
        padding: 0 1rem;
    }
    .hero .container {
        padding: 0 1rem;
    }
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 0.75rem;
    }
    .hero .container {
        padding: 0 0.75rem;
    }
}

.hero-title {
    font-size: clamp(1.875rem, 4.5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.125rem;
    opacity: 1;
    margin: 0;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7), 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 50rem;
    margin: 0 auto 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7), 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Sections */
.section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-alt {
    background: var(--nse-bg-alt);
}

.section-dark {
    position: relative;
    background: linear-gradient(180deg, var(--nse-primary) 0%, #020218 100%);
    color: var(--nse-white);
}

.section-dark .section-title,
.section-dark .positioning-intro,
.section-dark .section-tagline {
    color: var(--nse-white);
}

.section-dark .section-title::after {
    background: linear-gradient(90deg, var(--nse-white), transparent);
}

.section-dark .section-list li {
    color: rgba(255, 255, 255, 0.9);
}

.section-dark .section-list li::before {
    color: var(--nse-white);
}

.section-cta-wrap {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(3, 2, 60, 0.1);
}

.section-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--nse-primary);
    color: var(--nse-white);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.section-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--nse-white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1100px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 0 0 1.5rem;
}

.hero-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 50rem;
    margin: 0 auto 1.5rem;
}

.hero-intro:last-of-type {
    margin-bottom: 1.5rem;
}

.intro-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nse-text-muted);
    margin: -0.5rem 0 1.5rem;
}

.section-divider {
    border: none;
    border-top: 3px solid rgba(3, 2, 60, 0.12);
    margin: 2.5rem 0;
}

/* Content card – reusable card style (homepage vibe) */
.content-card {
    background: var(--nse-white);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(3, 2, 60, 0.06);
}

/* Intro section – card-style block */
#intro .container-wide {
    background: var(--nse-white);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(3, 2, 60, 0.06);
}

#intro .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

#intro .section-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
}

.hero-cta {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    background: var(--nse-white);
    color: var(--nse-primary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-md);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--nse-primary);
}

.section-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--nse-primary);
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, var(--nse-primary), transparent);
    border-radius: 2px;
}

.section-content p,
.lead-p {
    margin: 0 0 1.25rem;
    color: var(--nse-text-muted);
    font-size: 1.0625rem;
}

.section-content p:last-child,
.lead-p + p {
    margin-bottom: 0;
}

.section-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.section-list li {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--nse-text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.section-list li::before {
    content: "›";
    flex-shrink: 0;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--nse-primary);
    line-height: 1;
}

.section-tagline {
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--nse-primary);
    margin: 1.25rem 0 0;
    font-style: italic;
}

/* Key figures section */
.key-figures-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.key-figure-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--nse-white);
    border-radius: 10px;
    border: 1px solid rgba(3, 2, 60, 0.08);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.key-figure-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.key-figure-value {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--nse-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.key-figure-label {
    font-size: 0.9375rem;
    color: var(--nse-text-muted);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .key-figures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .key-figures-grid {
        grid-template-columns: 1fr;
    }
}

#mission .container-wide {
    background: var(--nse-white);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(3, 2, 60, 0.06);
}

#mission .section-list li {
    padding-left: 0.25rem;
}

#mission .section-list li::before {
    color: var(--nse-primary);
}

/* Activity grid: 4 boxes, 2 per row */
.activity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.activity-box {
    background: var(--nse-white);
    border: 2px solid rgba(3, 2, 60, 0.1);
    border-radius: 6px;
    padding: 1.75rem;
}

.activity-box .activity-title {
    margin-top: 0;
}

.activity-box .section-list {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .activity-grid {
        grid-template-columns: 1fr;
    }
}

/* Activity list – full-width sections, no boxes */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--nse-white);
}

.activity-item {
    padding: 2rem 0;
    border-bottom: 3px solid rgba(3, 2, 60, 0.08);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--nse-primary);
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 0.5rem;
}

.activity-item-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, var(--nse-primary), transparent);
    border-radius: 2px;
}

.activity-item .section-list {
    margin-bottom: 0;
}

.activity-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--nse-primary);
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
}

.activity-note {
    margin: 0.75rem 0 0;
    font-size: 0.9375rem;
    color: var(--nse-text-muted);
    font-style: italic;
}

.positioning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.positioning-col {
    padding: 1.75rem 2rem;
    background: var(--nse-white);
    border-radius: 10px;
    border: 1px solid rgba(3, 2, 60, 0.08);
    box-shadow: var(--shadow-sm);
}

.positioning-intro {
    font-weight: 600;
    color: var(--nse-text);
    margin: 1.25rem 0 0.5rem;
    font-size: 1rem;
}

.positioning-intro:first-of-type {
    margin-top: 0;
}

.section-dark .positioning-intro {
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .positioning-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .team-card-with-photo,
    .team-member-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-photo {
        width: 160px;
        height: 160px;
    }
}

/* Page title section – primary background, white text (e.g. Our Team) */
.section-page-title {
    background: linear-gradient(180deg, var(--nse-primary) 0%, #020218 100%);
    padding: 2.5rem 0 2rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--nse-white);
    margin: 0;
    letter-spacing: 0.02em;
}

.page-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0 0;
    font-weight: 500;
}

.profile-back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.profile-back-link:hover {
    color: var(--nse-white);
}

/* Team summary grid – short profile cards on Our Team page */
.team-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.team-summary-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.team-summary-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--nse-bg-alt);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-summary-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-summary-card .team-photo-wrap {
    margin-bottom: 1rem;
}

.team-summary-card .team-photo {
    width: 160px;
    height: 160px;
}

.team-summary-card .team-member-name {
    margin: 0 0 0.25rem;
}

.team-summary-card .team-member-role {
    margin: 0 0 0.75rem;
}

.team-summary-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nse-primary);
}

.team-member-card {
    cursor: default;
    text-decoration: none;
}

.team-member-card:hover {
    transform: none;
}

.team-member-bio {
    font-size: 0.9375rem;
    color: var(--nse-text-muted);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

@media (max-width: 900px) {
    .team-summary-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-summary-grid,
    .team-summary-grid-3 {
        grid-template-columns: 1fr;
    }
}

.team-lead-card {
    /* No inner box – content flows within parent content-card */
}

.team-card-with-photo {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.team-photo-wrap {
    flex-shrink: 0;
}

.team-photo {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 6px;
}


.team-member-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.team-member-info {
    flex: 1;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--nse-primary);
    margin: 0 0 0.25rem;
}

.team-member-role {
    font-size: 0.9375rem;
    color: var(--nse-text-muted);
    margin: 0 0 1.25rem;
}

.team-bio p {
    margin: 0 0 1rem;
    color: var(--nse-text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.team-bio p:last-child {
    margin-bottom: 0;
}

.team-member-name-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nse-primary);
    margin: 0 0 0.25rem;
}

.team-member-role-large {
    font-size: 1rem;
    color: var(--nse-text-muted);
    margin: 0 0 1.5rem;
}

.team-credentials {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    color: var(--nse-text);
}

.team-intro {
    color: var(--nse-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem;
}

.team-achievements {
    margin-bottom: 2rem;
}

.team-achievements:last-child {
    margin-bottom: 0;
}

.achievement-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--nse-primary);
    margin: 0 0 0.75rem;
    letter-spacing: 0.02em;
}

.vision-in-team {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(3, 2, 60, 0.1);
}

.profile-linkedin {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(3, 2, 60, 0.1);
}

.linkedin-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--nse-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.linkedin-profile-link:hover {
    text-decoration: underline;
}

.linkedin-profile-link i {
    font-size: 1.25rem;
}

.team-trusted-logos {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(3, 2, 60, 0.1);
}

.team-trusted-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--nse-primary);
    margin: 0 0 1.5rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 0.75rem;
}

.team-trusted-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, var(--nse-primary), transparent);
    border-radius: 2px;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 1rem;
}

.client-logo-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2rem;
}

.contact-info-card {
    padding: 2.5rem 3rem;
}

.contact-form-card {
    padding: 2.5rem 3rem;
}

.contact-success {
    padding: 1rem 1.25rem;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.contact-error {
    padding: 1rem 1.25rem;
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-persons {
    margin-bottom: 1.5rem;
}

.contact-person {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(3, 2, 60, 0.08);
}

.contact-person:last-child {
    border-bottom: none;
}

.contact-person-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--nse-primary);
    margin: 0 0 0.5rem;
}

.contact-person-role {
    font-weight: 500;
    color: var(--nse-text-muted);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.contact-person .contact-item {
    margin-bottom: 0.5rem;
}

.contact-person .contact-item:last-child {
    margin-bottom: 0;
}


.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1rem;
    color: var(--nse-text-muted);
    font-size: 1rem;
}

.contact-item i {
    color: var(--nse-primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--nse-primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group.form-group-full {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--nse-text);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.875rem;
    border: 1px solid rgba(3, 2, 60, 0.15);
    border-radius: 6px;
    font-size: 0.9375rem;
    font-family: inherit;
}

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

.contact-form .contact-submit {
    grid-column: 1 / -1;
    justify-self: start;
}

.contact-submit {
    padding: 0.75rem 2rem;
    background: var(--nse-primary);
    color: var(--nse-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.contact-submit:hover {
    opacity: 0.9;
}

.contact-map {
    margin-top: 2rem;
    padding: 2.5rem 3rem;
}

.map-embed {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border: none;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-card {
        order: -1;
    }

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

    /* Form: Name, Company, Phone, Email always 2 per row (1/2) */

    .contact-item a {
        padding: 0.35rem 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .contact-person {
        padding: 1.25rem 0;
    }

    .contact-person-name {
        font-size: 1.0625rem;
    }
}

@media (max-width: 480px) {
    .contact-info-card,
    .contact-form-card {
        padding: 1.25rem 1rem;
    }

    .section-page-title .container-wide {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Footer */
.site-footer {
    background: var(--nse-primary);
    color: var(--nse-white);
    padding: 2.5rem 0;
    text-align: center;
    margin-top: 0;
}

.site-footer .logo img {
    opacity: 0.95;
}

.site-footer .copyright {
    letter-spacing: 0.02em;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.85;
    margin: 0;
}
