/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* Zmienne */
:root {
    --primary-color: #002F6C; /* Niebieski nordycki (kolor z flagi fińskiej) */
    --secondary-color: #003366; /* Ciemniejszy niebieski */
    --accent-color: #FFFFFF; /* Biały */
    --text-color: #333333;
    --light-bg: #f7f7f7;
    --dark-bg: #2c2c2c;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo img {
    height: 60px;
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 10px;
}

/* Nawigacja */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Przełącznik języka */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-switcher .lang-item {
    text-decoration: none;
    font-size: 14px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 15px;
    background-color: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 500;
}

.language-switcher .lang-item:hover {
    color: var(--secondary-color);
    background-color: var(--light-bg);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 47, 108, 0.1);
}

.language-switcher .lang-item.active {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
    font-weight: 700;
    cursor: default;
    box-shadow: 0 2px 8px rgba(0, 47, 108, 0.2);
}

.language-switcher .lang-item.active:hover {
    transform: none;
    background-color: var(--primary-color);
    color: var(--accent-color);
}

/* Mobilny przełącznik języka */
.mobile-language-switcher {
    display: none;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.mobile-language-switcher .mobile-lang-item {
    display: block;
    text-decoration: none;
    color: var(--primary-color);
    padding: 12px 0;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 2px 0;
    cursor: pointer;
    font-weight: 500;
}

.mobile-language-switcher .mobile-lang-item:hover {
    color: var(--secondary-color);
    background-color: var(--light-bg);
    padding-left: 10px;
    transform: translateX(5px);
}

.mobile-language-switcher .mobile-lang-item.active {
    color: var(--primary-color);
    font-weight: 700;
    background-color: var(--light-bg);
    padding-left: 10px;
    border-left: 3px solid var(--primary-color);
    cursor: default;
}

.mobile-language-switcher .mobile-lang-item.active:hover {
    transform: none;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 47, 108, 0.8), rgba(0, 47, 108, 0.8)), url('/assets/images/hero.png');
    background-size: cover;
    background-position: center;
    color: var(--accent-color);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Page Header */
.page-header {
    background-size: cover;
    background-position: center;
    color: var(--accent-color);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--light-bg);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumbs ul {
    display: flex;
    list-style: none;
}

.breadcrumbs ul li {
    margin-right: 10px;
    font-size: 14px;
}

.breadcrumbs ul li:after {
    content: '/';
    margin-left: 10px;
    color: #999;
}

.breadcrumbs ul li:last-child:after {
    display: none;
}

.breadcrumbs ul li a {
    text-decoration: none;
    color: var(--primary-color);
}

.breadcrumbs ul li a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

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

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

/* Separator */
.separator {
    height: 3px;
    width: 80px;
    background-color: var(--primary-color);
    margin: 0 auto 30px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--accent-color);
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-column p, .footer-column a {
    display: block;
    margin-bottom: 10px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: var(--primary-color);
}

.social-link i {
    color: var(--accent-color);
    font-size: 18px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
}

/* Mobilne menu */
.mobile-menu {
    display: none;
    background-color: var(--accent-color);
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
}

/* Komunikaty formularza */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message ul {
    margin: 0;
    padding-left: 20px;
}

.form-message ul li {
    margin-bottom: 5px;
}

/* Style dla strony głównej */
.about-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.about-section p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
}

/* Services Section dla strony głównej */
.services-section {
    padding: 80px 0;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

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

.service-card {
    background-color: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    height: 450px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.service-content {
    padding: 50px 20px 20px;
    text-align: center;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 15px;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Style dla strony O Nas */
.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-section .separator {
    height: 3px;
    width: 80px;
    background-color: var(--primary-color);
    margin-bottom: 30px;
}

.about-section p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-card-content {
    padding: 20px;
}

.about-card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
}

.about-card-content p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--accent-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-member-info {
    padding: 20px;
}

.team-member-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-member-info p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--accent-color);
    transition: background-color 0.3s;
}

.team-social a:hover {
    background-color: var(--secondary-color);
}

/* Style dla strony Usługi */
.page-header.services-header {
    background-image: linear-gradient(rgba(0, 47, 108, 0.8), rgba(0, 47, 108, 0.8)), url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=1200');
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
}

.services-overview h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.services-overview p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}

.services-tab {
    padding: 12px 25px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.services-tab:hover,
.services-tab.active {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.services-tab i {
    margin-right: 8px;
}

/* Service Detail */
.service-detail {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-bottom: 80px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) .service-item-content {
    direction: ltr;
}

.service-item-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item-content {
    padding: 20px;
}

.service-item-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.service-item-content h3 i {
    margin-right: 15px;
    font-size: 32px;
    color: var(--primary-color);
    background-color: var(--light-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    margin: 30px 0;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-feature i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
    margin-top: 2px;
}

.service-item .btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
}

.service-item .btn i {
    margin-right: 8px;
}

/* Process Section */
.process-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.process-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-item {
    background-color: var(--accent-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.process-item:hover {
    transform: translateY(-10px);
}

.process-item:not(:last-child)::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 24px;
    z-index: 1;
}

.process-item-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-item p {
    font-size: 15px;
    line-height: 1.6;
}

/* Equipment Section */
.equipment-section {
    padding: 80px 0;
}

.equipment-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.equipment-section p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.equipment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.equipment-item {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.equipment-item:hover {
    transform: translateY(-5px);
}

.equipment-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 40px;
    text-align: center;
}

.equipment-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.equipment-details p {
    font-size: 14px;
    margin: 0;
    text-align: left;
}

/* Style dla strony Realizacje */
.page-header.projects-header {
    background-image: linear-gradient(rgba(0, 47, 108, 0.8), rgba(0, 47, 108, 0.8)), url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=1200');
}

/* Projects Filter */
.projects-filter {
    padding: 40px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.filter-button {
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-button:hover,
.filter-button.active {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

/* Projects Grid */
.projects-grid-section {
    padding-bottom: 60px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.project-card {
    background-color: var(--accent-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 47, 108, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin: 0 5px;
    font-size: 18px;
    transition: all 0.3s;
}

.project-overlay a:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color);
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.project-content p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
}

.project-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-category {
    font-size: 12px;
    padding: 5px 10px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 20px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0 60px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
}

/* Client Testimonials */
.testimonials {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

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

.testimonial {
    background-color: var(--accent-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-author-info p {
    font-size: 14px;
    color: #666;
}

/* Style dla strony Kontakt */
.page-header.contact-header {
    background-image: linear-gradient(rgba(0, 47, 108, 0.8), rgba(0, 47, 108, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1200');
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info .separator {
    height: 3px;
    width: 80px;
    background-color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 15px;
}

.contact-detail-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-detail-content p, .contact-detail-content a {
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-content a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-primary {
    background-color: #e91e63;
    color: var(--accent-color);
    border: none;
    cursor: pointer;
}

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

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Media Queries */
@media (max-width: 992px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-item:nth-child(even) {
        direction: ltr;
    }

    .equipment-item {
        width: calc(50% - 20px);
    }

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

    .contact-info {
        margin-bottom: 30px;
    }
}

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

    .mobile-toggle {
        display: block;
    }

    .mobile-menu.show {
        display: block;
    }

    .mobile-language-switcher {
        display: block;
    }

    .language-switcher {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .equipment-item {
        width: 100%;
    }

    .process-item:not(:last-child)::after {
        display: none;
    }

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

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

    .map-container {
        height: 350px;
    }

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

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