@import url('navbar-responsive.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}



.hero {
    position: relative;
    width: 100%;
    height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}



.hero-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55);

    z-index: 2;
}



.hero-content {
    position: relative;

    z-index: 3;

    text-align: center;

    color: white;
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 700;

    margin-bottom: 15px;
}

.hero-content p {
    font-size: 25px;
}

.hero-content p span {
    font-weight: 700;
    text-decoration: underline;
}



.hero-logo {
    position: absolute;

    right: 40px;
    bottom: 25px;

    width: 130px;
    height: auto;

    z-index: 4;
}



@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-logo {
        width: 90px;

        right: 20px;
        bottom: 20px;
    }
}
/* ===============================
   HEADER BELOW VIDEO
================================ */

.site-header {
    width: 100%;
    background: #e7ebed;
    position: relative;
    z-index: 100;
}

.navbar-container {
    width: 88%;
    max-width: 1500px;
    min-height: 330px;
    margin: auto;

    display: flex;
    align-items: flex-start;
}



.header-logo {
    width: 195px;
    margin-top: 35px;
    flex-shrink: 0;
}

.header-logo img {
    width: 100%;
    display: block;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;

    gap: 21px;

    margin-left: 70px;
    margin-top: 125px;

    white-space: nowrap;
}

.main-nav > a {
    color: #111;
    text-decoration: none;

    font-size: 21px;
    font-weight: 700;
}

.main-nav > a:hover,
.main-nav > a.active {
    color: #b32020;
}


/* SERVICES */

.services-dropdown {
    position: relative;
}

.services-dropdown button {
    border: none;
    background: transparent;

    font-size: 21px;
    font-weight: 700;

    cursor: pointer;
}

.services-menu {
    position: absolute;
    z-index: 9999;

    top: 35px;
    left: 0;

    width: 240px;

    background: white;

    box-shadow: 0 10px 30px rgba(0,0,0,.18);

    border-radius: 8px;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition: .2s;
}

.services-menu.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.services-menu a {
    display: block;

    padding: 15px 18px;

    color: #111;
    text-decoration: none;

    font-size: 16px;
}

.services-menu a:hover {
    background: #b32020;
    color: white;
}
#servicesButton {
    display: flex;
    align-items: center;
    gap: 8px;
}

#servicesButton i {
    font-size: 12px;
}




.cards-section {
    background: #e7ebed;

    padding: 10px 6% 80px;
}

.cards-container {
    max-width: 1400px;
    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    height: 530px;

    overflow: hidden;

    border-radius: 22px;

    background: #111;

    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: .5s;
}


/* HOVER */

.card-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0,0,0,.68);

    opacity: 0;

    transition: .4s;
}

.service-card:hover img {
    transform: scale(1.08);

    filter: brightness(.55);
}

.service-card:hover .card-overlay {
    opacity: 1;
}

.card-text {
    color: white;

    text-align: center;

    transform: translateY(20px);

    transition: .4s;
}

.service-card:hover .card-text {
    transform: translateY(0);
}

.card-text h3 {
    font-size: 28px;

    margin-bottom: 12px;
}

.card-text p {
    font-size: 17px;

    line-height: 1.6;
}
/* =========================================
   MULTIPLE GALLERY SLIDERS
========================================= */

.multi-gallery {
    width: 100%;
    background: #e7ebed;
    padding: 30px 0 80px;
}

.gallery-block {
    margin-bottom: 80px;
}


/* HEADER */

.gallery-header {
    width: 88%;
    max-width: 1320px;

    margin: 0 auto 25px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.gallery-label {
    color: #c51f1f;

    font-size: 25px;
    font-weight: 700;

    margin-bottom: 3px;
}

.gallery-label span {
    color: #111;
}

.gallery-header h2 {
    margin: 0;

    color: #17244d;

    font-size: 34px;
    font-weight: 700;
}


/* BUTTON */

.gallery-button {
    min-width: 180px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    border: 2px solid #17244d;
    border-radius: 35px;

    color: #17244d;
    background: transparent;

    text-decoration: none;

    font-size: 17px;
    font-weight: 600;

    transition: .3s;
}

.gallery-button span {
    font-size: 27px;
}

.gallery-button:hover {
    background: #17244d;
    color: white;
}


/* SLIDER */

.gallery-slider {
    width: 100%;
    overflow: hidden;
}


/* TRACK */

.gallery-track {
    display: flex;

    width: max-content;

    gap: 22px;
}


/* RIGHT → LEFT */

.right-to-left .gallery-track {
    animation: moveRightToLeft 25s linear infinite;
}


/* LEFT → RIGHT */

.left-to-right .gallery-track {
    animation: moveLeftToRight 25s linear infinite;
}


/* PAUSE WHEN MOUSE IS ON SLIDER */

.gallery-slider:hover .gallery-track {
    animation-play-state: paused;
}


/* CARD */

.gallery-card {
    width: 248px;
    height: 248px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 22px;

    background: white;
}

.gallery-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s;
}

