/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;600;700;800&display=swap');

:root{
    --gold:#d4af37;
    --navy:#0f172a;
    --light:#f8fafc;
    --text:#1e293b;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:linear-gradient(to bottom,#f8fafc,#eef2f7);
    color:var(--text);
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.section-padding{
    padding:120px 40px;
}

/* REUSABLE */

.glass{
    background:rgba(255,255,255,0.55);
    border:1px solid rgba(255,255,255,0.7);
    backdrop-filter:blur(20px);
    box-shadow:0 20px 50px rgba(15,23,42,0.06);
}

.hover-up{
    transition:.3s;
}

.hover-up:hover{
    transform:translateY(-8px);
}

.btn{
    padding:18px 34px;
    border-radius:18px;
    font-weight:600;
    transition:.3s;
    display:inline-block;
}

.btn-primary{
    background:white;
    color:black;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.18);
    color:white;
    backdrop-filter:blur(20px);
}

.btn-secondary:hover{
    background:rgba(255,255,255,0.15);
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    padding:25px 40px;
}

.nav-container{
    max-width:1400px;
    margin:auto;

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

    padding:20px 32px;
    border-radius:24px;

    background:rgba(255,255,255,0.45);
    border:1px solid rgba(255,255,255,0.7);
    backdrop-filter:blur(24px);

    box-shadow:0 10px 40px rgba(15,23,42,0.08);
}

.logo{
    font-size:18px;
    font-weight:800;
    letter-spacing:3px;
    color:var(--navy);
}

.desktop-nav{
    display:flex;
    gap:35px;
}

.desktop-nav a{
    color:#334155;
    font-weight:500;
    transition:.3s;
}

.desktop-nav a:hover{
    color:var(--gold);
}

/* MOBILE MENU */

.mobile-menu-btn{
    display:none;

    width:52px;
    height:52px;

    border:none;
    cursor:pointer;

    border-radius:18px;

    background:rgba(255,255,255,.7);

    position:relative;

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

    flex-direction:column;

    gap:7px;

    transition:.35s;
}

.mobile-menu-btn span{
    width:24px;
    height:2px;

    background:var(--navy);

    border-radius:999px;

    transition:.35s ease;
}

.mobile-menu-btn.active span:first-child{
    transform:
    rotate(45deg)
    translateY(6px);
}

.mobile-menu-btn.active span:last-child{
    transform:
    rotate(-45deg)
    translateY(-6px);
}

.mobile-nav{
    position:absolute;

    top:110px;
    left:0;
    right:0;

    margin:0 20px;

    padding:24px;

    border-radius:28px;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.8);

    box-shadow:0 20px 50px rgba(15,23,42,.08);

    display:flex;
    flex-direction:column;

    gap:18px;

    opacity:0;
    visibility:hidden;

    transform:translateY(-20px);

    transition:.35s ease;

    z-index:999;
}

.mobile-nav.active{
    opacity:1;
    visibility:visible;

    transform:translateY(0);
}

.mobile-nav a{
    color:var(--navy);

    font-weight:600;

    padding:16px 18px;

    border-radius:18px;

    transition:.3s;
}

.mobile-nav a:hover{
    background:rgba(15,23,42,.05);

    transform:translateX(4px);
}

/* HERO */

.hero{
    min-height:100vh;

    background:
    linear-gradient(rgba(15,23,42,0.6),rgba(15,23,42,0.8)),
    url('/static/website/images/hero.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

    padding:180px 40px 120px;
}

.hero-content{
    max-width:1400px;
    margin:auto;

    width:100%;

    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

.hero-badge{
    display:inline-block;

    padding:12px 20px;

    border-radius:999px;

    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.2);

    backdrop-filter:blur(20px);

    color:white;

    font-size:14px;
    letter-spacing:1px;
}

.hero-left h1{
    font-size:clamp(42px, 7vw, 68px);
    line-height:1;
    font-family:'Manrope',sans-serif;
    color:white;
    margin:28px 0;
}

.hero-left p{
    max-width:700px;
    color:rgba(255,255,255,0.82);
    font-size:20px;
    line-height:1.8;
    margin-bottom:45px;
}

.hero-buttons,
.hero-info{
    display:flex;
    gap:20px;
}

.hero-info{
    margin-top:60px;
    gap:60px;
}

.hero-info h3{
    color:white;
    font-size:42px;
    margin-bottom:8px;
}

.hero-info span{
    color:rgba(255,255,255,0.72);
}

/* GLASS CARD */

.glass-card{
    padding:45px;
    border-radius:32px;

    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.18);

    backdrop-filter:blur(30px);

    color:white;

    box-shadow:0 20px 60px rgba(0,0,0,0.3);
}

