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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: white;
    color: #1e1e1e;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

.title_separated{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 971px;
    background-image: url('src/assets/inital_image.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 78px;
    padding: 45px 80px;
    height: 100%;
    z-index: 1;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    width: 148px;
    height: 86px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu {
    display: flex;
    gap: 18px;
    align-items: center;
}

.menu-item {
    padding: 12px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-item a {
    text-decoration: none;
    color: white;
}

a[href^="#"]::after,
a[href^="tel:"]::after,
a[href^="mailto:"]::after {
    display: none !important;
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #29a71a;
    border-radius: 70px;
    height: 50px;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-contact:hover {
    transform: scale(1.05);
}

.btn-contact span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: white;
    line-height: 1.4;
    letter-spacing: -0.32px;
}

/* Hero Text */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 784px;
    color: white;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.3;
    text-transform: capitalize;
    letter-spacing: -0.6px;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 659px;
}

.hero-description p {
    margin: 0;
}

.hero-description .highlight {
    font-weight: 600;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 48px;
    align-items: center;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 42px;
    padding: 16px 32px;
    background: #29a71a;
    border-radius: 70px;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-primary span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: white;
    line-height: 1.4;
    letter-spacing: -0.32px;
}

.btn-secondary {
    background: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: white;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    line-height: 1.8;
    cursor: pointer;
}

/* Why Section */
.why-section {
    width: 100%;
    padding: 80px;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 54px;
    align-items: center;
}

.why-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #1b5b7d;
    text-align: left;
    line-height: normal;
    width: 100%;
}

.features {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: space-between;
}

.feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    padding-bottom: 12px;
}

.feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1e1e1e;
    opacity: 0.9;
    line-height: normal;
}

.feature p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1e1e1e;
    opacity: 0.8;
    line-height: 1.85;
}

/* Machines Section */
.machines-section {
    width: 100%;
    padding: 64px 80px;
    background: #1b5b7d;
    box-shadow: 0px 4px 35.1px 0px #1b5b7d;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.machines-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: white;
    line-height: normal;
    margin-bottom: 20px;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.machines-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.machines-carousel::-webkit-scrollbar {
    height: 8px;
}

.machines-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.machines-carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.machine-card {
    flex-shrink: 0;
    width: 350px;
    height: 508px;
    background: white;
    border-radius: 24px;
    border: 1px solid #a2a2a2;
    overflow: hidden;
    position: relative;
}

.machine-card img {
    width: 440px;
    height: 380px;
    object-fit: cover;
    margin-left: -45px;
}

.machine-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.machine-info .label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #8d8d8d;
    opacity: 0.4;
}

.machine-info h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #0d1b39;
}

.machine-info h3.small {
    font-size: 22px;
}

.carousel-hint {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: flex-end;
}

.carousel-hint span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: white;
    line-height: 1.85;
}

/* About Section */
.about-section {
    width: 100%;
    padding: 128px 80px;
    display: flex;
    gap: 54px;
    flex-wrap: wrap;
}

.about-image {
    position: relative;
    width: 561px;
    height: 313px;
}

.about-image img {
    width: 526px;
    height: 313px;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    left: 40px;
    top: 0;
}

.about-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #1e1e1e;
    text-transform: capitalize;
    line-height: normal;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #1e1e1e;
    opacity: 0.8;
    line-height: 1.85;
}

/* Services Section */
.services-section {
    width: 100%;
    border-top: 2px solid #0479e0;
    border-bottom: 2px solid #0479e0;
}

.services-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 64px 80px;
}

.services-text {
    width: 413px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.services-text .label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #0479e0;
    letter-spacing: 3.15px;
    text-transform: uppercase;
    line-height: normal;
}

.services-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 55px;
    color: #1e1e1e;
    text-transform: capitalize;
    line-height: normal;
}

.services-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #1e1e1e;
    opacity: 0.8;
    line-height: 1.85;
}

.services-link {
    display: flex;
    align-items: center;
    gap: 16px;
}

.services-link span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #0479e0;
    line-height: 1.85;
}

.services-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    width: 523px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.service-item .badge {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #0479e0;
    letter-spacing: 3.15px;
    text-transform: uppercase;
    line-height: normal;
    text-align: center;
}

.service-item img {
    width: 229.5px;
    height: 229px;
    object-fit: cover;
    border-radius: 14.25px;
    box-shadow: 0px 21px 29.7px 0px rgba(0, 0, 0, 0.25);
}

/* CTA Section */
.cta-section {
    width: 100%;
    padding: 64px 80px;
    display: flex;
    gap: 64px;
    align-items: center;
    justify-content: center;
}

.cta-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 454px;
    text-decoration: none;
    transition: transform 0.3s;
}

.cta-card:hover {
    transform: scale(1.05);
}

.cta-card img {
    width: 100%;
    height: 474px;
    object-fit: cover;
    border-radius: 35px;
    box-shadow: 0px 4px 4.9px 0px rgba(0, 0, 0, 0.3);
}

