/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI', sans-serif;
    background:#0b1d3a;
    color:white;
    overflow-x:hidden;
}

/* Particles */
#particles-js{
    position:fixed;
    width:100%;
    height:100%;
    z-index:-1;
}

/* Container */
.container{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:20px;
}

/* Card */
.card{
    display:flex;
    flex-wrap:wrap;
    width:100%;
    max-width:900px;
    background:rgba(255,255,255,0.05);
    border-radius:20px;
    backdrop-filter:blur(20px);
    box-shadow:0 0 40px cyan;
    overflow:hidden;
}

/* LEFT */
.left{
    flex:1 1 320px;
    text-align:center;
    padding:30px;
    border-right:1px solid rgba(255,255,255,0.2);
}

.profile-img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    box-shadow:0 0 30px cyan;
    margin-bottom:15px;
}

.left h1{
    font-size:22px;
    margin-bottom:5px;
}

.left h3{
    font-size:16px;
    height:24px;
    color:cyan;
    margin-bottom:20px;
}

/* SOCIAL */
.social-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:20px;
}

.btn-social{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:12px;
    border-radius:30px;
    background:rgba(255,255,255,0.05);
    border:1px solid cyan;
    color:white;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
    text-align:center;
}

.btn-social:hover{
    background:linear-gradient(90deg, cyan, blue);
    transform:scale(1.05);
}

/* Back */
.btn-back{
    display:inline-block;
    margin-top:10px;
    padding:10px 20px;
    border-radius:25px;
    background:rgba(255,255,255,0.05);
    color:white;
    text-decoration:none;
    border:1px solid cyan;
    transition:0.3s;
}

.btn-back:hover{
    background:linear-gradient(45deg, cyan, blue);
}

/* RIGHT */
.right{
    flex:1 1 400px;
    padding:30px;
}

/* FORM */
.input-box{
    position:relative;
    margin:15px 0;
}

.input-box input,
.input-box textarea{
    width:100%;
    padding:12px 15px;
    background:none;
    border:1px solid cyan;
    border-radius:10px;
    color:white;
    outline:none;
    font-size:14px;
}

.input-box textarea{
    resize:none;
}

.input-box label{
    position:absolute;
    left:15px;
    top:12px;
    pointer-events:none;
    transition:0.3s;
    font-size:14px;
    color:rgba(255,255,255,0.6);
}

.input-box input:focus ~ label,
.input-box input:valid ~ label,
.input-box textarea:focus ~ label,
.input-box textarea:valid ~ label{
    top:-10px;
    font-size:12px;
    color:cyan;
}

/* BUTTON */
button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:30px;
    background:linear-gradient(45deg, cyan, blue);
    color:white;
    font-size:16px;
    cursor:pointer;
}

button:hover{
    box-shadow:0 0 20px cyan;
}

/* ADDRESS */
.address{
    margin-top:20px;
    font-size:14px;
    line-height:1.6;
    display:flex;
    flex-direction:column;
    gap:10px;
    padding:15px;
    border-radius:15px;
    background:rgba(255,255,255,0.05);
}

.address-item{
    display:flex;
    align-items:center;
    gap:10px;
}

.address-item i{
    color:cyan;
}

/* MAP */
iframe{
    width:100%;
    height:220px;
    margin-top:15px;
    border:none;
    border-radius:10px;
}

/* GLASS */
.glass{
    background:rgba(255,255,255,0.05);
    border-radius:15px;
    padding:20px;
}

/* TABLET */
@media(max-width:900px){

.card{
    flex-direction:column;
}

.left{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,0.2);
}

}

/* MOBILE */
@media(max-width:600px){

.container{
    padding:10px;
}

.left,
.right{
    padding:20px;
}

.profile-img{
    width:100px;
    height:100px;
}

.left h1{
    font-size:18px;
}

.left h3{
    font-size:14px;
}

.btn-social{
    font-size:13px;
    padding:10px;
}

button{
    font-size:14px;
}

iframe{
    height:160px;
}

}

/* SMALL MOBILE */
@media(max-width:360px){

.btn-social{
    font-size:12px;
}

.left h1{
    font-size:16px;
}

}