.card-top{
    color:var(--gold);
    letter-spacing:2px;
    font-size:13px;
}

.glass-card h3{
    font-size:42px;
    margin:18px 0;
}

.glass-card p{
    line-height:1.8;
    color:rgba(255,255,255,0.8);
}

.price-row{
    margin-top:35px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.price-row span{
    font-size:14px;
}

.price-row a{
    background:white;
    color:black;
    padding:14px 22px;
    border-radius:14px;
    font-weight:600;
}

/* SECTIONS */

.features,
.apartments,
.location,
.cta{
    padding:120px 40px;
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header span{
    color:var(--gold);
    font-size:14px;
    letter-spacing:2px;
    font-weight:700;
}

.section-header h2{
    margin-top:15px;
    font-size:58px;
    color:var(--navy);
    font-family:'Manrope',sans-serif;
}

/* FEATURES + APARTMENTS */

.features-grid,
.apartments-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.feature-card,
.apartment-card,
.location-card{
    border-radius:30px;
}

.feature-card,
.apartment-card{
    background:rgba(255,255,255,0.55);
    border:1px solid rgba(255,255,255,0.7);
    backdrop-filter:blur(20px);
    box-shadow:0 20px 50px rgba(15,23,42,0.06);
    transition:.3s;
}

.feature-card:hover,
.apartment-card:hover{
    transform:translateY(-8px);
}

.feature-card{
    padding:45px;
}

.feature-icon{
    width:70px;
    height:70px;

    border-radius:20px;

    background:rgba(212,175,55,0.15);

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

    font-size:28px;

    margin-bottom:25px;
}

.feature-card h3,
.apartment-content h3{
    font-size:28px;
    color:var(--navy);
    margin-bottom:16px;
}

.feature-card p{
    color:#475569;
    line-height:1.8;
}

/* APARTMENTS */

.apartment-card{
    overflow:hidden;
}

.apartment-card img{
    height:260px;
    object-fit:cover;
}

.apartment-content{
    padding:30px;
}

.apartment-content p{
    color:#64748b;
}

.apartment-bottom{
    margin-top:25px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.apartment-bottom span{
    font-size:26px;
    font-weight:700;
    color:var(--navy);
}

    .apartment-bottom a{
        background:var(--navy);
        color:white;
        padding:12px 18px;
        border-radius:14px;
    }

    .apartment-status{
        display:inline-flex;
        padding:8px 14px;
        border-radius:999px;
        font-size:14px;
        font-weight:700;
        margin-bottom:14px;
    }

    .apartment-status.available{
        background:#dcfce7;
        color:#166534;
    }

    .apartment-status.reserved{
        background:#fff7ed;
        color:#92400e;
    }


/* LOCATION */

.location-card{
    max-width:1400px;
    margin:auto;

    padding:70px;

    background:rgba(255,255,255,0.55);
    border:1px solid rgba(255,255,255,0.7);

    backdrop-filter:blur(20px);

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.location-left span{
    color:var(--gold);
    font-weight:700;
    letter-spacing:2px;
}

.location-left h2{
    font-size:56px;
    color:var(--navy);
    margin:20px 0;
}

.location-left p{
    color:#64748b;
    line-height:1.8;
    font-size:18px;
}

.location-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.location-item{
    padding:30px;
    border-radius:24px;

    background:rgba(255,255,255,0.65);
    border:1px solid rgba(255,255,255,0.8);
}

.location-item h3{
    font-size:42px;
    color:var(--gold);
    margin-bottom:10px;
}

.location-item p{
    color:#475569;
}

/* CTA */

.cta-card{
    max-width:1100px;
    margin:auto;

    text-align:center;

    padding:90px 60px;

    border-radius:34px;

    background:
    linear-gradient(
    135deg,
    rgba(15,23,42,0.95),
    rgba(30,41,59,0.92));

    color:white;

    box-shadow:0 30px 70px rgba(15,23,42,0.18);
}

.cta-card span{
    color:var(--gold);
    letter-spacing:2px;
    font-weight:700;
}

.cta-card h2{
    font-size:60px;
    margin:25px 0;
}

.cta-card p{
    max-width:700px;
    margin:auto auto 40px;

    color:rgba(255,255,255,0.75);

    line-height:1.8;
}

/* FOOTER */

.footer{
    background:var(--navy);
    color:white;
    padding:100px 40px 40px;
}

.footer-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:60px;

    padding-bottom:60px;

    border-bottom:1px solid rgba(255,255,255,0.1);
}

.footer h3,
.footer h4{
    margin-bottom:24px;
}

.footer p,
.footer a{
    color:rgba(255,255,255,0.7);
    line-height:1.9;
    transition:.3s;
}

.footer a:hover{
    color:white;
}

.footer-links,
.footer-contact,
.footer-socials,
.footer-bottom-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-socials{
    margin-top:30px;
}

.footer-bottom{
    max-width:1400px;
    margin:30px auto 0;

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

    gap:30px;
}

.footer-bottom-links{
    flex-direction:row;
    gap:24px;
}

@media(max-width:1100px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:700px){

    .footer{
        padding:80px 20px 30px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

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

    .footer-bottom-links{
        flex-direction:column;
        gap:10px;
    }

}
/* RESPONSIVE */

@media(max-width:1100px){

    .hero-content,
    .location-card,
    .features-grid,
    .apartments-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero-left h1{
        font-size:58px;
    }

}


@media(max-width:900px){

    .navbar{
        padding:20px;
    }

    .nav-container{
        padding:18px 22px;
    }

    .desktop-nav{
        display:none;
    }

    .hero{
        padding:150px 20px 100px;
    }

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

    .hero-left p{
        font-size:17px;
    }

    .hero-buttons,
    .hero-info{
        flex-direction:column;
    }

    .features,
    .apartments,
    .location,
    .cta{
        padding:90px 20px;
    }
    
    .section-header h2,
    .cta-card h2,
    .location-left h2{
        font-size:38px;
    }

    .location-card{
        padding:35px;
    }

    .location-right{
        grid-template-columns:1fr;
    }

    .cta-card{
        padding:60px 30px;
    }

    .mobile-menu-btn{
        display:flex;
    }

}

/* BACK TO TOP */

.scroll-top{
    position:fixed;

    right:30px;
    bottom:60px;

    width:58px;
    height:58px;

    border:none;
    border-radius:20px;

    background:rgba(15,23,42,.92);

    color:white;

    font-size:24px;
    cursor:pointer;

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

    backdrop-filter:blur(20px);

    box-shadow:0 20px 40px rgba(15,23,42,.25);

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:.3s;

    z-index:9999;
}

.scroll-top:hover{
    transform:translateY(-6px);
    background:var(--gold);
    color:black;
}

.scroll-top.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

@media(max-width:700px){

    .scroll-top{
        right:20px;
        bottom:20px;

        width:52px;
        height:52px;
    }

}

/* ABOUT INVESTMENT */

.about-investment{
    padding:120px 40px;
}

.about-wrapper{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
    align-items:center;
}

.about-content{
    padding:70px;
    border-radius:34px;

    background:rgba(255,255,255,0.55);
    border:1px solid rgba(255,255,255,0.7);

    backdrop-filter:blur(24px);

    box-shadow:0 20px 60px rgba(15,23,42,0.06);
}

.about-badge{
    display:inline-block;

    padding:12px 18px;

    border-radius:999px;

    background:rgba(212,175,55,0.12);

    color:var(--gold);

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.about-content h2{
    font-size:64px;
    line-height:1.05;

    margin:28px 0;

    color:var(--navy);

    font-family:'Manrope',sans-serif;
}

.about-content p{
    font-size:18px;
    line-height:1.9;

    color:#64748b;

    max-width:700px;
}

.about-features{
    display:flex;
    gap:50px;

    margin-top:45px;
}

.about-features h3{
    font-size:38px;
    color:var(--gold);
    margin-bottom:8px;
}

.about-features span{
    color:#475569;
}

.about-image{
    position:relative;

    height:100%;
    min-height:700px;

    border-radius:34px;
    overflow:hidden;

    background:rgba(255,255,255,0.45);
    border:1px solid rgba(255,255,255,0.7);

    backdrop-filter:blur(20px);

    box-shadow:0 20px 60px rgba(15,23,42,0.08);
}

.about-image img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.about-image::after{
    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(15,23,42,0.28),
    rgba(15,23,42,0.02));
}

@media(max-width:1100px){

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .about-image{
        min-height:500px;
    }

}

@media(max-width:900px){

    .about-investment{
        padding:90px 20px;
    }

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

    .about-content h2{
        font-size:42px;
    }

    .about-features{
        flex-direction:column;
        gap:25px;
    }

}

/* MAP SECTION */

.map-section{
    padding:120px 40px;
}

.map-wrapper{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:40px;
    align-items:stretch;
}

.map-content{
    padding:70px;

    border-radius:34px;

    background:rgba(255,255,255,0.55);
    border:1px solid rgba(255,255,255,0.7);

    backdrop-filter:blur(24px);

    box-shadow:0 20px 60px rgba(15,23,42,0.06);
}

.map-badge{
    display:inline-block;

    padding:12px 18px;

    border-radius:999px;

    background:rgba(212,175,55,0.12);

    color:var(--gold);

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.map-content h2{
    margin:28px 0;

    font-size:58px;
    line-height:1.05;

    color:var(--navy);

    font-family:'Manrope',sans-serif;
}

.map-content p{
    color:#64748b;
    line-height:1.9;
    font-size:18px;
}

.map-points{
    margin-top:45px;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.map-point{
    padding:26px;

    border-radius:24px;

    background:rgba(255,255,255,0.65);
    border:1px solid rgba(255,255,255,0.8);
}

.map-point h3{
    font-size:34px;
    color:var(--gold);

    margin-bottom:8px;
}

.map-point span{
    color:#475569;
}

.map-box{
    overflow:hidden;

    border-radius:34px;

    background:rgba(255,255,255,0.55);
    border:1px solid rgba(255,255,255,0.7);

    backdrop-filter:blur(24px);

    box-shadow:0 20px 60px rgba(15,23,42,0.06);

    min-height:720px;
}

.map-box iframe{
    width:100%;
    height:100%;
    border:none;

    filter:grayscale(.15) contrast(1.05);
}

@media(max-width:1100px){

    .map-wrapper{
        grid-template-columns:1fr;
    }

    .map-box{
        min-height:500px;
    }

}

@media(max-width:900px){

    .map-section{
        padding:90px 20px;
    }

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

    .map-content h2{
        font-size:42px;
    }

    .map-points{
        grid-template-columns:1fr;
    }

}

/* CONTACT SECTION */

.contact-section{
    padding:120px 40px;
}

.contact-wrapper{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:40px;
    align-items:start;
}

.contact-info{
    padding:70px;

    border-radius:34px;

    background:
    linear-gradient(
    135deg,
    rgba(15,23,42,0.96),
    rgba(30,41,59,0.92));

    color:white;

    box-shadow:0 25px 70px rgba(15,23,42,0.18);
}

.contact-badge{
    display:inline-block;

    padding:12px 18px;

    border-radius:999px;

    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);

    color:var(--gold);

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.contact-info h2{
    margin:28px 0;

    font-size:62px;
    line-height:1.02;

    font-family:'Manrope',sans-serif;
}

.contact-info p{
    color:rgba(255,255,255,0.72);

    line-height:1.9;
    font-size:18px;
}

.contact-details{
    margin-top:50px;

    display:flex;
    flex-direction:column;
    gap:24px;
}

.contact-item{
    padding:24px 28px;

    border-radius:24px;

    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);
}

.contact-item h3{
    margin-bottom:10px;

    color:white;
    font-size:18px;
}

.contact-item span{
    color:rgba(255,255,255,0.72);
}

.contact-form-box{
    padding:60px;

    border-radius:34px;

    background:rgba(255,255,255,0.55);
    border:1px solid rgba(255,255,255,0.7);

    backdrop-filter:blur(24px);

    box-shadow:0 20px 60px rgba(15,23,42,0.06);
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.input-group{
    margin-bottom:24px;
}

.input-group label{
    display:block;

    margin-bottom:12px;

    color:var(--navy);
    font-weight:600;
}

.input-group input,
.input-group textarea{
    width:100%;

    padding:18px 22px;

    border:none;
    outline:none;

    border-radius:20px;

    background:rgba(255,255,255,0.7);

    color:var(--text);

    font-size:15px;

    border:1px solid rgba(255,255,255,0.9);

    transition:.3s;
}

.input-group input:focus,
.input-group textarea:focus{
    border:1px solid rgba(212,175,55,0.5);

    box-shadow:0 0 0 4px rgba(212,175,55,0.08);
}

.input-group textarea{
    resize:none;
}

.contact-btn{
    width:100%;

    padding:20px;

    border:none;
    cursor:pointer;

    border-radius:22px;

    background:var(--navy);

    color:white;

    font-size:16px;
    font-weight:600;

    transition:.3s;
}

.contact-btn:hover{
    transform:translateY(-4px);
    background:#111c34;
}

@media(max-width:1100px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:900px){

    .contact-section{
        padding:90px 20px;
    }

    .contact-info,
    .contact-form-box{
        padding:40px 30px;
    }

    .contact-info h2{
        font-size:42px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

}

.contact-bottom{
    margin-top:28px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.contact-bottom-item{
    padding:24px;

    border-radius:24px;

    background:rgba(255,255,255,0.55);
    border:1px solid rgba(255,255,255,0.8);
}

.contact-bottom-item h3{
    font-size:17px;
    color:var(--navy);

    margin-bottom:10px;
}

.contact-bottom-item p{
    color:#64748b;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:900px){

    .contact-bottom{
        grid-template-columns:1fr;
    }

}

/* COOKIES */

.cookie-banner{
    position:fixed;

    left:30px;
    right:30px;
    bottom:30px;

    z-index:99999;

    display:flex;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transform:translateY(30px);

    transition:.4s;
}

.cookie-banner.active{
    opacity:1;
    visibility:visible;

    transform:translateY(0);
}

.cookie-content{
    width:100%;
    max-width:1400px;

    padding:28px 34px;

    border-radius:30px;

    background:rgba(255,255,255,0.6);
    border:1px solid rgba(255,255,255,0.75);

    backdrop-filter:blur(30px);

    box-shadow:0 20px 60px rgba(15,23,42,0.12);

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

    gap:30px;
}

.cookie-text span{
    color:var(--navy);

    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
}

.cookie-text h3{
    margin:10px 0 12px;

    font-size:28px;
    color:var(--navy);
}

.cookie-text p{
    color:#64748b;
    line-height:1.8;

    max-width:750px;
}

.cookie-buttons{
    display:flex;
    gap:14px;
}

.cookie-btn{
    border:none;
    cursor:pointer;

    padding:18px 28px;

    border-radius:18px;

    font-weight:600;

    transition:.3s;
}

.cookie-btn.primary{
    background:var(--navy);
    color:white;
}

.cookie-btn.primary:hover{
    transform:translateY(-4px);
}

.cookie-btn.secondary{
    background:rgba(255,255,255,0.7);
    color:var(--navy);
}

.cookie-btn.secondary:hover{
    background:white;
}

@media(max-width:900px){

    .cookie-banner{
        left:20px;
        right:20px;
        bottom:20px;
    }

    .cookie-content{
        flex-direction:column;
        align-items:flex-start;

        padding:26px;
    }

    .cookie-buttons{
        width:100%;
    }

    .cookie-btn{
        flex:1;
    }

}

.hidden-input{
    display:none;
}

.btn-loader{
    width:22px;
    height:22px;

    border:2px solid rgba(255,255,255,.3);
    border-top:2px solid white;

    border-radius:50%;

    animation:spin .7s linear infinite;

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    opacity:0;
    visibility:hidden;
}

.contact-btn{
    position:relative;
    overflow:hidden;
}

.contact-btn.loading .btn-loader{
    opacity:1;
    visibility:visible;
}

.contact-btn.loading .btn-text{
    opacity:0;
}

@keyframes spin{

    from{
        transform:translate(-50%,-50%) rotate(0deg);
    }

    to{
        transform:translate(-50%,-50%) rotate(360deg);
    }

}

.form-message{
    margin-top:20px;

    padding:18px 22px;

    border-radius:18px;

    font-weight:600;

    opacity:0;

    transform:translateY(10px);

    transition:.35s;
}

.form-message.active{
    opacity:1;
    transform:translateY(0);
}

.form-message.success{
    background:#dcfce7;
    color:#166534;
}

.form-message.error{
    background:#fee2e2;
    color:#991b1b;
}