* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #000;
color: #fff;
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Jura', sans-serif;
} .navbar {
background-color: rgba(0, 0, 0, 0.95);
backdrop-filter: blur(10px);
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
border-bottom: 1px solid #FF7F27;
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 2rem;
}
.nav-wrapper {
display: flex;
align-items: center;
gap: 1rem;
flex: 1;
justify-content: center;
}
.logo {
height: 60px;
width: auto;
margin-top: 10px;
}
.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
margin: 0;
padding: 0;
flex: 1;
justify-content: center;
}
.nav-menu a {
color: #fff;
text-decoration: none;
font-family: 'Jura', sans-serif;
font-weight: 400;
transition: color 0.3s ease;
position: relative;
}
.nav-menu a:hover {
color: #FF7F27;
}
.nav-menu a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 0;
background-color: #FF7F27;
transition: width 0.3s ease;
}
.nav-menu a:hover::after {
width: 100%;
}
.social-links {
display: flex;
list-style: none;
gap: 1rem;
margin: 0;
padding: 0;
}
.social-links a {
color: #fff;
text-decoration: none;
transition: color 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 50%;
background-color: transparent;
transition: all 0.3s ease;
}
.social-links a:hover {
color: #FF7F27;
background-color: rgba(255, 127, 39, 0.2);
transform: translateY(-2px);
}
.social-icon {
width: 22px;
height: 22px;
display: block;
color: #fff;
transition: color 0.3s ease;
}
.social-links a:hover .social-icon {
color: #FF7F27;
} .mobile-menu-btn {
display: none;
background: none;
border: none;
color: #fff;
font-size: 1.5rem;
cursor: pointer;
} .main-content {
min-height: calc(100vh - 80px); padding-top: 80px;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
} .hero {
position: relative;
height: calc(100vh - 80px); display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
margin: 0 0 2rem 0;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
color: #FF7F27;
}
.hero p {
font-size: 1.3rem;
margin-bottom: 2rem;
color: #ccc;
}
.hero-cta-button {
display: inline-block;
background: transparent;
color: #fff;
padding: 1rem 2.5rem;
border-radius: 5px;
border: 2px solid #FF7F27;
font-family: 'Jura', sans-serif;
font-size: 1.1rem;
font-weight: 700;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(255, 127, 39, 0.2);
}
.hero-cta-button:hover {
background: rgba(255, 127, 39, 0.1);
border-color: #FFA057;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(255, 127, 39, 0.5);
}
.hero-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
} .section {
padding: 0 2rem 0rem 2rem;
}
.section h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
text-align: center;
color: #FF7F27;
}
.section h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: #fff;
} .load-more-container {
text-align: center;
margin-top: 3rem;
}
.load-more-btn {
display: inline-block;
padding: 1rem 3rem;
background: rgba(255, 255, 255, 0.05);
color: #fff;
text-decoration: none;
border-radius: 5px;
font-weight: 700;
font-size: 1.1rem;
transition: all 0.3s ease;
border: 2px solid rgba(255, 255, 255, 0.2);
cursor: pointer;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.load-more-btn:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.4);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.load-more-btn.hidden {
display: none;
} .gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.gallery-item {
position: relative;
overflow: hidden;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
transition: transform 0.3s ease;
}
.gallery-item:hover {
transform: translateY(-5px);
}
.gallery-item img {
width: 100%;
height: 250px;
object-fit: cover;
transition: transform 0.3s ease;
}
.gallery-item:hover img {
transform: scale(1.05);
}
.gallery-caption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
color: #fff;
padding: 1rem;
transform: translateY(100%);
transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-caption {
transform: translateY(0);
} .services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.service-card {
background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
padding: 2rem;
border-radius: 10px;
border: 1px solid #333;
transition: all 0.3s ease;
text-align: center;
}
.service-card:hover {
border-color: #FF7F27;
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(255, 127, 39, 0.1);
}
.service-card h3 {
color: #FF7F27;
margin-bottom: 1rem;
}
.service-card p {
margin-bottom: 1rem;
}
.service-card p:last-child {
margin-bottom: 0;
}
.about-cta-link {
display: inline-block;
margin-top: 1.5rem;
color: #FF7F27;
text-decoration: none;
font-weight: 500;
font-size: 1.1rem;
transition: all 0.3s ease;
position: relative;
}
.about-cta-link::after {
content: ' →';
transition: transform 0.3s ease;
display: inline-block;
}
.about-cta-link:hover {
color: #fff;
}
.about-cta-link:hover::after {
transform: translateX(5px);
} .systems-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 3rem;
margin: 3rem 0;
}
.system-card {
background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
padding: 2rem;
border-radius: 15px;
border: 1px solid #333;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.system-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #FF7F27, #fff);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.system-card:hover::before {
transform: scaleX(1);
}
.system-card:hover {
border-color: #FF7F27;
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(255, 127, 39, 0.1);
}
.system-card h3 {
color: #FF7F27;
margin-bottom: 1rem;
font-size: 1.5rem;
} .contact-info {
display: flex;
flex-direction: column;
gap: 2rem;
order: 2;
height: 100%;
}
.contact-social-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 0.5rem;
}
.contact-social-links a {
color: #FF7F27;
transition: all 0.3s ease;
}
.contact-social-links a:hover {
color: #fff;
transform: translateY(-3px);
}
.contact-social-links .social-icon {
height: 35px;
width: 35px;
}
.contact-card {
background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
padding: 2rem;
border-radius: 10px;
border: 1px solid #333;
text-align: center;
}
.contact-card h3 {
color: #FF7F27;
margin-bottom: 1rem;
}
.contact-card a {
color: #FF7F27;
text-decoration: none;
font-size: 1.2rem;
}
.contact-card a:hover {
text-decoration: underline;
} .contact-layout-wrapper {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
margin: 2rem 0;
} .contact-form-container {
order: 1;
display: flex;
flex-direction: column;
height: 100%;
}
.contact-form-card {
max-width: 100%;
flex: 1;
display: flex;
flex-direction: column;
}
.contact-form {
margin-top: 1.5rem;
}
.form-group {
margin-bottom: 1.5rem;
text-align: left;
}
.form-group label {
display: block;
color: #FF7F27;
margin-bottom: 0.5rem;
font-weight: 500;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 0.75rem;
background-color: #1a1a1a;
border: 1px solid #333;
border-radius: 5px;
color: #fff;
font-family: 'Roboto', sans-serif;
font-size: 1rem;
transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #FF7F27;
}
.form-group textarea {
resize: vertical;
min-height: 120px;
}
.submit-button {
background: #2a2a2a;
color: #fff;
padding: 1rem 2rem;
border: 2px solid #333;
border-radius: 5px;
font-family: 'Jura', sans-serif;
font-size: 1rem;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
}
.submit-button:hover {
background: transparent;
border-color: #FF7F27;
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(255, 127, 39, 0.3);
}
.form-success {
background-color: rgba(255, 127, 39, 0.1);
border: 1px solid #FF7F27;
border-radius: 5px;
padding: 1.5rem;
margin: 1rem 0;
text-align: center;
}
.form-success p {
color: #FF7F27;
margin: 0;
}
.form-error {
background-color: rgba(255, 50, 50, 0.1);
border: 1px solid #ff3232;
border-radius: 5px;
padding: 1rem;
margin: 1rem 0;
}
.form-error p {
color: #ff3232;
margin: 0;
} .footer {
background-color: #111;
padding: 1rem 0;
margin-top: 4rem;
border-top: 1px solid #333;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
text-align: center;
padding: 0 2rem;
}
.copyright {
font-size: 0.9rem;
color: #888;
}
.copyright p {
margin: 0.3rem 0;
}
.company-info {
font-size: 0.8rem;
color: #666;
}
.address {
font-size: 0.8rem;
color: #666;
}
.footer-links {
font-size: 0.85rem;
margin-bottom: 0.75rem;
padding-bottom: 0.75rem;
border-bottom: 1px solid #222;
}
.footer-links a {
color: #FF7F27;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #FFA057;
text-decoration: underline;
} .privacy-content {
max-width: 900px;
margin: 0 auto;
line-height: 1.8;
}
.privacy-content h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
margin-top: 0;
color: #FF7F27;
text-align: left;
}
.privacy-content h2 {
font-size: 1.8rem;
margin-top: 2rem;
margin-bottom: 1rem;
color: #FF7F27;
border-bottom: 1px solid #333;
padding-bottom: 0.5rem;
text-align: left;
}
.privacy-content h3 {
font-size: 1.3rem;
margin-top: 1.5rem;
margin-bottom: 0.75rem;
color: #FFA057;
}
.privacy-content p {
margin-bottom: 1rem;
}
.privacy-content ul {
margin-left: 2rem;
margin-bottom: 1rem;
}
.privacy-content li {
margin-bottom: 0.5rem;
}
.privacy-content a {
color: #FF7F27;
text-decoration: underline;
}
.privacy-content a:hover {
color: #FFA057;
} .privacy-consent {
margin: 1.5rem 0;
}
.checkbox-label {
display: flex;
align-items: flex-start;
gap: 0.75rem;
cursor: pointer;
font-size: 0.9rem;
line-height: 1.6;
}
.checkbox-label input[type="checkbox"] {
margin-top: 0.25rem;
width: 18px;
height: 18px;
cursor: pointer;
flex-shrink: 0;
}
.checkbox-label a {
color: #FF7F27;
text-decoration: underline;
}
.checkbox-label a:hover {
color: #FFA057;
} .cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(17, 17, 17, 0.98);
backdrop-filter: blur(10px);
border-top: 2px solid #FF7F27;
padding: 1.5rem 2rem;
z-index: 9999;
box-shadow: 0 -4px 20px rgba(255, 127, 39, 0.1);
}
.cookie-banner-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}
.cookie-banner-text h3 {
color: #FF7F27;
font-size: 1.2rem;
margin: 0 0 0.5rem 0;
font-family: 'Jura', sans-serif;
}
.cookie-banner-text p {
margin: 0;
font-size: 0.9rem;
line-height: 1.5;
color: #ccc;
}
.cookie-banner-text a {
color: #FF7F27;
text-decoration: underline;
}
.cookie-banner-text a:hover {
color: #FFA057;
}
.cookie-banner-buttons {
display: flex;
gap: 1rem;
flex-shrink: 0;
}
.cookie-btn {
padding: 0.75rem 2rem;
border: none;
border-radius: 4px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Jura', sans-serif;
}
.cookie-btn-accept {
background: #FF7F27;
color: #000;
}
.cookie-btn-accept:hover {
background: #FFA057;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255, 127, 39, 0.3);
}
.cookie-btn-reject {
background: transparent;
color: #888;
border: 1px solid #444;
}
.cookie-btn-reject:hover {
background: #222;
color: #ccc;
border-color: #666;
} @media (max-width: 768px) {
.cookie-banner {
padding: 1rem;
}
.cookie-banner-content {
flex-direction: column;
gap: 1rem;
text-align: center;
}
.cookie-banner-text h3 {
font-size: 1.1rem;
}
.cookie-banner-text p {
font-size: 0.85rem;
}
.cookie-banner-buttons {
width: 100%;
justify-content: center;
}
.cookie-btn {
padding: 0.65rem 1.5rem;
font-size: 0.9rem;
}
} @media (max-width: 768px) {
.nav-wrapper {
display: none;
}
.nav-wrapper.active {
display: flex;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: rgba(0,0,0,0.98);
border-bottom: 1px solid #FF7F27;
z-index: 1001;
align-items: center;
padding: 0 0 1.5rem 0;
box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.nav-menu {
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
width: 100%;
padding-top: 1rem;
border-top: 1px solid #333;
}
.social-links {
display: flex;
flex-direction: row;
justify-content: center;
width: 100%;
padding-top: 1rem;
border-top: 1px solid #333;
}
.mobile-menu-btn {
display: block;
}
.about-text-2 {
display: none;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.1rem;
}
.section h2 {
font-size: 2rem;
}
.container {
padding: 1rem;
}
.services-grid,
.systems-grid {
grid-template-columns: 1fr;
justify-items: center;
}
.service-card {
max-width: 500px;
width: 100%;
padding: 1rem;
}
.gallery {
grid-template-columns: 1fr;
} .gallery-item:nth-child(n+5) {
display: none;
}
.gallery-caption {
position: static;
transform: none;
background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
padding: 1rem;
border: 1px solid #333;
border-top: none;
border-radius: 0 0 10px 10px;
}
.gallery-item:hover .gallery-caption {
transform: none;
}
.gallery-item img {
border-radius: 10px 10px 0 0;
display: block;
}
.nav-menu.active {
display: flex;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: rgba(0,0,0,0.98);
border-bottom: 1px solid #FF7F27;
z-index: 1001;
align-items: center;
gap: 1.5rem;
padding: 1.5rem 0 1rem 0;
box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.social-links.active {
display: flex;
flex-direction: row;
justify-content: center;
width: 100%;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
} @media (min-width: 769px) {
.contact-layout-wrapper {
grid-template-columns: 1.2fr 1fr;
gap: 3rem;
align-items: start;
}
.contact-form-container {
order: 1;
}
.contact-info {
order: 2;
}
} .text-center {
text-align: center;
}
.mb-2 {
margin-bottom: 2rem;
}
.mt-2 {
margin-top: 2rem;
}
.highlight {
color: #FF7F27;
}