.gallery-card:hover img {
    transform: scale(1.08);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes moveRightToLeft {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


@keyframes moveLeftToRight {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .gallery-header {
        width: 90%;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .gallery-header h2 {
        font-size: 27px;
    }

    .gallery-button {
        width: 160px;
        height: 55px;
    }

    .gallery-card {
        width: 210px;
        height: 210px;
    }

}
/* ================= NEWS SECTION ================= */

.news-section {
    width: 100%;
    background: #fff;
    padding: 70px 20px;
}

.news-container {
    max-width: 1350px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 25px;

    align-items: start;
}


/* ================= MAIN NEWS ================= */

.main-news {
    width: 100%;
}

.main-news-image {
    width: 100%;
    height: 510px;
    overflow: hidden;
    border-radius: 25px;
}

.main-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-news h2 {
    margin-top: 25px;
    margin-bottom: 10px;

    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
}

.news-time {
    margin: 0;
    color: #777;
    font-size: 16px;
}


/* ================= RIGHT NEWS ================= */

.side-news {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.side-news-item {
    display: grid;
    grid-template-columns: 48% 1fr;
    gap: 25px;

    align-items: center;
}

.side-news-item img {
    width: 100%;
    height: 240px;

    object-fit: cover;

    border-radius: 25px;

    display: block;
}

.side-news-content h3 {
    margin: 0 0 25px 0;

    font-size: 27px;
    line-height: 1.3;

    font-weight: 700;
    color: #111;
}

.side-news-content p {
    margin: 0;

    font-size: 17px;
    line-height: 1.6;

    color: #777;
}

.location {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.location i {
    margin-top: 5px;
    color: #777;
}


/* ================= TABLET ================= */

@media (max-width: 1000px) {

    .news-container {
        grid-template-columns: 1fr;
    }

    .main-news-image {
        height: 450px;
    }

    .side-news-item img {
        height: 220px;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .news-section {
        padding: 40px 15px;
    }

    .main-news-image {
        height: 300px;
        border-radius: 18px;
    }

    .main-news h2 {
        font-size: 22px;
    }

    .side-news-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .side-news-item img {
        height: 250px;
        border-radius: 18px;
    }

    .side-news-content h3 {
        font-size: 21px;
        margin-bottom: 12px;
    }

}

/* CONTACT FORM */
.contact-section {
    background: #e3e7e8;
    padding: 70px 12%;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #111;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #666;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 20px;
    border: 1px solid #c8cdd0;
    background: #fff;
    font-size: 17px;
    outline: none;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.checkbox-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
    text-align: left;
}

.checkbox-row label {
    color: #666;
    font-size: 17px;
}

.checkbox-row input {
    margin-right: 8px;
}

.contact-section button {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 35px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.contact-section button:hover {
    background: #333;
}

/* MOBILE */
@media (max-width: 768px) {

    .contact-section {
        padding: 45px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .checkbox-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-section h2 {
        font-size: 24px;
    }
}

/* ================================
   FOOTER
================================ */

.site-footer {
    background: #293258;
    color: #ffffff;
    width: 100%;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 55px 30px 40px;

    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 55px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.footer-column h3 {
    font-size: 21px;
    margin: 5px 0 25px;
    font-weight: 700;
}

.footer-column h3 i {
    color: #b85b3e;
    margin-right: 10px;
}

.footer-column > a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    transition: 0.2s;
}

.footer-column > a:hover {
    color: #ff4b3e;
    padding-left: 5px;
}

.newsletter p {
    font-size: 17px;
    margin-bottom: 25px;
}

.newsletter form {
    width: 100%;
}

.newsletter input {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 30px;
    padding: 0 20px;
    font-size: 16px;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.newsletter button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 30px;
    background: #e00000;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #b50000;
}

/* Social Icons */

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #111111;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 18px;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #e00000;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Bottom */

.footer-bottom {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 18px 15px;
    font-size: 17px;
    font-weight: 500;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 25px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        width: 230px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column > a {
        font-size: 16px;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
    }

    .footer-bottom {
        font-size: 14px;
    }
}

.main-nav a.active {
    color: #e00000 !important;
}