@import url('fonts/fonts.css');
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000438;
    --accent-color: #2864DC;
    --btn-color: #8BADF2;
    --light-bg: #8D8E9B;
    --white:#FFF;
    --border-radius: 0px;
    --border-radius-input: 0px;
  }

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; */
    font-family: 'TTNorms', sans-serif;
    line-height: normal;
    color: var(--primary-color);
    background-color: var(--white);
    font-size:16px;
}

html {
    scroll-behavior: smooth;
}

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: end;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.25s ease;
}

.social-link:hover {
    color: #60a5fa;
}

.contact-info {
    display: flex;
    gap: 24px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-info a:hover {
    color: #60a5fa;
}

.main-header {
    padding: 16px 0;
}

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

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo-text p {
    font-size: 12px;
    color: var(--light-bg);
    margin: 0;
    line-height: 1.2;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    font-family: 'TTNorms', sans-serif;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.language-selector {
    position: relative;
}

.language-btn {
    background: none;
    border: none;
    color: var(--light-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    transition: color 0.25s ease;
}

.language-btn:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 4, 56, 0.5), rgba(0, 4, 56, 0.5)),
        url('./img/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    position: relative;
    margin-top: 108px; /* Account for fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.6); */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    /* margin-bottom: 24px; */
    animation: fadeInUp 0.8s ease;
}

/* Contact Section */
.contact-section {
    padding: 32px 0;
    background: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info-column.first {
    gap: 30px;
    justify-content: space-between;
}
.contact-info-row {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.5fr 1fr;
}
.info-card {
    /* background: var(--white); */
    /* padding: 24px; */
    /* border-radius: var(--border-radius); */
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
    /* transition: transform 0.25s ease, box-shadow 0.25s ease; */
}

.info-card:hover {
    /* transform: translateY(-2px); */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
}

.info-card h3 {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-bg);
    margin-bottom: 6px;
}

h4 {
    font-weight: 500;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item p {
    color: var(--light-bg);
    margin: 0;
}

.info-item strong {
    color: var(--primary-color);
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.25s ease;
}

.info-content a.accent {
    color: var(--accent-color);
}

.info-content a:hover {
    color: var(--accent-color);
}

.social-links-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-secondary {
    font-family: 'TTNorms', sans-serif;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid var(--primary-color);
    width: fit-content;
    font-size: 1rem;
    line-height: 1.20 !important;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}
.about {
    padding-bottom: 24px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    text-align: justify;
}
/* Map Column */
.map-column {
    display: flex;
    flex-direction: column;
}

.map-container {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
    transition: filter 0.25s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Contact Form */
.form-column {
    display: flex;
    flex-direction: column;
    position: relative;
}

.contact-form {
    background: var(--primary-color);
    color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.contact-form #copy {
    display:none;
    visibility: hidden;
}

.form-column .contact-form p.last {
    margin-bottom: 17px !important;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-form p {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius-input);
    font-size: 16px;
    background: var(--white);
    color: var(--primary-color);
    transition: box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(191, 219, 254, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

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

.btn-submit {
    width: 100%;
    background: var(--btn-color);
    color: var(--primary-color);
    border: none;
    padding: 16px;
    border-radius: var(--border-radius-input);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}
textarea,
select,
input {
    font-family: 'TTNorms', sans-serif;
}
.btn-submit:hover {
    color: var(--white);
    background: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}
.footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
}
.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    justify-content: center;
}

.footer-logo .logo-icon {
    background: var(--white);
    color: var(--primary-color);
}

.footer-logo .logo-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
}

.footer-logo .logo-text p {
    font-size: 12px;
    color: hsla(0,0%,100%,.4);
    margin: 0;
    line-height: 1.2;
}

.footer-description {
    color: hsla(0,0%,100%,.4);
    font-size: 15px;
    line-height: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

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

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-btn {
    background: none;
    border: 1px solid #4b5563;
    color: #9ca3af;
    padding: 12px 16px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.footer-btn:hover {
    color: var(--white);
    border-color: var(--light-bg);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}
.top-bar {
    display:inherit;
    visibility:visible;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .contact-info-row .show_map {
        margin: 0 auto;
    }
    .top-bar {
        display:none;
        visibility:hidden;
    }
    .container {
        /* padding: 0 16px; */
        padding: 0 2rem;
    }
    .contact-info-row {
        display: flex;
        gap: 24px;
        grid-template-columns:inherit;
        flex-direction: column;
    }
    
    .header-content {
        flex-direction: row;
        gap: 16px;
        text-align: center;
    }
    
    .header-actions {
        flex-direction: row;
        gap: 12px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero {
        /* padding: 80px 0 60px; */
        padding: 40px 0 40px;
        margin-top: 120px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .contact-section {
        padding: 32px 0;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .footer {
        padding: 32px 0 16px;
    }
    
    .social-links-grid {
        justify-content: center;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    img.logo-left {
        width: 40px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .contact-form h3 {
        font-size: 20px;
    }
    
    .info-card {
        /* padding: 16px; */
    }
    
    .contact-form {
        padding: 16px;
    }
    .hero {
        padding: 40px 0 40px;
        margin-top: 76px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-24 {
    margin-bottom: 24px;
}

.mt-24 {
    margin-top: 24px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Loading States */
.loading {
    opacity: 1;
    pointer-events: none;
}
.loading .form-group, 
.loading .btn-submit {
    opacity: 0.3;
    pointer-events: none;
}
.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -24px 0 0 -24px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 5000;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth Scrolling Enhancement */
html {
    scroll-padding-top: 120px;
}

/* Print Styles */
@media print {
    .header,
    .footer {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
        padding: 40px 0;
    }
    
    body {
        font-size: 12px;
        line-height: 1.4;
    }
}

.nf-error-msg,
.ninja-forms-req-symbol {
    color: #e80000;
}