﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400;500;600&display=swap');

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

body {
    background: #fff;
    font-family: Lato;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 25px 80px;
}

.logo {
    flex: 1;
}

    .logo img {
        height: 40px;
    }

.nav-links {
    display: flex;
    gap: 40px;
    margin-right: 60px;
}



    .nav-links a {
        text-decoration: none;
        color: #1e2d2b;
        font-size: 20px;
    }


    .nav-links a {
        position: relative;
        text-decoration: none;
        color: #1e2d2b;
        font-size: 20px;
    }


        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background-color: #1e2d2b;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }


.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e2d2b;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

    .contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .contact-btn .arrow {
        background: #BFD2C1;
        color: #1e2d2b;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .contact-btn:hover .arrow {
        transform: translateX(4px);
    }


.hero-section {
    display: flex;
    padding: 20px 50px 50px 50px;
    align-items: flex-start;
    width: 100%;
}

.hero-left {
    width: 60%;
}

    .hero-left img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 28px 0 0 28px;
    }

.hero-right {
    width: 40%;
    background: #a9b7aa;
    padding: 165px 20px;
    border-radius: 0 28px 28px 0;
    margin-top: 0px;
}



    .hero-right h1 {
        font-size: 64px;
        line-height: 1.05;
        font-weight: 500;
        color: #111;
        margin-bottom: 35px;
        font-family: Marcellus;
    }

    .hero-right h2 {
        font-size: 55px;
        font-style: italic;
        font-weight: 400;
        color: #2e403c;
        line-height: 1.1;
        font-family: Playfair Display;
        margin-top:-10px;
    }

.about-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    letter-spacing: 2px;
    color: #2e403c;
    margin-top:-80px;
}

    .about-tag .icon {
        display: flex;
        align-items: center;
    }

        .about-tag .icon img {
            width: 16px;
            height: 16px;
            object-fit: contain;
            display: block;
        }

.services-section {
    padding: 50px 180px;
    background: #fff;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

    .grid-container img {
        width: 100%;
        display: block;
    }














.testi {
    padding: 100px 0 70px;
    background: #fff;
    margin-top: -100px;
}

.testi-container {
    width: min(1100px, 90%);
    margin: 0 auto;
}

.testi-mini {
    text-align: center;
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(0,0,0,.55);
    margin-bottom: 12px;
}

.testi-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 3.2vw, 62px);
    font-weight: 600;
    color: #111;
    line-height: 1.1;
}

.testi-accent {
    margin-top: 6px;
    font-style: italic;
    color: #0a6d67;
    font-weight: 500;
}

.testi-grid {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testi-card {
    border-radius: 18px;
    overflow: hidden;
    background: #f3f3f3;
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
    min-height: 320px;
}

    .testi-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.video-wrap {
    grid-column: 2 / 4;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    min-height: 320px;
/*    box-shadow: 0 18px 45px rgba(0,0,0,.10);*/
}

.video-front {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 22px;
}

.v-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.06);
/*    box-shadow: 0 18px 45px rgba(0,0,0,.10);*/
}

.v-text {
    border-radius: 18px 150px 18px 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 20px;
}

.card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-glass {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.65);
    z-index: 2;
}

.v-text h3 {
    position: relative;
    z-index: 3;
    font-family: Marcellus;
    font-size: clamp(48px, 2.5vw, 56px);
    line-height: 1.05;
    color: #111;
    text-align: center;
    font-weight: 800;
}