.cta-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: #0479e0;
    text-align: center;
    line-height: normal;
}

/* Feedbacks Section */
.feedbacks-section {
    width: 100%;
    padding: 64px 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.feedbacks-section .label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #0479e0;
    letter-spacing: 3.15px;
    text-transform: uppercase;
    line-height: normal;
    text-align: center;
}

.feedbacks-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #1e1e1e;
    text-transform: lowercase;
    line-height: normal;
    text-align: center;
}

.testimonials {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    max-width: 400px;
    height: 467px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.testimonial-card img {
    width: 100%;
    height: 466px;
    object-fit: cover;
    border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    filter: brightness(0.5);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 466px;
    background: rgba(0, 0, 0, 0.43);
    border-radius: 16px;
    border: 1px solid #a2a2a2;
    box-shadow: 0px 14px 34.1px 0px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0px 8px 56.4px 0px rgba(255, 250, 250, 0.25);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin: 16px;
    width: calc(100% - 32px);
}

.testimonial-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: white;
    text-transform: capitalize;
    text-align: center;
}

.testimonial-content .age {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    opacity: 0.6;
    text-align: center;
}

.testimonial-content .quote {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 14px;
    color: white;
    opacity: 0.8;
    text-align: center;
    line-height: normal;
}

.stars {
    display: flex;
    gap: 5px;
    align-items: center;
    background: white;
    padding: 12px;
    border-radius: 999px;
}

/* Location Section */
.location-section {
    width: 100%;
    padding: 64px 80px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.location-section .label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #0479e0;
    letter-spacing: 3.15px;
    text-transform: uppercase;
    line-height: normal;
    text-align: center;
}

.location-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #1e1e1e;
    line-height: normal;
    text-align: center;
}

.location-content {
    display: flex;
    gap: 64px;
    align-items: flex-end;
    width: 1003px;
}

.map {
    display: block;
    width: 487px;
    height: 487px;
    border-radius: 20px;
    overflow: hidden;
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 43px;
    max-width: 452px;
}

.contact-text {
    display: block;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0;
    line-height: 1.3;
    opacity: 0.8;
    color: #1e1e1e;
}

.contact-text p {
    font-size: 24px;
    margin: 0;
}

.contact-text p.highlight {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #0479e0;
}

.certificates h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #1b5b7d;
    line-height: normal;
    margin-bottom: 20px;
}

.certificates img {
    width: 100%;
    height: 117px;
    object-fit: contain;
}

/* Footer */
.footer {
    width: 100%;
    background: #1b5b7d;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 80px;
    gap: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 365px;
}

.footer-logo {
    width: 146px;
    height: 85px;
    object-fit: cover;
}

.footer-left p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: white;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: white;
    border-radius: 60px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.footer-nav,
.footer-licence,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-nav h4,
.footer-licence h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: white;
    letter-spacing: -0.18px;
    line-height: normal;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-nav li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #cdcdcd;
    cursor: pointer;
    transition: color 0.4s ease;
}

.footer-nav li:hover {
    color: #ffffff;
}

.footer-licence p,
.footer-contact p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #c8c8c9;
    letter-spacing: -0.28px;
    line-height: normal;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #cdcdcd;
    letter-spacing: -0.28px;
    line-height: normal;
}

.contact-item a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #cdcdcd;
    letter-spacing: -0.28px;
    line-height: normal;
    text-decoration: none;
}

.contact-item a:visited {
    color: #cdcdcd;
}

/* Responsive */
@media (max-width: 1440px) {
    .location-content {
        width: 100%;
        max-width: 1003px;
    }
}

@media (max-width: 1200px) {
    .hero-section {
        height: auto;
        min-height: 600px;
    }

    .hero-content {
        padding: 30px 40px;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 20px;
    }

    .features {
        flex-direction: column;
    }

    .machines-carousel {
        justify-content: flex-start;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
    }

    .about-text {
        width: 100%;
    }

    .services-content {
        flex-direction: column;
        gap: 40px;
    }

    .services-text {
        width: 100%;
    }

    .services-images {
        width: 100%;
        max-width: 523px;
    }

    .testimonials {
        flex-direction: column;
        align-items: center;
    }

    .location-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
    }

    .menu {
        flex-direction: column;
        width: 100%;
    }

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

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .machines-section {
        padding: 40px 20px;
    }

    .machines-section h2 {
        font-size: 32px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .services-section {
        padding: 40px 20px;
    }

    .services-text h2 {
        font-size: 40px;
    }

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

    .cta-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .cta-card {
        width: 100%;
        max-width: 454px;
    }

    .feedbacks-section {
        padding: 40px 20px;
    }

    .testimonials {
        gap: 40px;
    }

    .location-section {
        padding: 40px 20px;
    }

    .map {
        width: 100%;
    }

    .location-info {
        width: 100%;
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        padding: 40px 20px;
    }

    .footer-left {
        width: 100%;
    }
}
