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

:root {
    --primary: #000000;
    --accent: #c41e3a;
    --white: #ffffff;
    --grey: #666666;
    --light-grey: #f5f5f5;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 0;
}

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

.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icons a {
    color: var(--primary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 1rem;
}

.social-icons a:hover {
    color: var(--accent);
}

/* Hero Section - Full Width Image */
.hero {
    margin-top: 30px;
    position: relative;
    height: 70vh;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 3rem;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    padding: 0.5rem 1.2rem;
    background: var(--primary);
    color: white;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Specialized Company Section */
.specialized {
    padding: 6rem 3rem;
    background: white;
}

.specialized-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.specialized-left h3 {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    color: var(--grey);
}

.specialized-left h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.specialized-left .subtitle {
    font-size: 0.85rem;
    color: var(--grey);
    font-weight: 400;
}

.specialized-right p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.8;
}

/* Partners Section */
.partners {
    padding: 3rem 3rem;
    background: white;
    text-align: center;
}

.partners h2 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.partners-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: nowrap;
}

.partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(0%);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo-text {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo-text:hover {
    opacity: 1;
}

/* Experience Section */
.experience {
    padding: 6rem 3rem;
    background: white;
}

.experience-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.experience-header h3 {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--grey);
}

.experience-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.experience-header p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.8;
    max-width: 800px;
}

.experience-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.experience-item {
    text-align: center;
}

.experience-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.experience-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.experience-item p {
    font-size: 0.8rem;
    color: var(--grey);
    line-height: 1.6;
}

/* Solutions Section */
.solutions {
    padding: 6rem 3rem;
    background: var(--light-grey);
}

.solutions-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.solutions-header h3 {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey);
}

.solutions-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.solutions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.solution-item {
    position: relative;
    overflow: hidden;
}

.solution-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-item:hover img {
    transform: scale(1.05);
}

.solution-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Projects Featured Section */
.projects-featured {
    padding: 6rem 3rem;
    background: white;
}

.projects-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.projects-header h3 {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey);
}

.projects-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.projects-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.project-card {
    background: transparent;
}

.project-card:nth-child(even) {
    margin-top: 0;
}

.project-card.large {
    margin-bottom: 2rem;
}

.project-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 0.8rem;
}

.project-card.large .project-image {
    height: 450px;
}

.project-card.small .project-image {
    height: 300px;
}

.project-info {
    padding: 0;
}

.project-info h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    line-height: 1.3;
}

.project-info .subtitle {
    font-size: 0.6rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    display: block;
}

.project-info .label {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.project-info .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.6rem;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    padding: 6rem 3rem;
    background: white;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form h2 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    background: transparent;
}

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

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

.radio-group,
.checkbox-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 400;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.file-upload {
    margin-top: 0.5rem;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    cursor: pointer;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.file-upload-btn:hover {
    background: var(--accent);
}

.file-name {
    display: inline-block;
    margin-left: 1rem;
    font-size: 0.75rem;
    color: var(--grey);
}

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.consent-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.consent-group label {
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 400;
}

.about-company {
    background: white;
    padding: 0;
    display: flex;
    align-items: stretch;
}

.about-company h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-company p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.company-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 0;
}

/* Contact Info Section */
.contact-info-section {
    background: white;
    padding: 0rem 3rem 2rem 3rem;
    border-top: 1px solid #e0e0e0;
}

.contact-info-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details h3 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: auto;
    position: absolute;
    top: -0.6rem;
    left: 0;
    background: white;
    padding: 0 1rem 0 0;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    padding-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.contact-icon {
    font-size: 1rem;
    margin-top: 0.1rem;
}

.contact-text h4 {
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-text p {
    font-size: 0.7rem;
    color: var(--grey);
    line-height: 1.5;
}

.useful-links h3 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.useful-links ul {
    list-style: none;
}

.useful-links li {
    margin-bottom: 0.7rem;
}

.useful-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.useful-links a:hover {
    color: var(--accent);
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 2rem 3rem;
    text-align: center;
}

footer p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Page Content Sections */
.page-content {
    padding: 8rem 3rem 4rem;
    min-height: 60vh;
}

.page-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1rem;
    color: var(--grey);
    line-height: 1.8;
}

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

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .specialized-content,
    .contact-wrapper,
    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-details {
        flex-direction: column;
    }

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

    .project-card.large .project-image,
    .project-card.small .project-image {
        height: 350px;
    }

    .project-card.large {
        margin-bottom: 1.5rem;
    }

    .project-info .btn {
        margin-bottom: 1.5rem;
    }

    .experience-grid,
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .experience-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

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