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

html {
    scroll-behavior: smooth;
}

@font-face {

    font-family: 'Inter';

    src: url('fonts/Inter-Regular.ttf') format('truetype');

    font-weight: 400;

    font-style: normal;
}


body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(99.6deg, rgb(226 228 231) 10.6%, rgb(228 242 227) 32.9%, rgb(202 210 234) 52.7%, rgb(220, 227, 239) 72.8%, rgb(185, 205, 227) 81.1%, rgb(174 184 196) 102.4%);
    color: #111;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: auto;
    padding: 30px 0;
}

.glass {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 30px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.1;
    margin: 20px 0;
}

.hero p {
    color: #555;
    font-size: 18px;
    max-width: 600px;
}

.badge {
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
}

.hero-card img {
    width: 100%;
    border-radius: 30px;
    height: 500px;
    object-fit: cover;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn {
    padding: 15px 26px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
}

.btn.black {
    background: #111;
    color: white;
}

.btn.light {
    background: white;
    color: #111;
}

.section-head {
    margin-bottom: 20px;
}

.section-head h2 {
    font-size: 38px;
}

.slider-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
}

.slider {
    display: flex;
    gap: 20px;
    min-width: max-content;
}

.service-card {
    width: 320px;
    border-radius: 30px;
    padding: 20px;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-box {
    border-radius: 30px;
    padding: 40px;
    text-align: center;
}

.stat-box h3 {
    font-size: 42px;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 40px;
}

.about img {
    width: 100%;
    border-radius: 24px;
    height: 400px;
    object-fit: cover;
}

.about h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about p {
    color: #555;
    line-height: 1.7;
}

.form-box {
    padding: 40px;
    border-radius: 30px;
}

.form-box h2 {
    margin-bottom: 25px;
    font-size: 36px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea,
select {
    padding: 16px;
    border: none;
    border-radius: 16px;
    background: rgba(255,255,255,0.7);
    font-size: 16px;
}

button {
    background: #111;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

footer {
    text-align: center;
    padding: 30px 0;
    color: #666;
}
.footer {
    margin-top: 50px;
    padding: 30px;
    border-radius: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    flex-wrap: wrap;
}

.footer-left h3 {
    margin-bottom: 5px;
}

.footer-left p {
    color: #666;
}

.phone {
    text-decoration: none;
    color: #111;
    font-size: 20px;
    font-weight: 700;
}

.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a {
    text-decoration: none;
    background: white;
    color: #111;
    padding: 12px 12px;
    border-radius: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}



=====================================================================================
/* FLOAT BUTTON */

.contact-float-btn {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 70px;
    height: 70px;

    border-radius: 50%;

    border: none;

    background: #111;
    color: white;

    font-size: 30px;

    cursor: pointer;

    z-index: 999;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    transition: 0.3s;
}

.contact-float-btn:hover {

    transform: scale(1.1);

}


.contact-float-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: #111;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.contact-float-btn:hover {

    transform: scale(1.08);

}



/* MODAL */

.contact-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1000000;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}



.contact-modal-content {
    width: 90%;
    max-width: 420px;
    padding: 35px;
    border-radius: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}



.contact-link {
    text-decoration: none;
    margin: auto;
    color: #111;
    background: white;
    padding: 16px;
    border-radius: 16px;
    font-weight: 600;
}


.messengers {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 10px;
}



.messenger-btn {

    width: 65px;
    height: 65px;

    border-radius: 20px;

    background: white;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;

    text-decoration: none;

    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}



.messenger-btn:hover {
    transform: translateY(-5px) scale(1.05);
}



.messenger-btn img {

    width: 34px;
    height: 34px;

    object-fit: contain;
}



.close-modal {

    position: absolute;

    top: 15px;
    right: 15px;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    border: none;

    background: #111;
    color: white;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    line-height: 1;

    padding: 0;
}

.contact-float-btn.hide {

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    pointer-events: none;
}


.map-section {

    margin: 50px 0;
}



.map-box {

    overflow: hidden;

    border-radius: 30px;

    padding: 10px;
}



.map-box iframe {

    border-radius: 24px;
}




@media(max-width: 900px){

    .hero,
    .about,
    .stats {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 42px;
    }

    .service-card {
        width: 280px;
    }

    .messengers, .footer-center {
        margin: auto;
    }

    .footer-left {
    text-align: center;
    margin: auto;
    }

    .footer {
        padding: 15px;
    }
    .form-box {
        padding: 30px;
    }
    .form-box h2, .about h2 {
    font-size: 32px;
    }

    .map-box iframe {

        height: 300px;
    }

}
