/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: #000000;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 50px;
    height: 50px;
}

.logo-img {
    width: 100%;
    height: 100%;
    filter: invert(1);
}

.company-name {
    text-transform: uppercase;
    margin-left: -10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}



.header-right {
    display: flex;
    align-items: center;
}

.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #cccccc;
}

.nav-link.phone,
.nav-link.mail {
    display: flex;
    align-items: center;
    gap: 5px;
}

.phone-icon {
    width: 16px;
    height: 16px;
    filter: invert(1);
}

.mail-icon {
    width: 14px;
    height: 14px;
    filter: invert(1);
}

.location-icon {
    width: 14px;
    height: 14px;
    filter: invert(1);
}

/* Main Navigation */
.main-nav {
    background-color: #333333;
    padding: 15px 0;
    border-bottom: 1px solid #444;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 100%;
    overflow-x: auto;
    padding: 0 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.nav-links::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-item:hover {
    background-color: #444444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    padding: 40px 0;
    background-color: #2a2a2a;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: #444444;
}



/* Content Pages */
.content {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.content .container {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left;
    color: #ffffff;
    border-bottom: 2px solid #444;
    padding-bottom: 15px;
}

.content-text {
    max-width: 800px;
    margin: 0;
}

.content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
    text-align: left;
}

.contact-link {
    color: #4a9eff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #66b3ff;
    text-decoration: underline;
}

/* Contacts Page Two-Column Layout */
.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.contacts-left,
.contacts-right {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #444;
    height: fit-content;
}

.contacts-left p,
.contacts-right p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

.contacts-left p:last-child,
.contacts-right p:last-child {
    margin-bottom: 0;
}

.contact-heading {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-heading:first-child {
    margin-top: 0;
}

.contact-content {
    margin-bottom: 20px;
}

.contact-content p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
    color: #cccccc;
}

.contact-content p:last-child {
    margin-bottom: 0;
}

/* Responsive design for contacts layout */
@media (max-width: 768px) {
    .contacts-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contacts-left,
    .contacts-right {
        padding: 20px;
    }
}

/* Active Navigation State */
.nav-item.active {
    background-color: #444444;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 50px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section:first-child {
    grid-row: 1 / 3;
}

.footer-brand {
    display: grid;
    grid-template-rows: auto auto;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .footer-company {
    margin-top: 0;
}

.footer-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
}

.footer-logo-company {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    filter: invert(1);
}

.footer-company {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.footer-legal-info {
    margin-top: 5px;
}

.footer-legal-info p {
    font-size: 12px;
    color: #888888;
    line-height: 1.4;
    margin: 0 0 5px 0;
}

.footer-legal-link {
    color: #888888;
    text-decoration: underline;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #cccccc;
}



.footer-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

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

.footer-links li {
    margin: 0;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link.phone,
.footer-link.mail {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-phone-icon {
    width: 14px;
    height: 14px;
    filter: invert(1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #cccccc;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-copyright {
    font-size: 12px;
    color: #888888;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-item {
        font-size: 15px;
        padding: 9px 18px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-left {
        flex-direction: row;
        gap: 15px;
        text-align: left;
        align-items: center;
    }
    
    .header-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        overflow-x: auto;
        padding: 0 5px;
    }
    
    .nav-item {
        text-align: center;
        font-size: 14px;
        padding: 8px 16px;
        min-width: fit-content;
    }
    

    
    .page-title {
        font-size: 28px;
    }
    
    .content-text p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .hero-img {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-company {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    

}

@media (max-width: 480px) {
    .header {
        padding: 15px 0;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .company-name {
        font-size: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .nav-item {
        font-size: 13px;
        font-weight: 700;
        padding: 6px 12px;
    }
    
    .nav-links {
        gap: 10px;
        justify-content: center;
    }
    

    
    .page-title {
        font-size: 24px;
    }
    
    .content-text p {
        font-size: 14px;
    }
    
    .hero-img {
        height: 250px;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-logo {
        width: 30px;
        height: 30px;
    }
    
    .footer-company {
        font-size: 18px;
    }
} 
