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

body {
    line-height: 1.7;
    background-color: rgb(255, 255, 255);
    color: #5a6b7c;
    font-family: 'Inter', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* TOP BAR */
.header {
    padding: 30px;
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 50px;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.2)
}

.logo {
    font-weight: 700;
    font-size: 22px;
}

.logo a {
    color: #394669;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #000000;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #394669;
    font-size: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #000000;
}

/* HERO */
.hero {
    position: relative;
    background: #E7E9F0;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 100px 5% 80px 5%;
    overflow: hidden;
}

.hero-text {
    width: 50%;
    max-width: 700px;
    z-index: 3;
    padding-bottom: 60px;
}

.hero h1 {
    color: #394669;
    font-size: 50px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero p {
    color: #394669;
    font-size: 18px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40vw;
    max-width: 650px;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.bubble-top {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: rgba(43, 140, 147, 0.3);
    border-radius: 50%;
    z-index: 2;
}

.bubble-down {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30vw;
    height: 40vh;
    background: rgba(43, 140, 147, 0.3);
    border-radius: 100% 0 0 0;
    z-index: 2;
}

.bubble-img {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 42vw;
    height: 42vw;
    max-width: 700px;
    max-height: 700px;
    background: rgba(43, 140, 147, 0.3);
    border-radius: 50%;
    z-index: 2;
}

.buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: start;
    flex-wrap: wrap;
}

.btn, .btn-secondary {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 15px;
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-first {
    background: #2B8C93;
    color: #fff;
}

.btn-first:hover {
    background: #215c61;
}

.btn-secondary {
    background: #ffffff;
    color: #000000;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.companies {
    position: absolute;
    bottom: 0;
    left: 5%;
    background: #ffffff;
    border-radius: 20px 20px 0px 0px;
    padding: 20px 40px;
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    z-index: 4;
}

.company-logo img {
    width: 60px;
    height: auto;
    transition: transform 0.2s ease;
}

/* SECTIONS */
.section {
    padding: 100px;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 0;
}

.section h2 {
    color: #36465d;
    margin-bottom: 60px;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

/* ACTUALITIES */
.actualities-section {
    padding: 50px;
    display: flex;
    flex-direction: column;
    margin: 25px 25px 25px 25px;
    background: #fff;
    z-index: 0;
    border-radius: 50px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.22);
    text-align: center;
}

.actualities-section h2 {
    color: rgba(255, 15, 15, 0.87);
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

/* SERVICES */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.services-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    background: rgba(64, 141, 153, 0.05);
}

.services-item:hover {
    transform: translateY(-5px);
    background: rgba(64, 141, 153, 0.1);
}

.services-icon {
    color: #394669;
    font-size: 60px;
}

.services-content h3 {
    color: #394669;
    font-size: 20px;
    margin-bottom: 15px;
}

.services-content p {
    color: #5a6b7c;
}

/* ABOUT */
.abt {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
}

.abt-item {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.abt-window {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(43, 140, 147, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.abt-icon {
    font-size: 3.5rem;
    color: #394669;
}

.abt-text h3 {
    color: #36465d;
    font-size: 22px;
    margin-bottom: 10px;
}

.abt-stats {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-around;
    align-items: center;
}

.abt-stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.abt-stats-item h1 {
    color: #36465d;
    font-size: 45px;
    line-height: 1;
}

/* EQUIPMENT  */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.equipment-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(54, 70, 93, 0.04);
    transition: all 0.3s ease;
}

.equipment-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(64, 141, 153, 0.12);
}

.equipment-box iconify-icon {
    font-size: 4rem;
    color: #394669;
    margin-bottom: 1.5rem;
}

.equipment-box h3 {
    font-size: 22px;
    color: #36465d;
    margin-bottom: 1rem;
}

/* OFFICE HOURS */
.office-day {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(54, 70, 93, 0.04);
    transition: all 0.3s ease;
}

.office-day:hover {
    box-shadow: 0 10px 30px rgba(64, 141, 153, 0.12);
}

.office-day h3 {
    color: #394669;
    font-size: 24px;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(64, 141, 153, 0.1);
    padding-bottom: 15px;
}

.office-day ul {
    list-style: none;
}

.office-day ul li {
    margin: 12px 0;
    padding-left: 2rem;
    position: relative;
    font-size: 18px;
}

.office-day ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #408d99;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

.office-day em {
    color: #408d99;
    font-style: normal;
    font-weight: 500;
}

/* CASH LIST */
.cash-items {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(54, 70, 93, 0.04);
}

.cash {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid rgba(64, 141, 153, 0.1);
    gap: 20px;
}

.cash:last-child {
    border-bottom: none;
}

.cash p {
    color: #36465d;
    font-size: 18px;
}

.cash-price {
    color: #394669;
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
}

.cash-date {
    color: #5a6b7c;
    text-align: center;
    margin-top: 20px;
}

/* CONTACT */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(54, 70, 93, 0.04);
}

.contact-text {
    flex: 1;
    min-width: 300px;
}

.contact-text h3 {
    color: #36465d;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 22px;
}

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

.contact-text p {
    font-size: 18px;
}

.contact-map {
    flex: 1.5;
    min-width: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* FOOTER */
.footer {
    text-align: center;
    background: #233240;
    color: #fff;
    padding: 2rem;
}

.footer a {
    color: #408d99;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVITA */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 150px;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
        padding-bottom: 0;
    }

    .buttons {
        justify-content: center;
    }

    .hero-image, .bubble-img {
        display: none;
    }

    .companies {
        position: relative;
        justify-content: center;
        margin-top: 50px;
        width: 100%;
        left: 0;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 15px;
        border-radius: 15px;
    }

    .nav {
        display: none;
    }

    .abt-item {
        flex-direction: column;
        text-align: center;
    }

    .cash {
        flex-direction: column;
        align-items: flex-start;
    }

    .cash-price {
        align-self: flex-start;
        margin-top: 5px;
    }

    .btn, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 815px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 15px;
        border-radius: 15px;
    }

    .nav {
        display: none;
    }

    .abt-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 430px) {
    .header {
        flex-direction: column;
        height: auto;
        align-items: center;
        padding: 15px;
        border-radius: 15px;
    }

    .nav {
        display: none;
    }

    .hero h1 {
        line-height: 1.1;
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn-first {
        padding: 15px 25px;
        font-size: 16px;
    }

    .btn-secondary {
        padding: 15px 25px;
        font-size: 16px;
    }

    .section {
        padding: 40px 15px;
    }

    .section h2 {
        font-size: 28px;
    }

    .actualities-section {

    }

    .actualities-section h2 {
        font-size: 28px;
    }

    .actualities-section h3 {
        font-size: 16px;
    }

    .abt-item {
        flex-direction: column;
        text-align: center;
    }

    .abt-text h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .abt-text p {
        font-size: 16px;
    }

    .abt-stats-item h1 {
        font-size: 30px;
        line-height: 1;
    }

    .abt-stats-description {
        font-size: 16px;
    }

    .services-list {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .services-item {
        padding: 20px;
    }

    .services-content p {
        font-size: 16px;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .equipment-box {
        padding: 25px 20px;
    }

    .equipment-box p {
        font-size: 16px;
    }

    .office-day {
        padding: 25px 20px;
    }

    .office-day ul li {
        font-size: 16px;
    }

    .cash-items {
        padding: 20px;
    }

    .cash p {
        font-size: 16px;
    }

    .cash-price {
        font-size: 16px;
    }

    .contact-container {
        padding: 20px;
    }

    .contact-text p {
        font-size: 16px;
    }

    .contact-map iframe {
        min-height: 250px;
    }

    .footer {
        padding: 20px;
        font-size: 12px;
    }
}