/* HERO */
.contact-hero {
    --hero-bg: url('../images/contact/hero-contact.jpg');
}

/* SECTION */
.section{
padding:90px 0;
}

.section-title{
font-size:36px;
font-weight:700;
text-align:center;
margin-bottom:50px;
}

/* MAP IMAGE */
.world-map{
position:relative;
max-width:900px;
margin:auto;
}

.world-map img{
width:100%;
border-radius:12px;
}

/* COUNTRY DOT */
.dot{
width:14px;
height:14px;
background:var(--primary-color);
border-radius:50%;
position:absolute;
animation:pulse 1.5s infinite;
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.5);}
100%{transform:scale(1);}
}

/* DOT POSITIONS (adjust if needed) */
.dot1{top:40%; left:60%;}  /* UAE */
.dot2{top:35%; left:70%;}  /* Japan */
.dot3{top:45%; left:50%;}  /* Saudi */
.dot4{top:30%; left:80%;}  /* Korea */

/* CONTACT BOX */
.contact-box{
background:var(--white-color);
padding:30px;
border-radius:var(--border-radius);
box-shadow:var(--box-shadow);
}

/* FORM */
.form-control{
border-radius:10px;
padding:12px;
}

/* ANIMATION */
.fade-up{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}