.v-form {
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
}

    .v-form form {
        position: relative;
        z-index: 3;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .v-form input,
    .v-form textarea {
        width: 100%;
        border: none;
        border-radius: 999px;
        padding: 14px 18px;
        font-size: 13px;
        outline: none;
        background: rgba(255,255,255,.92);
/*        box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);*/
    }

    .v-form textarea {
        border-radius: 18px;
        resize: none;
    }

    .v-form button {
        margin-top: 4px;
        border: none;
        cursor: pointer;
        width: 100%;
        padding: 14px 16px;
        border-radius: 999px;
        background: rgba(10,109,103,.25);
        color: #111;
        font-weight: 800;
        transition: .3s ease;
    }

        .v-form button:hover {
            transform: translateY(-2px);
            background: rgba(10,109,103,.35);
        }




.video-card {
    position: relative;
    overflow: hidden;
}

.testi-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: rgba(255,255,255,.92);
    color: #111;
    font-size: 22px;
    display: grid;
    place-items: center;
    transition: .25s ease;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

    .play-btn:hover {
        transform: translate(-50%, -50%) scale(1.08);
    }

    .play-btn.pause {
        background: rgba(0,0,0,.55);
        color: #fff;
    }

.footer {
    padding: 45px 0;
}

.footer-wrap {
    width: min(1280px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    border-radius: 18px;
    padding: 55px 60px;
    background: radial-gradient(circle at 75% 40%, rgba(0,0,0,.08), transparent 55%), linear-gradient(135deg, #cfe3cf, #c7ddc9);
    overflow: hidden;
}

.footer-toptext {
    font-size: 26px;
    line-height: 1.55;
    font-weight: 500;
    color: rgba(0,0,0,.65);
    max-width: 520px;
}

.footer-brand {
    margin-top: 70px;
    font-family: Marcellus;
    font-size: 88px;
    font-weight: 200;
    color: #111;
    line-height: 0.95;
}

    .footer-brand span {
        font-style: italic;
        font-weight: 500;
        color: rgba(0,0,0,.68);
        margin-left: 10px;
        font-family: Playfair Display;
    }

    .footer-brand a {
        text-decoration: none;
        color: inherit;
        display: inline-block;
    }

        .footer-brand a:visited {
            color: inherit;
        }

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-navrow {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 15px;
    color: rgba(0,0,0,.65);
}

    .footer-links a {
        text-decoration: none;
        color: rgba(0,0,0,.65);
        transition: .25s ease;
    }

        .footer-links a:hover {
            color: #0a6d67;
        }

    .footer-links span {
        opacity: .6;
    }

.footer-copy {
    text-align: right;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(0,0,0,.60);
    margin-right: 20px;
}

.footer-social {
    margin-top: 28px;
    display: flex;
    gap: 18px;
    align-items: center;
}

    .footer-social a {
        width: 32px;
        height: 32px;
        border-radius: 7px;
        display: grid;
        place-items: center;
        text-decoration: none;
        background: rgba(10,109,103,.12);
        color: #0a6d67;
        font-size: 16px;
        transition: .25s ease;
    }

        .footer-social a:hover {
            transform: translateY(-3px);
            background: #0a6d67;
            color: #fff;
        }

.footer-line {
    margin-top: 18px;
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,.55);
    opacity: .55;
}

.footer-bottomtext {
    margin-top: 18px;
    font-size: 14px;
    color: rgba(0,0,0,.60);
    line-height: 1.75;
    max-width: 720px;
}



.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.22);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 55px rgba(0,0,0,.18);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(.92);
    transition: .28s ease;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

.bt-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 900;
    color: #0a6d67;
    background: rgba(10,109,103,.14);
    transition: .28s ease;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 22px 70px rgba(0,0,0,.20);
}

    .back-to-top:hover .bt-icon {
        background: #0a6d67;
        color: #fff;
        transform: translateY(-1px);
    }

.back-to-top:active {
    transform: translateY(-2px) scale(.99);
}

.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    cursor: pointer;
    border-radius: 14px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    position: relative;
    transition: .25s ease;
}

    .hamburger span {
        position: absolute;
        left: 12px;
        right: 12px;
        height: 2px;
        background: #1e2d2b;
        border-radius: 99px;
        transition: .25s ease;
    }

        .hamburger span:nth-child(1) {
            top: 15px;
        }

        .hamburger span:nth-child(2) {
            top: 22px;
        }

        .hamburger span:nth-child(3) {
            top: 29px;
        }

    .hamburger:hover {
        transform: translateY(-1px);
    }

    .hamburger.active span:nth-child(1) {
        top: 22px;
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }

    .hamburger.active span:nth-child(3) {
        top: 22px;
        transform: rotate(-45deg);
    }

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    z-index: 9999;
    background: rgba(10, 20, 18, 0.55);
    backdrop-filter: blur(14px);
    border-left: 1px solid rgba(255,255,255,.18);
    padding: 90px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: .35s ease;
}

    .mobile-nav a {
        padding: 14px 14px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        color: rgba(255,255,255,.88);
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.10);
        transition: .25s ease;
    }

        .mobile-nav a:hover {
            background: rgba(255,255,255,.12);
            transform: translateX(3px);
        }

        .mobile-nav a.active {
            background: rgba(195,219,197,.22);
            border-color: rgba(195,219,197,.35);
        }

    .mobile-nav.open {
        right: 0;
    }

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }


.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    display: none;
}
