* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    background-image: url('../images/beton-design.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.company-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: rgb(255, 123, 65);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Hero Section */
.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    image-rendering: optimizeQuality;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 80px 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.about h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.about h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(255, 123, 65), #c70039);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

#p-about-margin-top {
    margin-top: 20px;
}

.name-company {
    color: rgb(255, 123, 65);
    font-weight: bold;
}

/* Services Section */
.services-section {
    background-color: rgb(54, 55, 53);
    padding: 50px 20px;
    text-align: center;
}

.services-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.services-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(255, 123, 65), #c70039);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    color: black;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-item p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-item ul {
    margin-top: 10px;
    padding-left: 20px;
}

.service-item ul li {
    list-style-type: disc;
    margin-bottom: 8px;
    color: #444;
}

@media (max-width: 500px) {
    .services-section h2 {
        font-size: 2rem;
    }

    .service-item h3 {
        font-size: 1.2rem;
    }
}

/* Products Section */
.products {
    padding: 80px 40px;
    background-color: #fff;
    text-align: center;
}

.products h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.products h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(255, 123, 65), #c70039);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.products p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

#p-products-margin-top {
    margin-top: 20px;
    margin-bottom: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:nth-child(1).visible { transition-delay: 0.1s; }
.product-card:nth-child(2).visible { transition-delay: 0.3s; }
.product-card:nth-child(3).visible { transition-delay: 0.5s; }

.product-card img {
    width: 100%;
    height: 150px;
    image-rendering: auto;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.product-card p {
    font-size: 1rem;
    color: #666;
}

.btn-products {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 18px;
    background: linear-gradient(90deg, rgb(255, 123, 65), #c70039);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.btn-products:hover {
    box-shadow: 0 4px 12px rgba(199, 0, 57, 0.4);
    transform: translateY(-3px);
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 0px 20px;
}

.kalupi-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.kalupi-text {
  flex: 1 1 50%;
}

.kalupi-text h2 {
  font-size: 26px;
  color: #2e2e2e;
  margin-bottom: 16px;
}

.kalupi-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.kalupi-image {
  flex: 1 1 45%;
}

.kalupi-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Contact Section */
.contact {
    padding: 80px 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact h3 {
    text-align: left;
}

.contact h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(255, 123, 65), #c70039);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.p-contact {
    margin: 0 auto 30px auto;
    width: 70%;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-hours, .contact-social {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info .contact-item {
    margin-bottom: 20px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-info p, .contact-hours p, .contact-social p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a, .contact-social a {
    color: rgb(255, 123, 65);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover, .contact-social a:hover {
    color: rgb(255, 123, 65);
}

.contact-hours h3, .contact-social h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact i {
    font-size: 1.2rem;
    color: rgb(255, 123, 65);
}

/* Footer */
footer {
    padding: 20px 40px;
    background-color: #333;
    color: white;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
}

.footer-link {
    color: rgb(255, 123, 65);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.map-container {
    width: 100%;
    margin-top: 15px;
    text-align: center;
}

.map-container h3 {
    font-family: "Rubik", sans-serif;
    font-size: 1.8em;
    color: black;
    margin-bottom: 20px;
}

.map-container iframe {
    border-radius: 10px;
    width: 90%;
    height: 100%;
    min-height: 400px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 10px 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about,
    .products,
    .contact {
        padding: 40px 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}